Python Mongodb接口

Posted 潇雨危栏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Mongodb接口相关的知识,希望对你有一定的参考价值。

Python Mongodb接口

MongoDB 是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。

同时,MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是NoSQL的优秀实现。

本文记录使用PyMongo模块,用Python调用MongoDB

工具类实现

from pymongo import MongoClient

mongodb_name = ‘dev_map‘
client = MongoClient("mongodb://localhost:27017")
mongua = client[mongodb_name]


def timestamp(cls):
    import time
    return int(time.time())


class ModelUtil(): 

    @classmethod
    def add(cls, table_name, item):
        table = mongua[table_name]
        item["deleted"] = False
        ts = timestamp()
        item["created_time"] = ts
        item["updated_time"] = ts
        
        table.insert_one(item)

    @classmethod
    def delete(cls, table_name, conditions):
        item = cls.query(table_name, conditions)
        item["deleted"] = True
        cls.update(table_name, item)

    @classmethod    
    def query(cls, table_name, conditions):
        table = mongua[table_name]
        item = table.find_one(conditions)
        return item

    @classmethod
    def exists(cls, table_name, conditions):
        table = mongua[table_name]
        item = table.find_one(conditions)
        return item is not None

    @classmethod
    def update(cls, table_name, item):
        table = mongua[table_name]
        item["updated_time"] = timestamp()
        table.save(item)

小结

使用MongDB,一方面可以像表格一样访问数据集合,另一方面,条目的类型可以是类似JSON的非结构化数据,而且正好对应Python中的dict,因此使用及其方便

以上是关于Python Mongodb接口的主要内容,如果未能解决你的问题,请参考以下文章

Python接口MongoDB实现接口查询数据库功能

MongoDB使用初步 (Python接口)

从父片段到选项卡片段的接口侦听器不起作用

Flask 编写http接口api及接口自动化测试

mongodb驱动接口

与另一个片段通信的片段接口