feedancy
The client is provided with async and sync adapters.
To install the async version with all its dependencies use:
pip install feedancy[asyncio]
To install the sync version with all its dependencies use:
pip install feedancy[sync]
To install both versions with all their dependencies use:
pip install feedancy[asyncio,sync]
Client instantiation example
from feedancy import new_client, Configuration
from feedancy.lib.adapter.requests import RequestsAdapter
client = new_client(RequestsAdapter(), Configuration(host="<your openapi server URL>"))