摘要:
从MongoDB中查询了数据,使用json.dumps的时候出现TypeError: Object of type datetime is not JSON serializable,看了错误信息知道无法把日期序列化。 搜了解决方法: import json import datetime 阅读全文
摘要:
背景:把数据从指定位置下载保存到本地 文件下载 res = requests.get('https://www.xxxx.com',stream=True) with open(file_name.wav,'wb') as f_w: for a in res.iter_content(chunk_s 阅读全文