Pydantic Async Mongo Document
Project description
Pydantic Mongo Document
pydantic_mongo_document
is a Python library that provides a base class for creating MongoDB documents using Pydantic models.
Installation
Install the package using pip or poetry.
Using pip
pip install pydantic_mongo_document
Using poetry
poetry add pydantic_mongo_document
Usage To use pydantic_mongo_document, you need to create a Pydantic model that represents your MongoDB document and inherit from the MongoDocument class provided by the library. Here's an example:
from pydantic_mongo_document import Document
class User(Document):
__collection__ = "users"
__database__ = "production"
name: str
email: str
In this example, we define a User Pydantic Document model with two fields (name and email) and
specifies the MongoDB collection name (users) and database name (production) using the __collection__
and __database__
class attributes.
from pydantic_mongo_document import Document
# Set the MongoDB replica configuration
Document.set_replica_config({"localhost": "mongodb://localhost:27017"})
class User(Document):
__replica__ = "localhost"
__collection__ = "users"
__database__ = "production"
name: str
email: str
async def create_user():
user = User(name="John", email="john@example.com")
await user.insert()
user = await User.one(add_query={"name": "John"})
print(user) # User(id=ObjectId("64fc59cf6410868c9a40644b"), name="John", email="john@example")
In this example, we created new User in database. We then used the User.one
method to retrieve the user from the database.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT
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
Built Distribution
File details
Details for the file pydantic_mongo_document-0.2.3.9.tar.gz
.
File metadata
- Download URL: pydantic_mongo_document-0.2.3.9.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.1 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a97835f794bf7a94a7cfc706cb26f652869b2f611ff0db189520b86928bd8b1d |
|
MD5 | c1ad1530fba240ad67586560f7af56a8 |
|
BLAKE2b-256 | 4a8f5c0bc22e3f28b55040815d58a616847716e99bfe9bc20fd7e3df41e1dd25 |
File details
Details for the file pydantic_mongo_document-0.2.3.9-py3-none-any.whl
.
File metadata
- Download URL: pydantic_mongo_document-0.2.3.9-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.1 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2a9a3230b62e3ffa885094e919012dd22efe1d3502e8d1cac536e504d7db8a4 |
|
MD5 | fa30e6300e11d48afabedeedb2975773 |
|
BLAKE2b-256 | a0cd8ecd7a193c0ee2768c98ed6da8c82095634dd579838febeb864ec858e57d |