tvoverlay


Nametvoverlay JSON
Version 2.0.2 PyPI version JSON
download
home_pagehttps://github.com/hareeshmu/pytvoverlay
SummaryPython API for sending notifications to TvOverlay for Android TV
upload_time2023-10-31 05:31:19
maintainerHareesh M U
docs_urlNone
authorHareesh M U
requires_python>=3.11,<4.0
licenseMIT
keywords tvoverlay api async client
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # TvOverlay Python Client for Android/Google TV

[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](.github/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 Hareesh via GitHub Sponsors][github-sponsors-shield]][github-sponsors]

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

Python client for TvOverlay to send notifications to Android/Google TV.

## About

This package allows you to control an TvOverlay notifications. It is mainly created to allow third-party programs to automate
the TvOverlay notifications.

## Installation

```bash
pip install tvoverlay
```

## Usage

```python
import asyncio

from tvoverlay import ConnectError, Notifications

HOST = "10.10.10.150"

async def main() -> None:
    """Run the example script."""
    notifier = Notifications(HOST)

    # validate connection
    try:
        response = await notifier.async_connect()
        print(response)
    except ConnectError:
        print("Connect Error")

    # send notification
    print(await notifier.async_send("This is a notification message"))


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

The easiest way to start, is by opening a CodeSpace here on GitHub, or by using
the [Dev Container][devcontainer] feature of Visual Studio Code.

[![Open in Dev Containers][devcontainer-shield]][devcontainer]

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.11+
- [Poetry][poetry-install]
- NodeJS 18+ (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 [Hareesh M U][hareeshmu].

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

## License

MIT License

Copyright (c) 2019-2023 Hareesh M U

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/hareeshmu/pytvoverlay/actions/workflows/tests.yaml/badge.svg
[build]: https://github.com/hareeshmu/pytvoverlay/actions/workflows/tests.yaml
[codecov-shield]: https://codecov.io/gh/hareeshmu/pytvoverlay/branch/main/graph/badge.svg
[codecov]: https://codecov.io/gh/hareeshmu/pytvoverlay
[contributors]: https://github.com/hareeshmu/pytvoverlay/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/hareeshmu/pytvoverlay
[hareeshmu]: https://github.com/hareeshmu
[github-sponsors-shield]: https://img.shields.io/badge/Sponsor-%E2%9D%A4-%23db61a2.svg?&logo=github&logoColor=white&labelColor=181717&style=flat-square
[github-sponsors]: https://github.com/sponsors/hareeshmu
[license-shield]: https://img.shields.io/github/license/hareeshmu/pytvoverlay
[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg
[patreon-shield]: https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dhareeshmu%26type%3Dpatrons&style=flat
[patreon]: https://www.patreon.com/hareeshmu
[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/tvoverlay/
[python-versions-shield]: https://img.shields.io/pypi/pyversions/tvoverlay
[releases-shield]: https://img.shields.io/github/release/hareeshmu/pytvoverlay
[releases]: https://github.com/hareeshmu/pytvoverlay/releases
[semver]: http://semver.org/spec/v2.0.0.html
[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=hareeshmu_pytvoverlay&metric=alert_status
[sonarcloud]: https://sonarcloud.io/summary/new_code?id=hareeshmu_tvoverlay

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hareeshmu/pytvoverlay",
    "name": "tvoverlay",
    "maintainer": "Hareesh M U",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "hareesh.mu@gmail.com",
    "keywords": "tvoverlay,api,async,client",
    "author": "Hareesh M U",
    "author_email": "hareesh.mu@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/18/cd/d92352f10fb1166fdbb79badec574568cf426427e646e223c5aaf235d207/tvoverlay-2.0.2.tar.gz",
    "platform": null,
    "description": "# TvOverlay Python Client for Android/Google TV\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]](.github/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 Hareesh via GitHub Sponsors][github-sponsors-shield]][github-sponsors]\n\n[![Support Hareesh on Patreon][patreon-shield]][patreon]\n\nPython client for TvOverlay to send notifications to Android/Google TV.\n\n## About\n\nThis package allows you to control an TvOverlay notifications. It is mainly created to allow third-party programs to automate\nthe TvOverlay notifications.\n\n## Installation\n\n```bash\npip install tvoverlay\n```\n\n## Usage\n\n```python\nimport asyncio\n\nfrom tvoverlay import ConnectError, Notifications\n\nHOST = \"10.10.10.150\"\n\nasync def main() -> None:\n    \"\"\"Run the example script.\"\"\"\n    notifier = Notifications(HOST)\n\n    # validate connection\n    try:\n        response = await notifier.async_connect()\n        print(response)\n    except ConnectError:\n        print(\"Connect Error\")\n\n    # send notification\n    print(await notifier.async_send(\"This is a notification message\"))\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\nThe easiest way to start, is by opening a CodeSpace here on GitHub, or by using\nthe [Dev Container][devcontainer] feature of Visual Studio Code.\n\n[![Open in Dev Containers][devcontainer-shield]][devcontainer]\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.11+\n- [Poetry][poetry-install]\n- NodeJS 18+ (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 [Hareesh M U][hareeshmu].\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) 2019-2023 Hareesh M U\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/hareeshmu/pytvoverlay/actions/workflows/tests.yaml/badge.svg\n[build]: https://github.com/hareeshmu/pytvoverlay/actions/workflows/tests.yaml\n[codecov-shield]: https://codecov.io/gh/hareeshmu/pytvoverlay/branch/main/graph/badge.svg\n[codecov]: https://codecov.io/gh/hareeshmu/pytvoverlay\n[contributors]: https://github.com/hareeshmu/pytvoverlay/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/hareeshmu/pytvoverlay\n[hareeshmu]: https://github.com/hareeshmu\n[github-sponsors-shield]: https://img.shields.io/badge/Sponsor-%E2%9D%A4-%23db61a2.svg?&logo=github&logoColor=white&labelColor=181717&style=flat-square\n[github-sponsors]: https://github.com/sponsors/hareeshmu\n[license-shield]: https://img.shields.io/github/license/hareeshmu/pytvoverlay\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg\n[patreon-shield]: https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dhareeshmu%26type%3Dpatrons&style=flat\n[patreon]: https://www.patreon.com/hareeshmu\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/tvoverlay/\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/tvoverlay\n[releases-shield]: https://img.shields.io/github/release/hareeshmu/pytvoverlay\n[releases]: https://github.com/hareeshmu/pytvoverlay/releases\n[semver]: http://semver.org/spec/v2.0.0.html\n[sonarcloud-shield]: https://sonarcloud.io/api/project_badges/measure?project=hareeshmu_pytvoverlay&metric=alert_status\n[sonarcloud]: https://sonarcloud.io/summary/new_code?id=hareeshmu_tvoverlay\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python API for sending notifications to TvOverlay for Android TV",
    "version": "2.0.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/hareeshmu/pytvoverlay/issues",
        "Changelog": "https://github.com/hareeshmu/pytvoverlay/releases",
        "Documentation": "https://github.com/hareeshmu/pytvoverlay",
        "Homepage": "https://github.com/hareeshmu/pytvoverlay",
        "Repository": "https://github.com/hareeshmu/pytvoverlay/releases"
    },
    "split_keywords": [
        "tvoverlay",
        "api",
        "async",
        "client"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0e1fbe5d5f9e53d5e14ebf98ebc9ce3d2a8acae38022f4b81dbd8180298cab0",
                "md5": "0963e269847237fcd1d747a43b212fdf",
                "sha256": "08bb0e624b7e594e79156bede59fbac170a49ec3f85d189bcde2d287cbd4c93f"
            },
            "downloads": -1,
            "filename": "tvoverlay-2.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0963e269847237fcd1d747a43b212fdf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 15761,
            "upload_time": "2023-10-31T05:31:17",
            "upload_time_iso_8601": "2023-10-31T05:31:17.909129Z",
            "url": "https://files.pythonhosted.org/packages/c0/e1/fbe5d5f9e53d5e14ebf98ebc9ce3d2a8acae38022f4b81dbd8180298cab0/tvoverlay-2.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18cdd92352f10fb1166fdbb79badec574568cf426427e646e223c5aaf235d207",
                "md5": "83990705993fb87e97ef92d4bd3a00d0",
                "sha256": "70e9cbcbc5957579465b75f8077fc2799f7bc6067e6130bb5ac2fe7fe11760ad"
            },
            "downloads": -1,
            "filename": "tvoverlay-2.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "83990705993fb87e97ef92d4bd3a00d0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 18032,
            "upload_time": "2023-10-31T05:31:19",
            "upload_time_iso_8601": "2023-10-31T05:31:19.227953Z",
            "url": "https://files.pythonhosted.org/packages/18/cd/d92352f10fb1166fdbb79badec574568cf426427e646e223c5aaf235d207/tvoverlay-2.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-31 05:31:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hareeshmu",
    "github_project": "pytvoverlay",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tvoverlay"
}
        
Elapsed time: 0.12529s