python--python脚本编写时遇到的问题记录

问题1:github 上下载自动化的项目到本地,然后通过pycharm打开项目,项目中的import 其他目录下的文件,会显示红色波浪线,并报错提示:This inspection detects names that should resolve but don’t. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases

 问题2:自动化项目中,执行某个接口请求时报错exception check_hostname needs a SSL context with either CERT_OPTIONAL or CERT_REQUIRED

解决方法:网上查了一下说是 requests库的版本问题,从2.25.1降到2.21.0就可以了
控制台执行命令 pip uninstall requests 卸载, 然后执行pip install requests==2.21.0

 

posted @ 2023-06-17 21:42  我是一只搬砖狗  阅读(36)  评论(0编辑  收藏  举报