Generator of python HTTP-clients from OpenApi specification.
Project description
Pythogen
Generator of python HTTP-clients from OpenApi specification based on httpx
and pydantic
.
Features
- Discriminator
- Sync and async clients
- Tracing
- Metrics
Examples
Installation
pip install pythogen
Usage
Generate ordinary clients
- Asynchronous client
pythogen path/to/input/openapi.yaml path/to/output/client.py
- Asynchronous client with integration for metrics
pythogen path/to/input/openapi.yaml path/to/output/client.py --metrics
- Synchronous client
pythogen path/to/input/openapi.yaml path/to/output/client.py --sync
- Synchronous client with integration for metrics
pythogen path/to/input/openapi.yaml path/to/output/client.py --sync --metrics
Generate client as python-package
pythogen path/to/input/openapi.yaml path/to/package/output --package-version=0.0.1 --package-authors="Rick, Morty"
--package-version
— required;--package-authors
— optional;path/to/package/output
— path to the directory where package will be saved.
Usage client
from petstore.client_async import Client
from petstore.client_async import Pet
from petstore.client_async import EmptyBody
client = Client(base_url="http://your.base.url")
pets: list[Pet] | EmptyBody = await client.findPetsByStatus(status="available")
Development
- Activate environment
rm -rf venv || true python3 -m venv venv source venv/bin/activate make requirements
- Make changes
- Execute
make clients-for-tests && make test-clients
- Execute
make clients-for-examples
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
pythogen-0.0.31.tar.gz
(20.0 kB
view hashes)
Built Distribution
pythogen-0.0.31-py3-none-any.whl
(27.0 kB
view hashes)
Close
Hashes for pythogen-0.0.31-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb7909a5e44b66982b07bf57f36c9fdb2a098e64e568d6596f9138089fa1ba50 |
|
MD5 | 9bb2310aaad494ea122e2f5198b71bcc |
|
BLAKE2b-256 | e78f69add5ac1aab1251ac3f554fe5080ae98ac626d6d006d64e34fc74705cd1 |