Async MongoDB ODM with msgspec integration and automatic collection binding
Project description
mongospec
Minimal async MongoDB ODM built for speed and simplicity, featuring automatic collection binding and msgspec integration.
Why mongospec?
- ⚡ Blazing fast - Uses msgspec (fastest Python serialization) and mongojet (fastest async MongoDB wrapper)
- 🧩 Dead simple - No complex abstractions, just clean document handling
- 🏎️ Zero overhead - Optimized for performance-critical applications
Installation
pip install mongospec
Quick Start
import asyncio
from datetime import datetime
import mongojet
import msgspec
import mongospec
from mongospec import MongoDocument
class User(MongoDocument):
__collection_name__ = "users"
__indexes__ = [{"keys": [("email", 1)], "options": {"unique": True}}]
name: str
email: str
created_at: datetime = msgspec.field(default_factory=datetime.now)
async def main():
mongo_client = await mongojet.create_client("mongodb://localhost:27017")
try:
await mongospec.init(mongo_client.get_database("db"), document_types=[User])
# Create and insert user
user = User(name="Alice", email="alice@example.com")
await user.insert()
# Find document
found = await User.find_one({"email": "alice@example.com"})
print(found.dump())
finally:
await mongospec.close()
asyncio.run(main())
Performance Features
- 🚀 msgspec-powered serialization (2-10x faster than alternatives)
- ⚡ mongojet backend (faster than Motor with identical API)
- 🧬 Compiled structs for document models
- 📉 Minimal abstraction overhead
⚠️ Early Alpha Notice
Basic CRUD operations supported. Designed for rapid prototyping. Not production-ready. API will evolve.
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
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
File details
Details for the file mongospec-0.0.1.post1.tar.gz.
File metadata
- Download URL: mongospec-0.0.1.post1.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49cb558db46dad5d0bb6be47af89d22d07745a5f9a156a1446ce9b70860d3a23
|
|
| MD5 |
48ccd47a1a131835bfcc2b572e19257f
|
|
| BLAKE2b-256 |
b9eb69eec969e36c066a4b8339889f6a10d1b733d85985caaeb7ee85635f22bd
|
File details
Details for the file mongospec-0.0.1.post1-py3-none-any.whl.
File metadata
- Download URL: mongospec-0.0.1.post1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
317a4e7b6f03c6aa151d43660d32774413f8312a182b0e8efdcd6f81c1f3a1a2
|
|
| MD5 |
e915fe5d7ee7ddf176de3124c97d88ff
|
|
| BLAKE2b-256 |
43c9472f9a21eb8b7e1014d91e3382cd1a788a416ff2d962aebf6d7c9c931c95
|