mongoDB在python中的使用(pymongo的简单操作)

coding=utf-8

“”"
author:lei
function:
“”"

from pymongo import MongoClient

创建数据库链接对象

client = MongoClient()

client = MongoClient(“172.16.123.223”, 27017)

print(client)

权限认证,选择一个数据库。如果没有开权限认证,则不需要进行权限认真

db = client[“admin”]

账号密码进行验证

db.authenticate(“python”, “python”)

选择一个集合

col = client[“pydata”][“test”]

col.insert({“class”: “python32”})

col.insert([{“class”: “python33”}, {“class”: “python34”}, {“class”: “python35”}])

for data in col.find():
print(data)

print(col.find_one())

print("*"*50)

全文档覆盖更新

col.update({“class”: “python32”}, {“message”: “helloworld”})

col.update({}, {"$set": {“id”: “python”}}, multi=True)

col.update({“message”: “hello_world”}, {"$set": {“id”: 2}}, upsert=True)

col.delete_one({“message”: “helloworld”})

col.delete_many({“id”: 2})

for data in col.find():
print(data)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值