Yet Another Document Mapper (ODM) for MongoDB
Project description
It’s small and simple ODM for use with MongoDB.
Full documentation: http://yadm.readthedocs.org
Quick start
import pymongo from yadm import Database, Document, fields # Create model class BlogPost(Document): __collection__ = 'blog_posts' title = fields.StringField body = fields.StringField # Create post post = BlogPost() post.title = 'Small post' post.body = 'Bla-bla-bla...' # Connect to database self.client = pymongo.MongoClient('localhost', 27017) db = Database(self.client, 'test') # Insert post to database db.insert(post) # Query posts qs = db.get_queryset(BlogPost).find({'title': {'$regex': '^s'}}) assert qs.count() > 0 for post in qs: assert post.title.startswith('s') # Query one post post = db.get_queryset(BlogPost).find_one({'title': 'Small post'}) # Change post post.title = 'Bla-bla-bla title' # Save changed post db.save(post)
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
yadm-0.5.tar.bz2
(16.6 kB
view details)
File details
Details for the file yadm-0.5.tar.bz2
.
File metadata
- Download URL: yadm-0.5.tar.bz2
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e04138493d92bfa9f1169de12c744fd7196544a9280a1dc41d12920b5fb8f95f |
|
MD5 | 82d4f06369aca2d8ffb8cd21cc3025f3 |
|
BLAKE2b-256 | 95758166926ed10870f63af33a5c11a809b29f93fdc94f39b7daa3f69c0a868c |