Package description here.
Project description
Note: This package is in the dangerous land of
0.x.y
versions and may be subject to breaking changes with minor version increments.
This package is superseded by astra.http.
nr.databind.rest
This module can be used to define a REST API interface using Python 3
annotations and nr.databind
object mapping features.
Todo
- Dynamic and static code generation for REST clients
Example
Resources are created by defining an Interface
subclass and decorating its
methods with the @Route
decorator. The subclass can then be used to
automatically generate client code and to implement a server based on the
same interface.
from my.service.api.types import MyRequest, MyResponse
from nr.databind.rest import Route, RouteParam
from nr.interface import Interface
class MyResource(Interface):
@Route('GET /my-endpoint/{parameter_a}')
def my_get_endpoint(self, parameter_a: str, parameter_b: RouteParam.Query(int)) -> MyResponse:
...
@Route('POST /my-endpoint/{parameter_a}')
def my_post_endpoint(self, parameter_a: str, body: MyRequest) -> MyResponse:
...
The resource is then implemented like this:
from my.service.api.resources import MyResource
from my.service.api.types import MyResponse
from nr.interface import implements
@implements(MyResource)
class MyResourceImpl:
def my_get_endpoint(self, parameter_a, parameter_b):
# ...
return MyResponse(...)
def my_post_endpoint(self, parameter_a, body):
# ...
return MyResponse(...)
Resources can then be bound to a server framework using one of the available bind mechanisms (currently only Flask is available).
from flask import Flask
from my.service.api.resources_impl import MyResourceImpl
from nr.databind.rest import MimeTypeMapper
from nr.databind.rest.flask import bind_resource
app = Flask(__name__)
mapper = MimeTypeMapper.json()
bind_resource(app, '/my-resource', MyResourceImpl(), mapper=mapper)
Copyright © 2020 Niklas Rosenstein
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 Distribution
Built Distribution
Hashes for nr.databind.rest-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3809b73d075ae15af281b10b15ec36a1ef8e745556ff7997841b78b1be0d8487 |
|
MD5 | ff5af384d1f7e06c1a9374538d5fed57 |
|
BLAKE2b-256 | d1ce81a5ad570336bbce9f84feb69adcf089c79ffb6c709d98eaee24cdd37590 |