pyapi-client

Python client library for making requests to any OpenAPI-based service.


License
MIT
Install
pip install pyapi-client==0.3.0

Documentation

PyAPI Client

Build Status Documentation Status

PyAPI Client is a Python library for consuming REST APIs based on OpenAPI specifications.

WARNING: This is still a work in progress and not quite ready for production usage. Until version 1.0 is released, any new release can be expected to break backward compatibility.

Quick Start

from pyapi.client import Client

client = Client.from_file("path/to/openapi.yaml")
result = client.some_endpoint_id("path", "variables", "query_var"="example")