Generator of python HTTP-clients from OpenApi specification.
Project description
Generator of python HTTP-clients from OpenApi specification based on httpx and pydantic.
Help
See documentation for more details.
Examples
- Sync and async clients for Petstore OpenAPI
Installation
Pip
pip install pythogen
Docker
docker pull artsmolin/pythogen
Generation
path/to/input
— path to the directory with openapi.yaml;path/to/output
— the path to the directory where the generated client will be saved;
Pip
pythogen path/to/input/openapi.yaml path/to/output/client.py
Docker
docker run \
-v ./path/to/input:/opt/path/to/input \
-v ./path/to/output:/opt/path/to/output \
artsmolin/pythogen \
path/to/input/openapi.yaml \
path/to/output/client.py
Usage
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")
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.1.33.tar.gz
(19.8 kB
view hashes)
Built Distribution
pythogen-0.1.33-py3-none-any.whl
(27.5 kB
view hashes)
Close
Hashes for pythogen-0.1.33-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 925c1d9e14bf7c1abd755165eb829ae27acaf9af81bc0473574dd69d7e06b93e |
|
MD5 | bbf0e85dcc8e00ed089eab17d47793b1 |
|
BLAKE2b-256 | 1469a814536c979356c8bb13269d069dd3fdf687ac740790114e85350f6a405b |