码迷,mamicode.com
首页 > 其他好文 > 详细

pymongo使用方法

时间:2019-01-30 20:29:16      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:需要   key   tencent   数据库   student   cti   res   insert   port   

连接MongoDB
    连接MongoDB我们需要使用PyMongo库里面的MongoClient,一般来说传入MongoDB的IP及端口即可
client = pymongo.MongoClient(host=‘127.0.0.1‘, port=27017)
# 指定数据库
# MongoDB中还分为一个个数据库,我们接下来的一步就是指定要操作哪个数据库
db = client[‘tencent‘]
# 指定集合
# MongoDB的每个数据库又包含了许多集合Collection,也就类似与关系型数据库中的表,
collection = db.students
或collection = db[‘students‘]
student = {
    ‘id‘‘20170101‘,
    ‘name‘‘Jordan‘,
    ‘age‘20,
    ‘gender‘‘male‘
}
result = collection.insert(student)
print(result)

pymongo使用方法

标签:需要   key   tencent   数据库   student   cti   res   insert   port   

原文地址:https://www.cnblogs.com/liubosong/p/10339613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!