Simple lib that dynamically creates repositories for MongoDB
Project description
mongorepo
Simple lib for python & mongodb, provides auto repository factory based on DTO type
Example with class
from mongorepo.classes import BaseMongoRepository
def mongo_client(mongo_uri: str = 'mongodb://mongodb:27017/') -> pymongo.MongoClient:
client: pymongo.MongoClient = pymongo.MongoClient(mongo_uri)
return client
@dataclass
class UserDTO:
username: str = ''
password: str = ''
class SimpleMongoRepository(BaseMongoRepository[UserDTO]):
...
repo = SimpleMongoRepository(collection=mongo_client().users_db.users)
new_user = UserDTO(username='admin', password='1234')
repo.add(new_user)
user = repo.get(username='admin')
print(user) # UserDTO(username='admin', password='1234')
Example with decorator
from mongorepo.asyncio.decorators import async_mongo_repository
def async_mongo_client(mongo_uri: str = 'mongodb://mongodb:27017/') -> AsyncIOMotorClient:
async_client = AsyncIOMotorClient(mongo_uri)
return async_client
@dataclass
class Person:
id: str
name: str
skills: list[str] = field(default_factory=list)
@async_mongo_repository(array_fields=['skills'])
class MongoRepository:
class Meta:
dto = Person
collection = async_mongo_client().people_db.people
repo = MongoRepository()
admin = Person(id='289083', name='admin', skills=['python', 'c++', 'java', 'rust'])
await repo.add(admin)
await repo.skills__append('c', id='289083')
await repo.skills__remove('python', id='289083')
user = await repo.get(id='289083')
print(user.skills) # ['c++', 'java', 'rust', 'c']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mongorepo-1.1.0.tar.gz
(14.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
mongorepo-1.1.0-py3-none-any.whl
(23.6 kB
view details)
File details
Details for the file mongorepo-1.1.0.tar.gz.
File metadata
- Download URL: mongorepo-1.1.0.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-41-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
803172845f6d370e0532a425c07ce6c6434d366627efd838c740e26b64ab639c
|
|
| MD5 |
18ed14f102aaf51749345a7955b2acd3
|
|
| BLAKE2b-256 |
57a72656a462854f4d0d18b88d570c693ad1e8b98cf9407e1aeface4037e39af
|
File details
Details for the file mongorepo-1.1.0-py3-none-any.whl.
File metadata
- Download URL: mongorepo-1.1.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-41-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fddcf8641a84b6ee87d431d414359548e0de0f3b706c0136f2a8a4a223d3cd7
|
|
| MD5 |
ad71d3e8402365cd95b31bd92b902c96
|
|
| BLAKE2b-256 |
ad20d7a5bc3e0813da37f591d4ba8c98e4da50b07cbf73c50c0e854cf64e9f34
|