Python 官方文档:入门教程 => 点击学习
本文实例讲述了python保存mongoDB上的文件到本地的方法。分享给大家供大家参考,具体如下: MonGoDB上的文档通过GridFS来操作,Python也可以通过pymongo连接MongoDB数据库
本文实例讲述了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())
转自:小谈博客 Http://www.tantengvip.com/2015/07/python-mongodb-save-file/
希望本文所述对大家Python程序设计有所帮助。
--结束END--
本文标题: Python保存MongoDB上的文件到本地的方法
本文链接: https://lsjlt.com/news/15173.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0