Json:TypeError: Object of type Response is not JSON serializable
# 省略...res = requests.post(url=url,json=data)print("total time: {} sec".format(time.time()-t))print(res.text)filename='/path/A.json'e = json.dumps(res, ensure_ascii=False, indent=4)with open(filename, "w") as file_obj: file_obj.write(e)File "/
原创
2021-02-01 18:37:34 ·
3653 阅读 ·
0 评论