我想编写一个蜘蛛程序,在python3中使用gevent下载网页。这是我的代码:
import gevent
import gevent.pool
import gevent.monkey
import urllib.request
gevent.monkey.patch_all()
def download(url):
return urllib.request.urlopen(url).read(10)
urls = ['http://www.google.com'] * 100
jobs = [gevent.spawn(download, url) for url in urls]
gevent.joinall(jobs)
但是当我运行它时,会出现错误:
Traceback (most recent call last):
File "/usr/local/lib/python3.4/dist-packages/gevent/greenlet.py", line 340, in run
result = self._run(*self.args, **self.kwargs)
File "e.py", line 8, in download
return urllib.request.urlopen(url).read(10)
File "/usr/lib/python3.4/urllib/request.py", line 153, in urlopen
return opener.open(url, data, timeout)
......
return greenlet.switch(self)
gevent.hub.LoopExit: This operation would block forever
<Greenlet at 0x7f4b33d2fdf0: download('http://www.google.com')> failed with LoopExit
......
似乎 urllib.request 阻止了,所以程序无法正常工作。怎么解决?
答案 0 :(得分:0)
这可能是由于代理在公司网络中时的设置。个人推荐使用Selenium结合美丽的汤,使用浏览器打开网址链接,你可以下载HTML内容或直接控制浏览器。希望它有所帮助
from selenium import webdriver
from bs4 import BeautifulSoup
browser = webdriver.Ie()
url = "http://www.google.com"
browser.get(url)
html_source = browser.page_source
soup = BeautifulSoup(html_source, "lxml")
print(soup)
browser.close()
答案 1 :(得分:0)
与Python, gevent, urllib2.urlopen.read(), download accelerator中的问题相同。
在上述帖子中重申:
要读取的参数是字节数,而不是偏移量。
还:
您正在尝试读取来自不同greenlets的单个请求的响应。
如果您要使用多个并发连接下载同一文件,则可以在服务器支持的情况下使用Range http标头(对于具有Range标头的请求,状态为206,而不是200)。参见HTTPRangeHandler。