Skip to main content

A async wrapper for mongodb

Project description

## Tailow
[![Build Status](https://travis-ci.org/sourcepirate/tailow.svg?branch=master)](https://travis-ci.org/sourcepirate/tailow)

A ORM wrapper around motor

## Usage

```python
import asyncio
from tailow.fields import *
from pymongo import ASCENDING
from tailow.document import Document

class Address(Document):

address = StringField(required=True)


class Student(Document):

name = StringField(required=True)
age = IntegerField(required=True)
std = IntegerField(required=True)
address = ReferenceField(Address)

class Meta:
name = "students"
indexes = [(age, ASCENDING)]


async def get_all_students():
values = await Student.objects.filter(name="sathya").limit(10).skip(2).find()
print(values)

evloop = asyncio.get_event_loop()
evloop.run_until_complete(get_all_students())

```

## Status

Work in progress.

Project details


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

tailow-0.1.0-py3.6.egg (21.8 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