前言:
此刻姐妹们对“mongodbpython教程”大约比较重视,姐妹们都需要知道一些“mongodbpython教程”的相关文章。那么小编同时在网摘上网罗了一些关于“mongodbpython教程””的相关内容,希望兄弟们能喜欢,咱们快快来了解一下吧!安装
pip install pymongo导入
from pymongo import MongoClient连接MongoDB Server
client = MongoClient('localhost', 27017)列出所有数据库
client.list_database_names()创建/选择数据库
如果post_db不存在,则自动新建此数据库。
post_db = client.get_database('post_db')列出库内所有的集合
post_db.list_collection_names()新建/选择集合
如果post_collection不存在,则新建此集合。
post_collection = post_db.get_collection('post_collection')插入一条文档
import datetimepost = {"author": 'zhangsan', 'text': '我的第一篇博客', "tags": ['mongodb', 'python', 'pymongo'], "date": datetime.datetime.utcnow()}post_collection.insert_one(post)查询单条文档
post_collection.find_one()插入多条文档
list = [{'author': 'lisi', "text": 'lisi text'}, {'author': 'wangwu', 'text': 'wangwu text'}]post_collection.insert_many(list)遍历集合内的文档
for i in post_collection.find(): print(i)
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #mongodbpython教程