aiohttp-rest

RESTful endpoints for aoihttp that bind directly to a model


License
MIT
Install
pip install aiohttp-rest==0.1.0

Documentation

aiohttp-rest

aiohttp-rest makes it easy to create RESTful aiohttp endpoints that bind directly to models with minimal modification.

https://travis-ci.org/atbentley/aiohttp-rest.svg?branch=master https://coveralls.io/repos/github/atbentley/aiohttp-rest/badge.svg?branch=master

Usage

Create your model:

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

Create an aiohttp application that makes use of a aiohttp_rest.RestResource:

from aiohttp.web import Application, run_app
from aiohttp_rest import RestResource

from person import Person


people = {}

app = Application()
person_resource = RestResource('people', Person, people, ('name', 'age'), 'name')
person_resource.register(app.router)

run_app(app)

Interact with the API:

http PUT localhost:8080/people/andrew age=24
http localhost:8080/people/andrew
http PUT localhost:8080/people/andrew/age age=25
http DELETE localhost:8080/people/andrew

Several things are required by the RestResource to make all this work:

  • A name for the resource, this will form the base of the URL.
  • A factory method for the model, as seen above, this can simply be the init method for the model or something more complex.
  • A collection to store the models, this should be a dict-like object.
  • A list of properties to expose to the API.
  • A property to treat as the id for the collection. In the above example we used the name as the id, so that's what we used in our URLs to refer to a specific instance in the collection.

Installing

pip install aiohttp-rest

Tests

pip install -r build-requirements.txt
py.test --cov aiohttp_rest tests

License

MIT