标签:delete cli one pip http ima use client mongo
1.准备工作
安装pymongo模块
pip3 install pymongo
2.连接MongoDB
import pymongo
无认证连接:client = pymongo.MongoClient("mongodb://host:port/dbname")
有认证连接:client = pymongo.MongoClient("mongodb://username:password@host:port/dbname")
3.指定数据库与集合
db = client.school
collection = db.class02
4.插入数据
插入单条数据:collection.insert_one({字典})
插入多条数据:collection.insert_many([{字典1},{字典2},...])
5.更新数据
更新单条数据:collection.update_one({条件},{"$set":{要更新的键:要更新的值}})
更新多条数据:collection.update_many({条件},{"$set":{要更新的键:要更新的值}})
6.删除数据
删除单条数据:collection.delete_one({条件})
删除多条数据:collection.delete_many({条件})
标签:delete cli one pip http ima use client mongo
原文地址:https://www.cnblogs.com/heqiuyong/p/9283024.html