Automatic avro wire protocol support for FastAPI
Project description
Add Avro encoding support to your FastAPI application with a one-line setup
- app = FastAPI()
+ app = AvroFastAPI()
Installation
pip install avrofastapi
Usage
SERVER
from avrofastapi import AvroFastAPI
from datetime import datetime, timezone
from pydantic import BaseModel
app = AvroFastAPI()
class TestResponseModel(BaseModel) :
A: str
B: int
C: datetime
@app.get('/', response_model=TestResponseModel)
def v1Example() :
return TestResponseModel(
A='ayy',
B=1337,
C=datetime.now(timezone.utc),
)
if __name__ == '__main__' :
from uvicorn.main import run
run(app, host='0.0.0.0', port=5000)
CLIENT
from avrofastapi.gateway import Gateway
from datetime import datetime
from pydantic import BaseModel
import requests
import asyncio
class TestResponseModel(BaseModel) :
A: str
B: int
C: datetime
requests.get('http://localhost:5000/').json()
# returns: {'A': 'ayy', 'B': 1337, 'C': '2023-01-22T10:01:00.543317+00:00'}
gateway = Gateway('http://localhost:5000/', 'v1Example__get', response_model=TestResponseModel)
asyncio.run(gateway())
# returns: TestResponseModel(A='ayy', B=1337, C=datetime.datetime(2023, 1, 22, 10, 2, 29, 641314, tzinfo=<avro.timezones.UTCTzinfo object at 0x7efbe9cdb580>))
Development
Fork the parent repository at https://github.com/kheina-com/avrofastapi and edit like any other python project.
Tests are run with pytest
in the command line and input sorting is run via isort .
License
This work is licensed under the Mozilla Public License 2.0, allowing for public, private, and commercial use so long as access to this library's source code is provided. If this library's source code is modified, then the modified source code must be licensed under the same license or an applicable GNU license and made publicly available.
Project details
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 avrofastapi-0.0.6.tar.gz
.
File metadata
- Download URL: avrofastapi-0.0.6.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3c9ec59c179cb9f0e1a3856b4317ef4b9aa29570c0a4e5e5fd25bf9e5cd8c32 |
|
MD5 | 323f701502e4f68b1746b26855ceb112 |
|
BLAKE2b-256 | b225ebf1d8120dad50d1fe859d582a3e5b6ee69a33b41a583d40a4570ec5040b |
File details
Details for the file avrofastapi-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: avrofastapi-0.0.6-py3-none-any.whl
- Upload date:
- Size: 28.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3d92baa0801479bec93d555e9ef267b1c60dfd873a8ab8b866c04ce4ae7ad73 |
|
MD5 | 717fb32ab110c90e8f6fdad249f206d0 |
|
BLAKE2b-256 | 67a18001fff2e7373dce80e93729337155ed9686804c022b09e0c66208890cf7 |