apidaora
HTTP/REST API using dataclasses and TypedDict annotation for python
Documentation: https://dutradda.github.io/apidaora
Source Code: https://github.com/dutradda/apidaora
Key Features
-
Declare request objects as @jsondaora (can be TypedDict or @dataclass):
PathArgsfor values on pathQueryfor values on query stringHeadersfor values on headersBodyfor values on body
-
Declare response objects as @jsondaora (can be TypedDict or @dataclass):
Headersfor values on headersBodyfor values on body
Requirements
- Python 3.7+
- jsondaora for json validation/parsing
- orjson for json/bytes serialization (jsondaora dependency)
Instalation
$ pip install apidaora
Basic example
from http import HTTPStatus
from typing import TypedDict
from jsondaora import jsondaora
from apidaora import JSONResponse, MethodType, Request, Route, asgi_app
@jsondaora
class MyRequest(Request):
class MyQuery(TypedDict):
name: str
query: MyQuery
@jsondaora
class MyResponse(JSONResponse):
class MyResponseBody(TypedDict):
message: str
body: MyResponseBody
def hello_controller(req: MyRequest) -> MyResponse:
name = req.query['name']
body = MyResponse.MyResponseBody(message=f'Hello {name}!')
return MyResponse(HTTPStatus.OK, body=body)
app = asgi_app([Route('/hello', MethodType.GET, hello_controller)])
Running the server (needs uvicorn installed):
uvicorn myapp:app
INFO: Started server process [16220]
INFO: Waiting for application startup.
INFO: ASGI 'lifespan' protocol appears unsupported.
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Quering the server (needs curl installed):
curl -i localhost:8000/hello?name=World
HTTP/1.1 200 OK
date: Thu, 1st January 1970 00:00:00 GMT
server: uvicorn
content-type: application/json
content-length: 26
{"message":"Hello World!"}
Example for complete request/response
from http import HTTPStatus
from typing import TypedDict
from jsondaora import integer, jsondaora, string
from apidaora import JSONResponse, MethodType, Request, Route, asgi_app
@jsondaora
class MyHeaders(TypedDict):
x_req_id: str
@jsondaora
class MyRequest(Request):
class MyPathArgs(TypedDict):
name: str
class MyQuery(TypedDict):
location: str
class MyBody(TypedDict):
last_name: str
age: int
path_args: MyPathArgs
query: MyQuery
headers: MyHeaders
body: MyBody
@jsondaora
class MyResponse(JSONResponse):
class You:
name: str
last_name: str
location: string(max_length=100)
age: integer(minimum=18)
class MyResponseBody(TypedDict):
hello_message: str
about_you: 'MyResponse.You'
body: MyResponseBody
headers: MyHeaders
def hello_controller(req: MyRequest) -> MyResponse:
body = MyResponse.MyResponseBody(
hello_message=hello_message(
req.path_args['name'], req.query['location']
),
about_you=MyResponse.You(
name=req.path_args['name'],
last_name=req.body['last_name'],
location=req.query['location'],
age=req.body['age'],
),
)
headers = MyHeaders(x_req_id=req.headers['x_req_id'])
return MyResponse(HTTPStatus.OK, body=body, headers=headers)
def hello_message(name: str, location: str) -> str:
return f'Hello {name}! Welcome to {location}!'
app = asgi_app([Route('/hello/{name}', MethodType.PUT, hello_controller)])
Running the server:
uvicorn myapp:app
INFO: Started server process [16220]
INFO: Waiting for application startup.
INFO: ASGI 'lifespan' protocol appears unsupported.
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Quering the server:
curl -i -X PUT localhost:8000/hello/Me?location=World \
-H 'x-req-id: 1a2b3c4d5e6f7g8h' \
-d '{"last_name":"My Self","age":32}'
HTTP/1.1 200 OK
date: Thu, 1st January 1970 00:00:00 GMT
server: uvicorn
x-req-id: 1a2b3c4d5e6f7g8h
content-type: application/json
content-length: 123
{"hello_message":"Hello Me! Welcome to World!","about_you":{"name":"Me","last_name":"My Self","location":"World","age":32}}
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apidaora-0.5.1.tar.gz.
File metadata
- Download URL: apidaora-0.5.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae866742fa744cfb420e236ddf9294d83f026c23f851a1c788d2e364598e0745
|
|
| MD5 |
e5a74dc8374ecfe98820ccea1a23e52b
|
|
| BLAKE2b-256 |
e5b90cf05903018bab3b9bb94ac027e07632a15b9d387a5f95dd7f4b1b8a07a4
|
File details
Details for the file apidaora-0.5.1-py3-none-any.whl.
File metadata
- Download URL: apidaora-0.5.1-py3-none-any.whl
- Upload date:
- Size: 27.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c18d47b7d0827c2a0a6d825ae271c11154e528ed8a36a640efae2942536e6458
|
|
| MD5 |
aad7e2619bd6183cc64ecdfc43e1c9f4
|
|
| BLAKE2b-256 |
cdf8bc32965e11175673b758bdffa20c8d445f00e8f42ac6fac79b2130e54703
|