Ipython console中monkey.patch_all()出错

发布于 2022-09-06 20:42:13 字数 870 浏览 27 评论 0

代码如下:

from gevent import monkey

monkey.patch_all()

import gevent
import urllib

def run_task(url):
    print('Visit --> %s' % url)
    try:
        response = urllib.request.urlopen(url)
        data = response.read()
        print('%d bytes received from %s.' % (len(data), url))
    except Exception as e:
        print(e)

if __name__ == '__main__':
    urls = ['https://github.com/', 'https://www.python.org/', 
            'http://www.zuel.edu.cn/']
    greenlets = [gevent.spawn(run_task, url) for url in urls]
    gevent.joinall(greenlets)

python3,使用spyder中的Ipython console 运行会抛出警告:
The history saving thread hit an unexpected error (LoopExit('This operation would block forever', <Hub at 0xbd6caf8 select pending=0 ref=0>)).History will not be written to the database.
然后程序一直无法终止(网络没问题,可以urlopen),请大神指教。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文