我在我的python脚本中引用python请求(v2.9.1)。一个警告
输出控制台中的消息如下所示。
C:\Python34\lib\site-packages\ndg_httpsclient-0.4.0-py3.4.egg\ndg\httpsclient\subj_alt_name.py:22:
UserWarning: Error importing pyasn1, subjectAltName check for SSL peer verification will be disabled. Import error is: No module named 'pyasn1'
warnings.warn(import_error_msg)
C:\Python34\lib\site-packages\ndg_httpsclient-0.4.0-py3.4.egg\ndg\httpsclient\ssl_peer_verification.py:25:
UserWarning: SubjectAltName support is disabled - check pyasn1 package installation to enable
warnings.warn(SUBJ_ALT_NAME_SUPPORT_MSG)
C:\Python34\lib\site-packages\ndg_httpsclient-0.4.0-py3.4.egg\ndg\httpsclient\subj_alt_name.py:22:
UserWarning: Error importing pyasn1, subjectAltName check for SSL peer verification will be disabled. Import error is: No module named 'pyasn1'
warnings.warn(import_error_msg)
我有一个类似的脚本,我在一年前写过,也使用相同的请求模块,并没有这个问题。 在使用请求模块时,任何人都可能遇到同样的问题吗? 是因为请求包依赖于其他一些包吗?
提前致谢 Susmitha