JSON API realisation


License
MIT
Install
pip install jsonapi==0.0.1

Documentation

JSON-API

Build Status Coverage Status Version Downloads Download format License Development Status

Django module with json-api standard support. It lets you easily add powerful api on top of your models and generate auto documentation. Module is focused on simple integration allowing developers to add features later on. Most of the functions would work out of the box.

Compared to other solutions, this project does Django model introspection. It allows to automatically query database using select_related/prefetch_related options for related resources. No more configs, if you would like to include one resource into another, you are able to do that from client side. Your client knows, when it needs it. Server in this case would perform db queries in a most efficient way.

Development

Ready stories. Join the chat at https://gitter.im/pavlov99/jsonapi

Throughput Graph

'Throughput Graph'

Documentation

Library: http://jsonapi.readthedocs.org/

Api Specification: http://jsonapi.org/

TODO

I'm going to migrate backend ORM to peewee soon. During development I would support Django all the time. Idea behind it is to unify framework, so it would be possible to use jsonapi with Tornado, Flask or Asyncio.