API wrapper library for the song history of abc radio channels
- Free software: MIT license
- Documentation: https://abc-radio-wrapper.readthedocs.io.
import abc_radio_wrapper
ABC = abc_radio_wrapper.ABCRadio()
search_result = ABC.search(station="triplej")
for radio_play in search_result.radio_songs:
print(radio_play.song.title)
for artist in radio_play.song.artists:
print(artist.name)
- Use python to search through the radio catalogue of triplej, ABC jazz, doublej and more!
- full type coverage for fast type hints on modern IDE's
- >90% test coverage
- Pull out dataclasses into seperate class files
- Pull out unittests into seperate files
- Add async queries
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.