flareio-cli is a beta CLI interface for the flare.io API.
The full CLI documentation can be found on Flare's API documentation website.
flareio-cli is available on PyPI, you can install it using:
pip install flareio-cli
However, we recommend that you invoke it using uv. Example:
uvx flareio-cli --help
For most commands, the cli requires that you export the FLARE_API_KEY environment variable.
Export Tenant Feed to CSV file:
export FLARE_API_KEY="<api-key>"
uvx run flareio-cli export-tenant-feed \
--cursor-file=cursor.txt \
--output-file=output.csv \
--from-date=2025-01-01
Learn more in the full CLI documentation.
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
Do you have ideas or feature requests? Feel free to open issues.