Python保存MongoDB上的文件到本地的方法介绍
程序员文章站
2022-05-04 16:59:37
...
本文实例讲述了Python保存MongoDB上的文件到本地的方法。分享给大家供大家参考,具体如下:
MongoDB上的文档通过GridFS来操作,Python也可以通过pymongo连接MongoDB数据库,使用pymongo模块的gridfs方法操作文档。以下示例是把MongoDB上GridFS存的excel文档保存到本地。
from pymongo import MongoClient import gridfs client = MongoClient('mongodb://username:pwd@192.168.1.22:27017/send_excel') db = client.js_send_excel fs = gridfs.GridFS(db) files = fs.find() print('总数:', files.count()) for ffle in files: if ffle.filename.find('.xls') > 0: with open(ffle.filename, 'wb') as f1: f1.write(ffle.read())
更多Python保存MongoDB上的文件到本地的方法介绍相关文章请关注PHP中文网!