Skip to main content

A mongodb ODM dependant on pymongo with the extensive of model creation and validation and relational model machanism. This helps you create the ODM in the python program with the similarities of an SQL class model.

Project description

MongoAPI Documentation

This documentation provides an overview of the MongoAPI and Model classes, designed to simplify CRUD operations and schema enforcement when interacting with MongoDB. The classes provide a Pythonic interface for managing MongoDB connections, defining collections, and enforcing data validation.

Table of Contents

  1. Introduction
  2. Installation
  3. MongoAPI Class
  4. Model Class
  5. Field Classes
  6. Examples

Introduction

The MongoAPI and Model classes provide an abstraction layer on top of PyMongo, enabling easier management of MongoDB collections and documents. These classes also enforce schema validation, ensuring that data inserted into the database adheres to predefined rules.

Installation

To use the MongoAPI and related classes, you need to install the following dependencies:

pip install mongodesu

MongoAPI Class

The MongoAPI class is a wrapper for CRUD operations and connection logic for MongoDB.

Methods

  • __init__(): Initializes the MongoAPI instance and establishes a connection to the MongoDB database.
  • connect(): A class method for establishing a connection to the MongoDB database.
  • connect_one(): An instance method for establishing a connection to the MongoDB database.

Model Class

The Model class is an abstraction over a MongoDB collection. It provides methods for defining the schema and interacting with the collection.

Attributes

  • connection: A reference to a MongoAPI instance, used to establish the connection.
  • collection_name: The name of the MongoDB collection. If not provided, it defaults to the pluralized class name.
  • collection: A reference to the MongoDB collection.

Methods

  • __init__(): Initializes the Model instance and sets up the MongoDB collection.
  • find(): Finds a list of documents from the collection.
  • find_one(): Finds a single document based on the provided filter.
  • insert_many(): Inserts multiple documents into the collection.
  • insert_one(): Inserts a single document into the collection.
  • update_one(): Updates a single document based on the provided filter.
  • update_many(): Updates multiple documents based on the provided filter.
  • delete_one(): Deletes a single document based on the provided filter.
  • delete_many(): Deletes multiple documents based on the provided filter.
  • aggregate(): Performs aggregation operations on the collection.
  • save(): Saves the current instance to the MongoDB collection.
  • construct_model_name(): Constructs the collection name based on the class name.

Field Classes

StringField

A field that stores string data.

Parameters:

  • size: The maximum size of the string.
  • required: Whether the field is required.
  • unique: Whether the field should be unique.
  • index: Whether the field should be indexed.
  • default: The default value of the field.

NumberField

A field that stores numeric data.

Parameters:

  • required: Whether the field is required.
  • unique: Whether the field should be unique.
  • index: Whether the field should be indexed.
  • default: The default value of the field.

ListField

A field that stores a list of items.

Parameters:

  • required: Whether the field is required.
  • item_type: The type of items in the list.
  • default: The default value of the field.

DateField

A field that stores date or datetime data.

Parameters:

  • required: Whether the field is required.
  • unique: Whether the field should be unique.
  • index: Whether the field should be indexed.
  • default: The default value of the field.

BooleanField

A field that stores boolean data.

Parameters:

  • required: Whether the field is required.
  • unique: Whether the field should be unique.
  • index: Whether the field should be indexed.
  • default: The default value of the field.

ForeignField

A field that stores a reference to another model.

Parameters:

  • model: The model to which this field refers.
  • parent_field: The field in the parent model to which this field refers.
  • required: Whether the field is required.
  • default: The default value of the field.
  • existance_check: Whether to check the existence of the referenced document.

Examples

Connecting to MongoDB (Method I)

This will connect the db and all the operation will use this connection.

from mongodesu.mongolib import MongoAPI
mongo_api = MongoAPI(uri="mongodb://localhost:27017", database="mydatabase")

Connecting to the database (Methond II)

This will connect to the default mongo instance. And whatever model you will create. All the operation will use this connection by default.

MongoAPI.connect(uri="mongodb://localhost:27017/python-db-test")

