3

我一直在尝试在我的 Python 项目中使用grequests来处理异步 HTTP 请求,但是我得到了一个AttribteError并且一直在寻找解决方案几个小时。

这是我的测试代码:

import grequests

urls = ['htt://google.com', 'http://yahoo.com', 'http://bing.com']
unsent_request = (grequests.get(url) for url in urls)
results = grequests.map(unsent_request)
print(results)

和错误信息:

Traceback (most recent call last):
    File "<censored>", line 1, in <module>
        import grequests
    File "C:\Python34\lib\site-packages\grequests.py", line 21, in <module>
        curious_george.patch_all(thread=False, select=False)
    File "C:\Python34\lib\site-packages\gevent\monkey.py", line 195, in patch_all
        patch_socket(dns=dns, aggressive=aggressive)
    File "C:\Python34\lib\site-packages\gevent\monkey.py", line 124, in patch_socket
        from gevent import socket
    File "C:\Python34\lib\site-packages\gevent\socket.py", line 119, in <module>
        _fileobject = __socket__._fileobject
AttributeError: 'module' object has no attribute '_fileobject'

我尝试卸载并重新安装 grequests 和整个 Python,但问题仍然存在。

我也试图避免使用 grequest(并使用 gevent),但同样的问题发生了。

经过一番搜索,我相信我能找到的最接近的问题是这个:

python3: socket._fileobject 已删除 #434

但这对我来说似乎不是很微不足道,并且提供的解决方案是针对 SSL 相关的东西。

如果您有任何解决方案或类似的问题,请分享,非常感谢!

4

1 回答 1

1

我遇到了同样的问题。后

pip3 install --user --upgrade gevent==1.1rc3

没有问题执行的代码(--user是可选的)。

于 2016-01-20T04:39:35.343 回答