យើងអាចកែប្រែ 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.")