Skip to main content

Async Client and Validator of OpenAPI 3 Specifications

Project description

A Python OpenAPI 3 Specification client and validator for Python 3.

Validation Mode

This module can be run against a spec file to validate it like so:

python3 -m asyncopenapi3 /path/to/spec

Usage as a Client

This library also functions as an interactive client for arbitrary OpenAPI 3 specs. For example, using Linode’s OpenAPI 3 Specification for reference:

from asyncopenapi3 import OpenAPI
import yaml

# load the spec file and read the yaml
with open('openapi.yaml') as f:
    spec = yaml.safe_load(f.read())

# parse the spec into python - this will raise if the spec is invalid
api = OpenAPI(spec)

# call operations and receive result models
regions = api.call_getRegions()

# authenticate using a securityScheme defined in the spec's components.securitySchemes
api.authenticate('personalAccessToken', my_token)

# call an operation that requires authentication
linodes  = api.call_getLinodeInstances()

# call an operation with parameters
linode = api.call_getLinodeInstance(parameters={"linodeId": 123})

# the models returns are all of the same (generated) type
print(type(linode))                      # openapi.schemas.Linode
type(linode) == type(linodes.data[0])    # True

# call an operation with a request body
new_linode = api.call_createLinodeInstance(data={"region":"us-east","type":"g6-standard-2"})

# the returned models is still of the correct type
type(new_linode) == type(linode)     # True

HTTP basic authentication and HTTP digest authentication works like this:

# authenticate using a securityScheme defined in the spec's components.securitySchemes
# Tuple with (username, password) as second argument
api.authenticate('basicAuth', ('username', 'password'))

Running Tests

This project includes a test suite, run via pytest. To run the test suite, ensure that you’ve installed the dependencies and then run pytest in the root of this project.

Roadmap

The following features are planned for the future:

  • Request body models, creation, and validation.

  • Parameters interface with validation and explicit typing.

  • Support for more authentication types.

  • Support for non-json request/response content.

  • Full support for all objects defined in the specification.

Project details


Download files

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

Source Distribution

asyncopenapi3-1.8.2.1.tar.gz (44.7 kB view details)

Uploaded Source

Built Distribution

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

asyncopenapi3-1.8.2.1-py2.py3-none-any.whl (52.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file asyncopenapi3-1.8.2.1.tar.gz.

File metadata

  • Download URL: asyncopenapi3-1.8.2.1.tar.gz
  • Upload date:
  • Size: 44.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for asyncopenapi3-1.8.2.1.tar.gz
Algorithm Hash digest
SHA256 687fd1e0cbcc6144df1f522d1669406fb3338d885f668af2107f3cd59729458d
MD5 7528c38f6c34879c727d744938984bfe
BLAKE2b-256 a21ffebc170644f3bc664b0e2e61a9e461b1ee344bfe8c45e8555f00ecef857a

See more details on using hashes here.

File details

Details for the file asyncopenapi3-1.8.2.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for asyncopenapi3-1.8.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e5b8f4a55f7e3108c2a922cdd5cc8f1ee1cd88b6e2399d42c41b86ca6aaaa9fa
MD5 e585fb3dd9a8a8e95d6e705d24691b25
BLAKE2b-256 4ca8ed617642bd97bcc3212def02dbe02d10badb2d9cae451fe69b9db2015056

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