A MongoDB object-document mapping layer for Python
Project description
MongoMonkey
============
MongoMonkey is a simple ODM for mongo.
The key idea was to use standard pymongo api, without overriding it.
Example of usage:
-------------
```python
from pymongo import Connection
from mongomonkey import Model, Field, list_of
class Book(Model):
title = Field(unicode)
page_count = Field(int)
class Author(Model):
name = Field(unicode)
books = Field(list_of(Book))
connection = Connection()
db = connection.test_database
collection = db.test_collection
book1 = Book(title=u"Alice's Adventures in Wonderland", page_count=191)
author = Author(name=u"Lewis Carroll")
# Accessing by field attribute
author.books = [book1]
# Accessing like dict item
author['books'].append({u"title": u"A Tangled Tale", u"page_count": 152})
# Saving object
collection.save(author) # By default pymongo would attach '_id' to this document.
# Retrieving object
author = collection.find_one(as_class=Author)
```
Recursive embedding:
-------------
```python
from mongomonkey import Model, Field, list_of
class Node(Model):
title = Field(unicode)
# You can use 'self' to point on currently creating Model
child1 = Field('self')
# Also you can use a name of a model to point on it
child2 = Field('Node')
# Printing instance of Node
print Node(title=u"root", child1=Node(title=u"Child1"), child2=Node(title=u"Child2"))
```
Developing and Contributing
-------------
If you have any question, ideas or improvements feel free to fork or add an issue
on github http://github.com/xonatius/mongo-monkey
============
MongoMonkey is a simple ODM for mongo.
The key idea was to use standard pymongo api, without overriding it.
Example of usage:
-------------
```python
from pymongo import Connection
from mongomonkey import Model, Field, list_of
class Book(Model):
title = Field(unicode)
page_count = Field(int)
class Author(Model):
name = Field(unicode)
books = Field(list_of(Book))
connection = Connection()
db = connection.test_database
collection = db.test_collection
book1 = Book(title=u"Alice's Adventures in Wonderland", page_count=191)
author = Author(name=u"Lewis Carroll")
# Accessing by field attribute
author.books = [book1]
# Accessing like dict item
author['books'].append({u"title": u"A Tangled Tale", u"page_count": 152})
# Saving object
collection.save(author) # By default pymongo would attach '_id' to this document.
# Retrieving object
author = collection.find_one(as_class=Author)
```
Recursive embedding:
-------------
```python
from mongomonkey import Model, Field, list_of
class Node(Model):
title = Field(unicode)
# You can use 'self' to point on currently creating Model
child1 = Field('self')
# Also you can use a name of a model to point on it
child2 = Field('Node')
# Printing instance of Node
print Node(title=u"root", child1=Node(title=u"Child1"), child2=Node(title=u"Child2"))
```
Developing and Contributing
-------------
If you have any question, ideas or improvements feel free to fork or add an issue
on github http://github.com/xonatius/mongo-monkey
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
mongomonkey-0.1.tar.gz
(6.5 kB
view details)
File details
Details for the file mongomonkey-0.1.tar.gz
.
File metadata
- Download URL: mongomonkey-0.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4364541abee5a6d21a0c415bec5f3faf31acd3d9edf207b12c54975a8ffb9a5 |
|
MD5 | e8b5b5dd82d610d7b278feb2b40e7c28 |
|
BLAKE2b-256 | 139e53a4fad7eb517259bc43638df17a11afa77a5b2a56e85d7399ec47712a42 |