Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rethinkengine-0.1.0.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page