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.
You may find the changelog and all available versions on the Github releases page.
flareio-cli is available on PyPI.
Invoke it directly using uv (recommended):
# Running the most recent version.
uvx flareio-cli --help
# Running a specific version. Recommended to ensure stability.
# Example: uvx flareio-cli@0.5.0 --help
uvx flareio-cli@version --helpOr install it:
# Using uv
uv tool install flareio-cli
# Using pip
pip install flareio-cliExport 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.