Skip to main content

No project description provided

Project description

Mongo Repository

This package provide a sync and async repositories utilities for mongodb.

Tutorial

=======

The first step is to create a schema inheriting from MongoBaseModel and then create a specialized repository inheriting from Repository or AsyncRepository according to the application.

Creating a db schema

from mongorepository.models import MongoBaseModel

class Person(MongoBaseModel):
    name: str
    age: int
    job: Optional[str]

Then create a person repository inheriting from Repository

import pymongo
from mongorepository.repositories.mongo import Repository

def get_database(db_name: str):
    client = pymongo.MongoClient("mongodb://localhost:2707")
    return client.get_database(db_name)

class PersonRepository(Repository[Person]):
    def __init__(self):
        super().__init__(get_database("my_db_name"))

    class Config:
        collection = "persons"

And then:


person = Person(name="John Doe", age=33)
repository = PersonRepository()

repository.save(person)

For async flow use this:

import asyncio
from motor.motor_asyncio import AsyncIOMotorClient
from mongorepository.repositories.async_mongo import AsyncRepository


def get_database(db_name):
    client = AsyncIOMotorClient("mongodb://localhost:27017")
    database = client.get_database(db_name)
    database.get_io_loop = asyncio.get_event_loop
    return database


class PersonRepository(AsyncRepository[Person]):

    def __init__(self):
        super().__init__(get_database("my_db_name"))

    class Config:
        collection = "persons"


person = Person(name="John Doe", age=33)
repository = PersonRepository()

asyncio.run(repository.save(person))

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

mongorepository-0.6.3.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

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

mongorepository-0.6.3-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file mongorepository-0.6.3.tar.gz.

File metadata

  • Download URL: mongorepository-0.6.3.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.12.3 Linux/6.8.0-1021-azure

File hashes

Hashes for mongorepository-0.6.3.tar.gz
Algorithm Hash digest
SHA256 507d6caa045109b8b1471159946c890b29bfb4a497ba6bb0e499d563c57611b8
MD5 487411931c7ac14c4f7b90dafb41ae95
BLAKE2b-256 2c07f29299c8353bf509d7b14b5de4161fe6787496d1ffe7547b6e9a38e2f90f

See more details on using hashes here.

File details

Details for the file mongorepository-0.6.3-py3-none-any.whl.

File metadata

  • Download URL: mongorepository-0.6.3-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.12.3 Linux/6.8.0-1021-azure

File hashes

Hashes for mongorepository-0.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 12629540f3b195ffd43ffe06beaddf0e38fad67bf3f6b0129c4ab183ca52b135
MD5 53b23709ced32ffd6b3b23be4ed70e98
BLAKE2b-256 62fe85312d5205eaf954707fa5f78cdb9cde059ea4e3b59502089f5ee95f8cfc

See more details on using hashes here.

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