radios


Nameradios JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/frenck/python-radios
SummaryAsynchronous Python client for the Radio Browser API
upload_time2024-03-12 21:14:44
maintainerFranck Nijhof
docs_urlNone
authorFranck Nijhof
requires_python>=3.11,<4.0
licenseMIT
keywords radio browser radio web radio radios api async client
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python: Radio Browser API Client

[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](LICENSE.md)

[![Build Status][build-shield]][build]
[![Code Coverage][codecov-shield]][codecov]
[![Quality Gate Status][sonarcloud-shield]][sonarcloud]
[![Open in Dev Containers][devcontainer-shield]][devcontainer]

[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors]

[![Support Frenck on Patreon][patreon-shield]][patreon]


Asynchronous Python client for the Radio Browser API.

## About

[Radio Browser](https://www.radio-browser.info) community driven effort
(like WikiPedia) with the aim of collecting as many internet radio and
TV stations as possible.

This Python library is an async API client for that, originally developed
for use with the [Home Assistant](https://www.home-assistant.io) project.

## Installation

```bash
pip install radios
```

## Usage

```python
# pylint: disable=W0621
"""Asynchronous Python client for the Radio Browser API."""

import asyncio

from radios import FilterBy, Order, RadioBrowser


async def main() -> None:
    """Show example on how to query the Radio Browser API."""
    async with RadioBrowser(user_agent="MyAwesomeApp/1.0.0") as radios:
        # Print top 10 stations
        stations = await radios.stations(
            limit=10, order=Order.CLICK_COUNT, reverse=True
        )
        for station in stations:
            print(f"{station.name} ({station.click_count})")

        # Get a specific station
        print(await radios.station(uuid="9608b51d-0601-11e8-ae97-52543be04c81"))

        # Print top 10 stations in a country
        stations = await radios.stations(
            limit=10,
            order=Order.CLICK_COUNT,
            reverse=True,
            filter_by=FilterBy.COUNTRY_CODE_EXACT,
            filter_term="NL",
        )
        for station in stations:
            print(f"{station.name} ({station.click_count})")

        # Register a station "click"
        await radios.station_click(uuid="9608b51d-0601-11e8-ae97-52543be04c81")

        # Tags, countries and codes.
        print(await radios.tags(limit=10, order=Order.STATION_COUNT, reverse=True))
        print(await radios.countries(limit=10, order=Order.NAME))
        print(await radios.languages(limit=10, order=Order.NAME))


if __name__ == "__main__":
    asyncio.run(main())
```

## Changelog & Releases

This repository keeps a change log using [GitHub's releases][releases]
functionality.

Releases are based on [Semantic Versioning][semver], and use the format
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:

- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.

## Contributing

This is an active open-source project. We are always open to people who want to
use the code or contribute to it.

We've set up a separate document for our
[contribution guidelines](CONTRIBUTING.md).

Thank you for being involved! :heart_eyes:

## Setting up development environment

This Python project is fully managed using the [Poetry][poetry] dependency
manager. But also relies on the use of NodeJS for certain checks during
development.

You need at least:

- Python 3.9+
- [Poetry][poetry-install]
- NodeJS 14+ (including NPM)

To install all packages, including all development requirements:

```bash
npm install
poetry install
```

As this repository uses the [pre-commit][pre-commit] framework, all changes
are linted and tested with each commit. You can run all checks and tests
manually, using the following command:

```bash
poetry run pre-commit run --all-files
```

To run just the Python tests:

```bash
poetry run pytest
```

## Authors & contributors

The original setup of this repository is by [Franck Nijhof][frenck].

For a full list of all authors and contributors,
check [the contributor's page][contributors].

## License

MIT License

Copyright (c) 2022-2024 Franck Nijhof

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

[build-shield]: https://github.com/frenck/python-radios/actions/workflows/tests.yaml/badge.svg
[build]: https://github.com/frenck/python-radios/actions/workflows/tests.yaml
[codecov-shield]: https://codecov.io/gh/frenck/python-radios/branch/main/graph/badge.svg
[codecov]: https://codecov.io/gh/frenck/python-radios
[contributors]: https://github.com/frenck/python-radios/graphs/contributors
[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode
[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/frenck/python-radios
[frenck]: https://github.com/frenck
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
[github-sponsors]: https://github.com/sponsors/frenck
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
[license-shield]: https://img.shields.io/github/license/frenck/python-radios.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[poetry-install]: https://python-poetry.org/docs/#installation
[poetry]: https://python-poetry.org
[pre-commit]: https://pre-commit.com/
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[pypi]: https://pypi.org/project/radios/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/radios
[releases-shield]: https://img.shields.io/github/release/frenck/python-radios.svg
[releases]: https://github.com/frenck/python-radios/releases
[semver]: http://semver.org/spec/v2.0.0.html
[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=frenck_python-radios&metric=alert_status
[sonarcloud]: https://sonarcloud.io/summary/new_code?id=frenck_python-radios


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/frenck/python-radios",
    "name": "radios",
    "maintainer": "Franck Nijhof",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "opensource@frenck.dev",
    "keywords": "radio browser,radio,web radio,radios,api,async,client",
    "author": "Franck Nijhof",
    "author_email": "opensource@frenck.dev",
    "download_url": "https://files.pythonhosted.org/packages/bd/e3/c28deb9f2b0013d7707e268e23e9c5dd35edae784c7b8cbd26a88f305bb3/radios-0.3.1.tar.gz",
    "platform": null,
    "description": "# Python: Radio Browser API Client\n\n[![GitHub Release][releases-shield]][releases]\n[![Python Versions][python-versions-shield]][pypi]\n![Project Stage][project-stage-shield]\n![Project Maintenance][maintenance-shield]\n[![License][license-shield]](LICENSE.md)\n\n[![Build Status][build-shield]][build]\n[![Code Coverage][codecov-shield]][codecov]\n[![Quality Gate Status][sonarcloud-shield]][sonarcloud]\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\n\n[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors]\n\n[![Support Frenck on Patreon][patreon-shield]][patreon]\n\n\nAsynchronous Python client for the Radio Browser API.\n\n## About\n\n[Radio Browser](https://www.radio-browser.info) community driven effort\n(like WikiPedia) with the aim of collecting as many internet radio and\nTV stations as possible.\n\nThis Python library is an async API client for that, originally developed\nfor use with the [Home Assistant](https://www.home-assistant.io) project.\n\n## Installation\n\n```bash\npip install radios\n```\n\n## Usage\n\n```python\n# pylint: disable=W0621\n\"\"\"Asynchronous Python client for the Radio Browser API.\"\"\"\n\nimport asyncio\n\nfrom radios import FilterBy, Order, RadioBrowser\n\n\nasync def main() -> None:\n    \"\"\"Show example on how to query the Radio Browser API.\"\"\"\n    async with RadioBrowser(user_agent=\"MyAwesomeApp/1.0.0\") as radios:\n        # Print top 10 stations\n        stations = await radios.stations(\n            limit=10, order=Order.CLICK_COUNT, reverse=True\n        )\n        for station in stations:\n            print(f\"{station.name} ({station.click_count})\")\n\n        # Get a specific station\n        print(await radios.station(uuid=\"9608b51d-0601-11e8-ae97-52543be04c81\"))\n\n        # Print top 10 stations in a country\n        stations = await radios.stations(\n            limit=10,\n            order=Order.CLICK_COUNT,\n            reverse=True,\n            filter_by=FilterBy.COUNTRY_CODE_EXACT,\n            filter_term=\"NL\",\n        )\n        for station in stations:\n            print(f\"{station.name} ({station.click_count})\")\n\n        # Register a station \"click\"\n        await radios.station_click(uuid=\"9608b51d-0601-11e8-ae97-52543be04c81\")\n\n        # Tags, countries and codes.\n        print(await radios.tags(limit=10, order=Order.STATION_COUNT, reverse=True))\n        print(await radios.countries(limit=10, order=Order.NAME))\n        print(await radios.languages(limit=10, order=Order.NAME))\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\n## Changelog & Releases\n\nThis repository keeps a change log using [GitHub's releases][releases]\nfunctionality.\n\nReleases are based on [Semantic Versioning][semver], and use the format\nof `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented\nbased on the following:\n\n- `MAJOR`: Incompatible or major changes.\n- `MINOR`: Backwards-compatible new features and enhancements.\n- `PATCH`: Backwards-compatible bugfixes and package updates.\n\n## Contributing\n\nThis is an active open-source project. We are always open to people who want to\nuse the code or contribute to it.\n\nWe've set up a separate document for our\n[contribution guidelines](CONTRIBUTING.md).\n\nThank you for being involved! :heart_eyes:\n\n## Setting up development environment\n\nThis Python project is fully managed using the [Poetry][poetry] dependency\nmanager. But also relies on the use of NodeJS for certain checks during\ndevelopment.\n\nYou need at least:\n\n- Python 3.9+\n- [Poetry][poetry-install]\n- NodeJS 14+ (including NPM)\n\nTo install all packages, including all development requirements:\n\n```bash\nnpm install\npoetry install\n```\n\nAs this repository uses the [pre-commit][pre-commit] framework, all changes\nare linted and tested with each commit. You can run all checks and tests\nmanually, using the following command:\n\n```bash\npoetry run pre-commit run --all-files\n```\n\nTo run just the Python tests:\n\n```bash\npoetry run pytest\n```\n\n## Authors & contributors\n\nThe original setup of this repository is by [Franck Nijhof][frenck].\n\nFor a full list of all authors and contributors,\ncheck [the contributor's page][contributors].\n\n## License\n\nMIT License\n\nCopyright (c) 2022-2024 Franck Nijhof\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[build-shield]: https://github.com/frenck/python-radios/actions/workflows/tests.yaml/badge.svg\n[build]: https://github.com/frenck/python-radios/actions/workflows/tests.yaml\n[codecov-shield]: https://codecov.io/gh/frenck/python-radios/branch/main/graph/badge.svg\n[codecov]: https://codecov.io/gh/frenck/python-radios\n[contributors]: https://github.com/frenck/python-radios/graphs/contributors\n[devcontainer-shield]: https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode\n[devcontainer]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/frenck/python-radios\n[frenck]: https://github.com/frenck\n[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png\n[github-sponsors]: https://github.com/sponsors/frenck\n[keepchangelog]: http://keepachangelog.com/en/1.0.0/\n[license-shield]: https://img.shields.io/github/license/frenck/python-radios.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg\n[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png\n[patreon]: https://www.patreon.com/frenck\n[poetry-install]: https://python-poetry.org/docs/#installation\n[poetry]: https://python-poetry.org\n[pre-commit]: https://pre-commit.com/\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg\n[pypi]: https://pypi.org/project/radios/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/radios\n[releases-shield]: https://img.shields.io/github/release/frenck/python-radios.svg\n[releases]: https://github.com/frenck/python-radios/releases\n[semver]: http://semver.org/spec/v2.0.0.html\n[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=frenck_python-radios&metric=alert_status\n[sonarcloud]: https://sonarcloud.io/summary/new_code?id=frenck_python-radios\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Asynchronous Python client for the Radio Browser API",
    "version": "0.3.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/frenck/python-radios/issues",
        "Changelog": "https://github.com/frenck/python-radios/releases",
        "Documentation": "https://github.com/frenck/python-radios",
        "Homepage": "https://github.com/frenck/python-radios",
        "Repository": "https://github.com/frenck/python-radios"
    },
    "split_keywords": [
        "radio browser",
        "radio",
        "web radio",
        "radios",
        "api",
        "async",
        "client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b95a99240417df0aff608de8804ced963558b76b32f38c4e1fe76aba1802424",
                "md5": "52a3b7654b684d49698b464072e5118b",
                "sha256": "3bdd8917956bbb2e669abcaa22c3d92e1d320f93296f07d50b30fa00392bab22"
            },
            "downloads": -1,
            "filename": "radios-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "52a3b7654b684d49698b464072e5118b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 10860,
            "upload_time": "2024-03-12T21:14:42",
            "upload_time_iso_8601": "2024-03-12T21:14:42.233828Z",
            "url": "https://files.pythonhosted.org/packages/5b/95/a99240417df0aff608de8804ced963558b76b32f38c4e1fe76aba1802424/radios-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bde3c28deb9f2b0013d7707e268e23e9c5dd35edae784c7b8cbd26a88f305bb3",
                "md5": "91033962266506bf529fd39cafa0d3bd",
                "sha256": "717b62e944a277313a7c8c407e1902ac2c312fa70f9f957a42450d3934b3e2ca"
            },
            "downloads": -1,
            "filename": "radios-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "91033962266506bf529fd39cafa0d3bd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 12504,
            "upload_time": "2024-03-12T21:14:44",
            "upload_time_iso_8601": "2024-03-12T21:14:44.020808Z",
            "url": "https://files.pythonhosted.org/packages/bd/e3/c28deb9f2b0013d7707e268e23e9c5dd35edae784c7b8cbd26a88f305bb3/radios-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 21:14:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "frenck",
    "github_project": "python-radios",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "radios"
}
        
Elapsed time: 0.19859s