Find what's currently playing on any radio station. Alpha version live at https://now-playing-42nq5.ondigitalocean.app/.
Try out the API using Swagger UI.
I'll add more stuff here eventually.
This server was generated by the swagger-codegen project. By using the OpenAPI-Spec from a remote server, you can easily generate a server stub. This is an example of building a swagger-enabled Flask server.
This example uses the Connexion library on top of Flask.
Python 3.9+
To run the server, please execute the following from the root directory:
pip3 install -r requirements.txt
python3 -m api
and open your browser to here:
http://localhost:8080/api/ui/
To launch in dev mode with auto-reload enabled:
FLASK_ENV=development python -m api
To launch the integration tests, use tox:
sudo pip install tox
tox
The tests are ran using pytest inside tox. Pytest-specific test runner
arguments can be passed as extra positional arguments after --
. For
example, to run only the tests in the aggregators
submodule matching the france-bleu
radio station, run:
tox -- aggregators -k france-bleu
To run the server on a Docker container, please execute the following from the root directory:
# building the image
docker build -t now-playing .
# starting up a container
docker run -p 8080:8080 now-playing