您可以使用Python中的pymongo庫連接到MongoDB數(shù)據(jù)庫并使用它在Python中插入、更新、刪除等對象。該庫支持開箱即用的 Python 日期時間對象,您無需執(zhí)行任何特殊操作即可使用 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!")
登錄后復(fù)制
輸出
這將給出輸出 –
Object inserted!
登錄后復(fù)制
注意 – 始終使用 datetime.datetime.utcnow(),它返回 UTC 中的當(dāng)前時間,而不是 datetime.datetime.now(),它返回當(dāng)前本地時間。
以上就是如何在 Mongodb 中插入 Python 對象?的詳細(xì)內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!