程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python connects to mongodb and uses pymongo to add, delete, modify and query

編輯:Python

pymongo Use it directly pip install :pip install pymongo

Sample code

from pymongo import MongoClient
mongo_conn = MongoClient(host='localhost', port=27017)
mongo_db = mongo_conn.get_database("test") # Specify database 
coll = mongo_db.get_collection("people") # Specify the collection 
new_people = {
'name': " Xiao Ming ", 'age': 13}
# increase 
coll.insert_one(new_people)
coll.insert_many([{
"name": " Xiaohong ", 'age': 11}, {
"name": " Small blue ", "age": 12}])
# Inquire about 
record = coll.find_one({
'name': " Xiao Ming "})
# modify 
coll.update_one(record, {

"$set": {
"age": 22, ' achievement ': 101}, # "$set" It's fixed writing , The new values in the dictionary are overwritten 
})
# Delete 
coll.delete_one({
"name": " Xiaohong "})

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved