您可以使用Python中的pymongo庫連接到MongoDB資料庫並使用它在Python中插入、更新、刪除等物件。該庫支援開箱即用的 Python 日期時間對象,您無需執行任何特殊操作即可使用 PyMongo 在 Mongo 中插入日期。例如,
from pymongo import MongoClient # This will try to connect to MongoDB on the default port and host client = MongoClient() db = client.test_database # Insert the given dictionary to the objects collection: result = db.objects.insert_one({"last_modified": datetime.datetime.utcnow()}) print("Object inserted!")
這將給出輸出-
Object inserted!
注意- 始終使用datetime.datetime.utcnow(),它會傳回UTC 中的目前時間,而不是datetime.datetime.now(),它會傳回目前本機時間。
以上是如何在 Mongodb 中插入 Python 物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!