摘要: requests原生支持 import requests from requests.adapters import HTTPAdapter s = requests.Session() 重试次数为3 s.mount('http://', HTTPAdapter(max_retries=3)) s. 阅读全文
posted @ 2019-06-07 23:34 脚本小娃子 阅读(3179) 评论(0) 推荐(0) 编辑
摘要: 使用json包 import json dict1 = {"A":"a","B":"b"} 转换为字符串 json.dumps(dict1) 结果为 '{"A": "a", "B": "b"}' 转换为字典 json.loads('{"A": "a", "B": "b"}') 结果为 {'A': ' 阅读全文
posted @ 2019-06-07 22:56 脚本小娃子 阅读(20595) 评论(0) 推荐(0) 编辑