Metadata-Version: 2.2
Name: fip_radiod
Version: 0.0.0
Summary: Know what is currently playing on FIP
Project-URL: homepage, https://github.com/AdrienPlacais/fip_radiod
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests<3,>=2.32.3
Requires-Dist: python-dotenv<2,>=1.0.1
Requires-Dist: requests<3,>=2.30.0
Requires-Dist: setuptools<73,>=72
Provides-Extra: test
Requires-Dist: pytest<9,>=8.3.2; extra == "test"

# Fip Radiod
A set of helper functions to play FIP on a vintage radio.

For now, only get what music is currently playing.

You need a `.env` file, containing your Radio France API token:
```bash
RADIOFRANCE_API_TOKEN = "<api-token>"
```

## Simple installation
1. Check that you have Python3.10 or more.
2. Create a dedicated environment.
3. `pip install fip_radiod`
## Build from source (developers)
1. Check that you have Python3.10 or more.
2. `git clone git@github.com:AdrienPlacais/fip_radiod.git`
3. Create a virtual env, e.g. with `cd fip_radiod;pip -m venv venv`
4. Install package with `pip install -e .`
