美文网首页
同时使用gevent库猴子补丁和其他网络库库导入时机不对导致递归

同时使用gevent库猴子补丁和其他网络库库导入时机不对导致递归

作者: 明明就_c565 | 来源:发表于2022-03-18 17:11 被阅读0次

问题

解决

在程序入口main文件第一行加入

from geventimport monkey;monkey.patch_all()

因为其他文件有可能还会用到类似requests urllib3等网络库

必须确保在引用这些网络库之前打好补丁

参考

https://blog.csdn.net/baidu_24536755/article/details/80712903

https://luxrck.github.io/p/gevent-ssl-infinity-recursion-error/

https://www.jianshu.com/p/3af1edf8ec18?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

相关文章

网友评论

      本文标题:同时使用gevent库猴子补丁和其他网络库库导入时机不对导致递归

      本文链接:https://www.haomeiwen.com/subject/cxfwdrtx.html