RethinkDB Object-Document Mapper
Project description
RethinkDB Object-Document Mapper written in Python
Rethinkengine is currently in development and not ready for production use.
Running unit tests
[![Build Status](https://travis-ci.org/bwind/rethinkengine.png?branch=master)](https://travis-ci.org/bwind/rethinkengine) [![Coverage Status](https://coveralls.io/repos/bwind/rethinkengine/badge.png)](https://coveralls.io/r/bwind/rethinkengine)
In the root of the repository you’ll find runtests.sh, which will run all the tests and show coverage stats. Requires packages nose and coverage to be installed. Rethinkengine aims to be compatible with Python versions 2.6 and 2.7. Python 3 support will be added later.
Connecting to RethinkDB
from rethinkengine import connect connect(‘dbname’)
If dbname doesn’t exist, it will be created for you.
Defining Documents
from rethinkengine import *
- class User(Document):
name = StringField() colors = ListField()
# Create the table User.table_create()
Storing data
u = User(name=’John’, colors=[‘red’, ‘blue’]) u.save()
u.colors = [] u.save()
Retrieving data
- for u in User.objects.all():
print u.name, u.colors
- for u in User.objects.filter(name=’John’):
print u.name, u.colors
- for u in User.objects.all().order_by(‘name’):
print u.name, u.colors
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
File details
Details for the file rethinkengine-0.1.0.tar.gz
.
File metadata
- Download URL: rethinkengine-0.1.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 803351d430aa7c3a1d036501d29be2c0ea27ccdcf519a36ecb14002ecbab349a |
|
MD5 | 2ec31e1b6f083bf0d9dec1e7db02ea34 |
|
BLAKE2b-256 | 9e2fd6f33ca57ccfe0541947252421dc0e311415f9c62ca4edfb6b6b0ab7f5e9 |