我正在使用pymongo通过插入功能在mongo集合中保存插入文档的日期时间:
cur_article['time'] = datetime.datetime.utcnow()
def insert(self, collection, doc):
collection = self.get_db_instance(collection)
collection.replace_one({'_id':doc['_id']} , doc, upsert=True)
return True