Skip to main content

RethinkDB based ORM

Project description

https://img.shields.io/pypi/v/anji-orm.svg https://img.shields.io/pypi/l/anji-orm.svg https://gitlab.com/AnjiProject/anji-orm/badges/master/build.svg

anji_orm simple ORM for RethinkDB

Installation

anji_orm is available as a python library on Pypi. Installation is very simple using pip :

$ pip install anji_orm

This will install anji_orm as well as external dependency.

Basic usage

ORM registry should be initiated before usage:

# For sync usage
register.init(dict(db='test'))
register.load()

# Or for async usage

register.init(dict(db='test'), async_mode=True)
await register.async_load()

That, create some model

class T1(Model):

    _table = 't2'

    a1 = StringField()
    a2 = StringField()

t2 = T1(a1='b', a1='c')
t2.send()
# or for async usage
await t2.async_send()

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

anji_orm-0.3.5-py2.py3-none-any.whl (29.1 kB view hashes)

Uploaded Python 2 Python 3

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