11 2021 档案
pipreqs
摘要:pipreqs 方案一(推荐) 安装 pip install pipreqs # 在当前目录生成 pipreqs . --encoding=utf8 --force 注意 --encoding=utf8 为使用utf8编码,不然可能会报UnicodeDecodeError: 'gbk' codec
阅读全文
cURL 快速转 Python Requests代码
摘要:cURL 快速转 Python Requests代码 在浏览器里复制 cURL 然后打开 Postman
阅读全文
fiddler 抓 Python requests 的包
摘要:fiddler 抓 Python requests 的包 注意:需要加上代理本地地址 import requests proxies = {'http': 'http://localhost:8888', 'https':'http://localhost:8888'} url = 'http://
阅读全文