Providing a beautiful way to interact with MongoDB asynchronously in Python.
A simplistic example, read more on the docs!
from motor.motor_asyncio import AsyncIOMotorClient
from alaric import Document
client = AsyncIOMotorClient("Mongo connection url")
database = client["my_database"]
config_document = Document(database, "config")
await config_document.insert({"_id": 1, "data": "hello world"})
...
data = await config_document.find({"_id": 1})
Docs can be found here
Want realtime help? Join the discord here.
This project is licensed under the MIT license
Want a feature added quickly? Want me to help build your software using Alaric?
Sponsor me here
In order to make development easier, I recommend using motor-stubs if you're planning on doing more than Alaric has to offer. I.e. Using motor itself.