flareio is a light Flare API SDK that wraps requests and automatically manages authentication.
Usage examples and use cases are documented in the Flare API documentation.
flareio is available on PyPI.
The library can be installed via pip install flareio.
import os
from flareio import FlareApiClient
client = FlareApiClient.from_env()
resp = client.get("/tokens/test")
print(resp.json())We recommend the following dependencies:
makeuvdirenv
The Makefile contains the following targets:
make testwill run testsmake checkwill run typecheckingmake formatformat will format the codemake format-checkwill run lintingmake ciwill run CI equivalent