apidaora
OpenAPI / 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
- Declaration of request/response as dataclasses and dicts using typing annotations
- Input data validation with jsondaora
- One of the fastest python api framework
- Can run on any asgi server
Requirements
- Python 3.8+
- jsondaora for json validation/parsing
- orjson for json/bytes serialization (jsondaora dependency)
Instalation
$ pip install apidaora
Basic example
from dataclasses import dataclass
from apidaora import JSONResponse, MethodType, appdaora, path
@dataclass
class Response(JSONResponse):
body: str
@path('/hello', MethodType.GET)
def controller(name: str) -> Response:
message = f'Hello {name}!'
return Response(body=message)
app = appdaora(operations=[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: 14
"Hello World!"
Example for more request/response details
from typing import Optional, TypedDict, Union
from jsondaora import integer, jsondaora, string
from apidaora import (
JSONRequestBody,
JSONResponse,
MethodType,
appdaora,
header_param,
path,
)
# Domain
@jsondaora
class You(TypedDict):
name: str
last_name: str
age: integer(minimum=18)
@jsondaora
class HelloMessage(TypedDict):
message: str
about_you: You
async def hello_you_message(you: You, location: str) -> HelloMessage:
return HelloMessage(
message=await hello_message(you['name'], location), about_you=you
)
async def hello_message(name: str, location: str) -> str:
return f'Hello {name}! Welcome to {location}!'
# Application
@jsondaora
class RequestBody(JSONRequestBody):
Content = TypedDict('Content', {'last_name': str, 'age': str})
content: Content
@jsondaora
class Response(JSONResponse):
Headers = TypedDict('Headers', {'x_req_id': int})
headers: Headers
body: Union[HelloMessage, str]
@path('/hello/{name}', MethodType.PUT)
async def controller(
name: str,
location: string(max_length=100),
req_id: header_param(schema=Optional[int], name='x-req-id'),
queries: Optional[str] = None,
body: Optional[RequestBody] = None,
) -> Response:
if body:
message = await hello_you_message(
You(
name=name,
last_name=body.content['last_name'],
age=body.content['age'],
location=location,
),
location,
)
else:
message = await hello_message(name, location)
return Response(body=message, headers=Response.Headers(x_req_id=req_id))
app = appdaora(operations=[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: 1243567890' \
-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: 1243567890
content-type: application/json
content-length: 117
{"message":"Hello Me! Welcome to World!","about_you":{"name":"Me","last_name":"My Self","age":32,"location":"World"}}
Benchmark
The full results can be found here
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.6.0.tar.gz.
File metadata
- Download URL: apidaora-0.6.0.tar.gz
- Upload date:
- Size: 135.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3061c0812f60c9038c11ea5c13a0ad2f571454c8dc256e0dac715c22715e67c5
|
|
| MD5 |
f25da2501a4c8167f89ec5a3894bb1b5
|
|
| BLAKE2b-256 |
c4b15c3c71d747bbd3d7728bcb38f88be9333c9da05b93970450607a856c0974
|
File details
Details for the file apidaora-0.6.0-py3-none-any.whl.
File metadata
- Download URL: apidaora-0.6.0-py3-none-any.whl
- Upload date:
- Size: 52.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
583fa3f96ff535cbf1887d8ae61b01da38c249f8f56f4d3c7eb42703478b42b0
|
|
| MD5 |
6fedb591f130fc124222b3c6fdaf57c9
|
|
| BLAKE2b-256 |
079ca64e9dc322b295ec35b3921ab8705b46b09c5bcfcd455b056de2ebec65a5
|