Generate loveable Python HTTP API Clients
Project description
⚜️ Clientele
Generate loveable Python HTTP API Clients
Clientele lets you generate fully-typed, pythonic HTTP API Clients using an OpenAPI schema.
It's easy to use:
# Install as a global tool - it's not a dependency!
pipx install clientele
# Generate a client
clientele generate -u https://raw.githubusercontent.com/phalt/clientele/main/example_openapi_specs/best.json -o api_client/
Generated code
The generated code is designed by python developers, for python developers.
It uses modern tooling and has a great developer experience.
from my_api import client, schemas
# Pydantic models for inputs and outputs
data = schemas.RequestDataRequest(my_input="test")
# Easy to read client functions
response = client.request_data_request_data_post(data=data)
# Handle responses elegantly
match response:
case schemas.RequestDataResponse():
# Handle valid response
...
case schemas.ValidationError():
# Handle validation error
...
The generated code is tiny - the example schema we use for documentation and testing only requires 250 lines of code and 5 files.
Async support
You can choose to generate either a sync or an async client - we support both:
from my_async_api import client
# Async client functions
response = await client.simple_request_simple_request_get()
Other features
- Written entirely in Python.
- The generated client only depends on httpx and Pydantic 2.4.
- HTTP Basic and HTTP Bearer authentication support.
- Support your own configuration - we provide an entry point that will never be overwritten.
- Designed for easy testing with respx.
- API updated? Just run the same command again and check the git diff.
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
clientele-0.6.2.tar.gz
(13.9 kB
view details)
Built Distribution
clientele-0.6.2-py3-none-any.whl
(19.1 kB
view details)
File details
Details for the file clientele-0.6.2.tar.gz
.
File metadata
- Download URL: clientele-0.6.2.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.8.10 Linux/5.15.0-84-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1bac3f552e3702cb2a2b0999ed359b4965b334070e9219b982bb79ce8ee0c3a |
|
MD5 | 999d26b4de26f2025b4176782bebb14c |
|
BLAKE2b-256 | e1137afa9e8d5dab6cf1f43232a70021f3428dcd4de4b9d398012b48df24745b |
File details
Details for the file clientele-0.6.2-py3-none-any.whl
.
File metadata
- Download URL: clientele-0.6.2-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.8.10 Linux/5.15.0-84-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f9df7299b46a3f81a4af5fc9162d47bb81e357ee81f90d57ae53e197b89b968 |
|
MD5 | fa75811c188674a9c9515cd44e7e7fb5 |
|
BLAKE2b-256 | 2662fcb31acbcd23660d5de371ed218c457b00918bdb0596b25ca5d0fcf1b2ff |