Pre-release
This release is a pre-release and may not be stable for production use.
aiohug
Tasks:
Unpack aiohttp request to arguments with annotations
Validate handlers arguments
Generate swagger specification
Examples
Run ping pong application
from aiohttp import web
from aiohug import RouteTableDef
routes = RouteTableDef()
@routes.get("/ping/")
async def ping():
return "pong"
app = web.Application()
app.add_routes(routes)
if __name__ == "__main__":
web.run_app(app)
There is no more request object in handler.
Arguments from path and query
@routes.get("/hello/{name}/")
async def hello(name: fields.String(), greeting: fields.String() = "Hello"):
return {"msg": f"{greeting}, {name}"}
Body with schema
from aiohttp import web
from aiohug import RouteTableDef
routes = RouteTableDef()
class PayloadSchema(Schema):
count = fields.Int()
@routes.get("/")
async def with_body(body: PayloadSchema()):
return body
app = create_app()
app.add_routes(routes)
client = await test_client(app)
resp = await client.get("/", json={"count": "5", "another": 7})
assert await resp.json() == {"count": 5}
Another shortcuts
@routes.post("/ping/")
async def ping():
return 201, "pong"
Why aiohug?
It’s just hug API implementation for aiohttp
TODO:
don’t pass default arguments
default websocket handler with ping/pong and schemas support
ws = aiohug.WSHandler()
@ws("hello") # match message by `type` field
async def hello(name: str, greeting: str="Hi"):
""" Just send {"type": "hello", "name": "Lucy", "greeting": "Hi"} """
return {"text", f"{greeting}, {name}"}
app = create_app()
app.add_routes([web.get('/ws', ws)])
Release files for aiohug 0.3.2.dev29222942
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aiohug-0.3.2.dev29222942.tar.gz | 10.3 kB | Details |
Release files / aiohug-0.3.2.dev29222942.tar.gz
| Download URL | aiohug-0.3.2.dev29222942.tar.gz |
|---|---|
| Size | 10.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7ec634729f54617ed4c09cdf1f772fabe9d8be723c8238626520503f7d4e8662
|
|
BLAKE2b-256 checksum How to use checksums |
4b0f6c3ccd9e3d8d1034dc290b7ad0ef7717fb1b9d93a3d1445a974f806b9e98
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0
|