Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oakfang/artemis


https://github.com/oakfang/artemis

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

Artemis - Async Restful TinyDB Models
======================================

A usage example:

```python

from artemis import ArtemisApplication, ArtemisModel
from artemis import types

app = ArtemisApplication('db.json')

@app.model('foos')
class Foo(ArtemisModel):
name = types.StringType(required=True)
age = types.FloatType(default=5)

```