Metadata-Version: 2.1
Name: flareio
Version: 0.1.7
Summary: 
Home-page: https://github.com/Flared/python-flareio
License: MIT
Author: Alexandre Viau
Author-email: alexandre.viau@flare.io
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: mypy[dev] (>=1.11.1,<2.0.0)
Requires-Dist: requests (>=2)
Requires-Dist: requests-mock[dev] (>=1.12.1,<2.0.0)
Requires-Dist: types-requests[dev] (>=2.32.0.20240712,<3.0.0.0)
Project-URL: Repository, https://github.com/Flared/python-flareio
Description-Content-Type: text/markdown

# python-flareio

flareio is a light [Flare API](https://api.docs.flare.io/) SDK that wraps requests and adds Flare API authentication.

## Installing

The library can be installed via `pip install flareio`.


## Basic Usage

```python
from flareio import FlareApiClient

client = FlareApiClient(
    api_key="fw-...",
)

sources = client.get(
    "https://api.flare.io/leaksdb/v2/sources",
).json()
```

## Contributing

- `make test` will run tests
- `make format` format will format the code
- `make lint` will run typechecking + linting