Connecting to the database (Method III)

This is the same as the above methods.

mongo = MongoAPI()
mongo.connect_one(uri="mongodb://localhost:27017/python-db-test")

Defining a Model

from mongodesu.mongolib import StringField, BooleanField, NumberField
class User(Model):
    name = StringField(required=True)
    age = NumberField(required=True)
    email = StringField(required=True, unique=True)
    is_active = BooleanField(default=True)

# Example usage
user = User(name="John Doe", age=30, email="john.doe@example.com")
user.save()

Inserting a document

user = User()
user.insert_one({"name":"John Doe", "age"28, "email":"john@example.com"})

Inserting a list of documents

user = User()
documents = [
    {"name":"John Doe", "age"28, "email":"john@example.com"},
    {"name":"Jack Doe", "age"28, "email":"jack@example.com"}
]
user.insert_many(documents)

Finding one Document

user = User()
result = user.find_one({"name": "John Doe"})
print(result)

Finding list of documents

user = User()
result = user.find({})
print(result)

Updating Documents

user = User()
user.update_one({"name": "John Doe"}, {"$set": {"age": 31}})

Deleting Documents

user = User()
user.delete_one({"name": "John Doe"})

Count Documents

user = User()
print(user.count_documents({"name": "John Doe"}))

Using ForeignField

class Post(Model):
    title = StringField(required=True)
    content = StringField(required=True)
    author = ForeignField(model=User, required=True, existance_check=True)

post = Post(title="My First Post", content="Hello, world!", author="ObjectId_of_User")
post.save()

Creating multiple connection

This will create two connection and each model will be associated with the one connection and every operation will be perform for that connection over the connected database.

from mongodesu.mongolib import MongoAPI, StringField, BooleanField, NumberField 

mongo1 = MongoAPI(host="localhost", port=27017, database="flaskdb")
mongo2 = MongoAPI(uri="mongodb://localhost:27017/python-db-test")

class Todo(Model):
        connection = mongo1
        collection_name = 'todos'
        
        # Fields description
        task = StringField(required=True, index=True)
        is_done = BooleanField(required=False)
        
    
class UserTodo(Model):
    connection = mongo2
    collection_name = 'user_todos'
    
    # Field description
    task = StringField(required=True, index=True)
    is_done = BooleanField(required=True)
    count_task = NumberField(required=False)

todo = Todo()
todo.insert_one({
    "task": "Fetch the car",
    "is_done": False
})

userTodo = UserTodo()
userTodo.insert_one({
    "task": "Paint",
    "is_done": False,
    "count_task": 1
})

This documentation provides a comprehensive guide to using the MongoAPI, Model, and Field classes. The classes are designed to simplify interaction with MongoDB while enforcing data integrity through schema validation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mongodesu-1.2.1.tar.gz (14.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mongodesu-1.2.1-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file mongodesu-1.2.1.tar.gz.

File metadata

  • Download URL: mongodesu-1.2.1.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mongodesu-1.2.1.tar.gz
Algorithm Hash digest
SHA256 9fdaced9eb92e3f6f93d42d5ee0eb008fd0480e3aa5da4a32195bf826e78faa0
MD5 d6207cd45b3c7b8fae4645a185b74c55
BLAKE2b-256 f5d8347a6ef9298744cf5ca918296ae59d3279c651e7d3b93dc7bce5c9dd1f69

See more details on using hashes here.

Provenance

The following attestation bundles were made for mongodesu-1.2.1.tar.gz:

Publisher: pypi-publish.yml on AKA-Per/mongodesu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mongodesu-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: mongodesu-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mongodesu-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5c88ee9f05f41d4451c2c2673753983b3104373e66316f301a36e8e7a891e87f
MD5 cbd5b826d7986e46b7f2676979903cd7
BLAKE2b-256 c836ac748a7e570d4bd8f1e76754e9f3921986176d3cb5f9bc3da446009f9eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mongodesu-1.2.1-py3-none-any.whl:

Publisher: pypi-publish.yml on AKA-Per/mongodesu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page