摘要: 1、问题 使用Python3 requests发送HTTPS请求,verify=False 已经关闭认证情况下,控制台会输出以下warning 2、处理 import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureReques 阅读全文
posted @ 2023-04-22 16:49 代码诠释的世界 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1、问题 下载视频解析的时候报错No module named “Crypto”,已经pip安装 2、解决 pip uninstall crypto pycryptodome pip install pycryptodome pycrypto和crypto是同一个库,crypto在 python 中 阅读全文
posted @ 2023-04-22 16:46 代码诠释的世界 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1、m3u8库 https://pypi.org/project/m3u8/ 2、安装 pip install m3u8 3、使用 import time from Crypto.Util.Padding import pad from Crypto.Cipher import AES import 阅读全文
posted @ 2023-04-22 16:39 代码诠释的世界 阅读(2125) 评论(0) 推荐(0) 编辑