Unknown encoding: idna in Python Requests

假装没事ソ 提交于 2019-11-28 07:14:26

问题


I'm using Python Requests. All works great but today I get this strange error:

[...]
File "/usr/local/Cellar/python/2.7.2/lib/python2.7/site-packages/requests/models.py", line 321, in full_url
    netloc = netloc.encode('idna').decode('utf-8')
LookupError: unknown encoding: idna

Any ideas what could be wrong? I'm using Python 2.7.2 from brew.


回答1:


Try adding:

import encodings.idna

in various places to sift out other errors. I ran into this same problem working on a port of python to a new platform. We had only partial library support and unicodedata was missing which was causing imports of the idna module to fail. Once we ported unicodedata this error went away.



来源:https://stackoverflow.com/questions/9144724/unknown-encoding-idna-in-python-requests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!