Generate modern Python clients from OpenAPI
Project description
openapi-python-client
Generate modern Python clients from OpenAPI
This project is still in early development and does not support all OpenAPI features
Why This?
The Python clients generated by openapi-generator support Python 2 and therefore come with a lot of baggage. This tool aims to generate clients which:
- Use all the latest and greatest Python features like type annotations and dataclasses
- Don't carry around a bunch of compatibility code for older version of Python (e.g. the
sixpackage) - Have better documentation and more obvious usage instructions
Additionally, because this generator is written in Python, it should be more accessible to contribution by the people using it (Python developers).
Installation
pip install openapi-python-client
Usage
openapi-python-client generate --url https://my.api.com/openapi.json
This will generate a new client library named based on the title in your OpenAPI spec. For example, if the title of your API is "My API", the expected output will be "my-api-client". If a folder already exists by that name, you'll get an error.
What You Get
- A
pyproject.tomlfile with some basic metadata intended to be used with Poetry. - A
README.mdyou'll most definitely need to update with your project's details - A Python module named just like the auto-generated project name (e.g. "my_api_client") which contains:
- A
clientmodule which will have both aClientclass and anAuthenticatedClientclass. You'll need these for calling the functions in theapimodule. - An
apimodule which will contain one module for each tag in your OpenAPI spec, as well as adefaultmodule for endpoints without a tag. Each of these modules in turn contains one function for calling each endpoint. - A
modelsmodule which has all the classes defined by the various schemas in your OpenAPI spec
- A
OpenAPI features supported
- All HTTP Methods
- JSON and form bodies, path and query parameters
- float, string, int, datetimes, string enums, and custom schemas or lists containing any of those
- html/text or application/json responses containing any of the previous types
- Bearer token security
Contributors
- Dylan Anthony danthony@triaxtec.com (Owner)
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
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 openapi-python-client-0.1.0.dev0.tar.gz.
File metadata
- Download URL: openapi-python-client-0.1.0.dev0.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.3 CPython/3.8.1 Darwin/19.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1463c568472205b5be202888b04f38b06182078afa834ef7a3f92a2b885a3932
|
|
| MD5 |
b5a82dc1fd4b020261077442c471b6a0
|
|
| BLAKE2b-256 |
71ccbcbef29cb91ff28efa0f846b8b69d3154d6ea6e43e8fee3e93e1d9d89432
|
File details
Details for the file openapi_python_client-0.1.0.dev0-py3-none-any.whl.
File metadata
- Download URL: openapi_python_client-0.1.0.dev0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.3 CPython/3.8.1 Darwin/19.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0f845b52dfa57efbddac18d2fe456ba9064cfffafd0191c2059addb6b40d02c
|
|
| MD5 |
20b938a8895ff7770c14a2fa4e79d8bd
|
|
| BLAKE2b-256 |
c80a7b0fab29c7aa33fdc7db3c3eb55f3f8870d549f1c12a6fea03322936b1a7
|