Skip to main content

Generate modern Python clients from OpenAPI

Project description

triaxtec codecov PyPI version shields.io MIT license Generic badge Code style: black

openapi-python-client

Generate modern Python clients from OpenAPI

This project is still in 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:

  1. Use all the latest and greatest Python features like type annotations and dataclasses
  2. Don't carry around a bunch of compatibility code for older version of Python (e.g. the six package)
  3. 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

I recommend you install with pipx so you don't conflict with any other packages you might have: pipx install openapi-python-client.

Better yet, use pipx run openapi-python-client <normal params / options> to always use the latest version of the generator.

You can install with normal pip if you want to though: pip install openapi-python-client

Then, if you want tab completion: openapi-python-client --install-completion

Usage

Create a new client

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.

Update an existing client

openapi-python-client update --url https://my.api.com/openapi.json

For more usage details run openapi-python-client --help or read usage

What You Get

  1. A pyproject.toml file with some basic metadata intended to be used with Poetry.
  2. A README.md you'll most definitely need to update with your project's details
  3. A Python module named just like the auto-generated project name (e.g. "my_api_client") which contains:
    1. A client module which will have both a Client class and an AuthenticatedClient class. You'll need these for calling the functions in the api module.
    2. An api module which will contain one module for each tag in your OpenAPI spec, as well as a default module for endpoints without a tag. Each of these modules in turn contains one function for calling each endpoint.
    3. A models module which has all the classes defined by the various schemas in your OpenAPI spec

For a full example you can look at the test_end_to_end directory which has a declared FastAPI server and the resulting openapi.json file in the "fastapi" directory. "golden-master" is the generated client from that OpenAPI document.

OpenAPI features supported

  1. All HTTP Methods
  2. JSON and form bodies, path and query parameters
  3. File uploads with multipart/form-data bodies
  4. float, string, int, date, datetime, string enums, and custom schemas or lists containing any of those
  5. html/text or application/json responses containing any of the previous types
  6. Bearer token security

Configuration

You can pass a YAML (or JSON) file to openapi-python-client with the --config option in order to change some behavior. The following parameters are supported:

class_overrides

Used to change the name of generated model classes. This param should be a mapping of existing class name (usually a key in the "schemas" section of your OpenAPI document) to class_name and module_name. As an example, if the name of the a model in OpenAPI (and therefore the generated class name) was something like "_PrivateInternalLongName" and you want the generated client's model to be called "ShortName" in a module called "short_name" you could do this:

Example:

class_overrides:
    _PrivateInternalLongName:
      class_name: ShortName
      module_name: short_name

The easiest way to find what needs to be overridden is probably to generate your client and go look at everything in the models folder.

Project details


Release history Release notifications | RSS feed

This version

0.5.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openapi-python-client-0.5.1.tar.gz (45.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openapi_python_client-0.5.1-py3-none-any.whl (68.3 kB view details)

Uploaded Python 3

File details

Details for the file openapi-python-client-0.5.1.tar.gz.

File metadata

  • Download URL: openapi-python-client-0.5.1.tar.gz
  • Upload date:
  • Size: 45.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.3.0-1032-azure

File hashes

Hashes for openapi-python-client-0.5.1.tar.gz
Algorithm Hash digest
SHA256 8c775106bc54702f3d85d21badc10e5e7696cfa4c143802f66b164c3b41cfd58
MD5 655d030ed79028b3f9397d203250718f
BLAKE2b-256 599277eb6f9a80cad0c9396f6db348ebe6bbf3e18e5952181b264b6d0c615987

See more details on using hashes here.

File details

Details for the file openapi_python_client-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for openapi_python_client-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c3fefcb861b440d3bf254b74f92df14a38d665c4d79604f22a7b738ac9ec66e8
MD5 7a5ad6239ad96c2ad0933f17228d5ca8
BLAKE2b-256 2be9c6e9e0400140b2640e1ada626d22b56a6829989c7288d0286df507a38814

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page