摘要:
1、问题 使用Python3 requests发送HTTPS请求,verify=False 已经关闭认证情况下,控制台会输出以下warning 2、处理 import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureReques 阅读全文
摘要:
1、问题 下载视频解析的时候报错No module named “Crypto”,已经pip安装 2、解决 pip uninstall crypto pycryptodome pip install pycryptodome pycrypto和crypto是同一个库,crypto在 python 中 阅读全文
摘要:
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 阅读全文