我正在使用urllib2
inPython
来抓取网页。但是,该read()
方法不会返回。
这是我正在使用的代码:
import urllib2
url = 'http://edmonton.en.craigslist.ca/kid/'
headers = {'User-Agent': 'Mozilla/5.0'}
request = urllib2.Request(url, headers=headers)
f_webpage = urllib2.urlopen(request)
html = f_webpage.read() # <- does not return
我上一次运行脚本是在一个月前,当时它运行良好。
请注意,相同的脚本对于 Edmonton Craigslist 上其他类别的网页运行良好,例如http://edmonton.en.craigslist.ca/act/
或http://edmonton.en.craigslist.ca/eve/
.