爬虫状态码返回状态200,自己访问400,这是什么原因?,爬虫400,import urlli


import urllib2opener = urllib2.build_opener()html = Noneresponse = Noneresponse = opener.open('http://www.sxxrcs.com/was5/web/')html = response.codeprint html

比如这个爬虫,输出状态码是200。

可是直接访问http://www.sxxrcs.com/was5/web/是404,抓包响应的也是404,请问这是为什么?

用requests吧

import requestsr = requests.get('http://www.sxxrcs.com/was5/web/')print r.status_codeprint r.text

200正常啊,requests方便快捷。

编橙之家文章,

评论关闭