Support REST calls for asyncio+aiohttp.
Project description
JSON REST framework based on aiohttp (an asyncio (PEP 3156) http server).
Example usage
Simple REST server can be run like this:
import asyncio import aiohttp import aiorest # define a simple request handler # which accept no arguments # and responds with json def hello(request): return {'hello': 'world'} loop = asyncio.get_event_loop() server = aiorest.RESTServer(hostname='127.0.0.1', loop=loop) # configure routes server.add_url('GET', '/hello', hello) # create server srv = loop.run_until_complete(loop.create_server( server.make_handler, '127.0.0.1', 8080)) @asyncio.coroutine def query(): resp = yield from aiohttp.request( 'GET', 'http://127.0.0.1:8080/hello', loop=loop) data = yield from resp.read_and_close(decode=True) print(data) loop.run_until_complete(query()) srv.close() loop.run_until_complete(srv.wait_closed()) loop.close()
this will print {'hello': 'world'} json
See examples for more.
Requirements
Python 3.3
asyncio http://code.google.com/p/tulip/ or Python 3.4+
optional module aiorest.redis_session requires aioredis https://github.com/aio-libs/aioredis
License
aiorest is offered under the MIT license.
CHANGES
0.2.3 (2014-08-28)
Redis session switched from asyncio_redis to aioredis
0.2.2 (2014-08-15)
Added Pyramid-like matchdict to request (see https://github.com/aio-libs/aiorest/pull/18)
Return “400 Bad Request” for incorrect JSON body in POST/PUT methods
README fixed
Custom response status code (see https://github.com/aio-libs/aiorest/pull/23)
0.1.1 (2014-07-09)
Switched to aiohttp v0.9.0
0.1.0 (2014-07-07)
Basic REST API
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
File details
Details for the file aiorest-0.2.3.tar.gz
.
File metadata
- Download URL: aiorest-0.2.3.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f62e19123e94344858a6a23d85d757f1ef252359ddc01b7d266aad0075ee40f2 |
|
MD5 | 8aa20bfd62581e604509c10ac04b0187 |
|
BLAKE2b-256 | 55f5b3017af6cc7bfe62025b2f92d5ce6ea63715d20a56737ebd233b49cfeb60 |
Provenance
File details
Details for the file aiorest-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: aiorest-0.2.3-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e61bb2fd381e0ee2f8ecc79a91e94744e212063d419585c935ea80d9d652380 |
|
MD5 | 1977f86436cbc41485bc89b1de54aaa7 |
|
BLAKE2b-256 | 27670d2ffb0b276c98147a728a726a130b66345e0ffca8bd99cb562d2bd958db |