import pymongo
class MongoDBTool:
def __init__(self, uri, database_name):
self.client = pymongo.MongoClient(uri)
self.db = self.client[database_name]
def insert_one_document(self, collection_name, document):
collection = self.db[collection_name]
result = collection.insert_one(document)
return result.inserted_id
def find_documents(self, collection_name, query):
collection = self.db[collection_name]
return list(collection.find(query))
def update_document(self, collection_name, filter_query, update_query):
collection = self.db[collection_name]
result = collection.update_one(filter_query, update_query)
return result.modified_count
def delete_document(self, collection_name, query):
collection = self.db[collection_name]
result = collection.delete_one(query)
return result.deleted_count
def close_connection(self):
self.client.close()
MongoDB工具类
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 首先安装mongodb的驱动 API地址:http://mongodb.github.io/node-mongod...
- 下载Mongodb的官网是 http://www.mongodb.org/[http://www.mongodb....
- MongoDB一次节点宕机引发的思考https://www.cnblogs.com/littleatp/p/117...