យើង​អាច​កែ​ប្រែ​ document នៅ​ក្នុង collection ណាមួយ​បាន ដោយ​ប្រើប្រាស់ method ឈ្មោះ update_one() ដោយ​ធ្វើ​ដូច​ខាង​ក្រោម​នេះ៖

 

from pymongo import MongoClient
 
myclient = MongoClient("mongodb+srv://username:mypassword@cluster0-y0whw.gcp.mongodb.net/test?retryWrites=true&w=majority")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
 
myquery = { "address": "Valley 345" }
newvalues = { "$set": { "address": "Canyon 123" } }
 
mycol.update_one(myquery, newvalues)
 
#print "customers" after the update:
for x in mycol.find():
  print(x)

 

តែ​បើ​យើង​ចង់​កែប្រែ document ជា​ច្រើន​ក្នុង​ពេល​តែ​មួយ យើង​ត្រូវ​ប្រើប្រាស់ method ឈ្មោះ update_many() ដោយ​ធ្វើ​ដូច​ខាង​ក្រោម​នេះ៖

 

from pymongo import MongoClient
 
myclient = MongoClient("mongodb+srv://username:mypassword@cluster0-y0whw.gcp.mongodb.net/test?retryWrites=true&w=majority")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
 
myquery = { "address": { "$regex": "^S" } }
newvalues = { "$set": { "name": "Minnie" } }
 
x = mycol.update_many(myquery, newvalues)
 
print(x.modified_count, "documents updated.")