You can use the pymongo library in Python to connect to a MongoDB database and use it to insert, update, delete, etc. objects in Python. The library supports Python datetime objects out of the box and you don't need to do anything special to insert dates in Mongo using PyMongo. For example,
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!")
This will give the output -
Object inserted!
Note- Always use datetime.datetime.utcnow(), which returns The current time in UTC, instead of datetime.datetime.now(), which returns the current local time.
The above is the detailed content of How to insert Python objects in Mongodb?. For more information, please follow other related articles on the PHP Chinese website!