Metadata-Version: 2.1
Name: rokuecp
Version: 0.14.0
Summary: Asynchronous Python client for Roku (ECP)
Home-page: https://github.com/ctalkington/python-rokuecp
License: MIT
Keywords: roku,ecp,api,async,client
Author: Chris Talkington
Author-email: chris@talkingtontech.com
Maintainer: Chris Talkington
Maintainer-email: chris@talkingtontech.com
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: aiohttp (>=3.0.0)
Requires-Dist: awesomeversion (>=21.10.1)
Requires-Dist: backoff (>=1.9.0)
Requires-Dist: cachetools (>=4.2.4)
Requires-Dist: xmltodict (>=0.12.0)
Requires-Dist: yarl (>=1.6.0)
Project-URL: Bug Tracker, https://github.com/ctalkington/python-rokuecp/issues
Project-URL: Changelog, https://github.com/ctalkington/python-rokuecp/releases
Project-URL: Documentation, https://github.com/ctalkington/python-rokuecp
Project-URL: Repository, https://github.com/ctalkington/python-rokuecp
Description-Content-Type: text/markdown

# Python: Roku (ECP) Client

Asynchronous Python client for Roku devices using the [External Control Protocol](https://developer.roku.com/docs/developer-program/debugging/external-control-api.md).

## About

This package allows you to monitor and control Roku devices.

## Installation

```bash
pip install rokuecp
```

## Usage

```python
import asyncio

from rokuecp import Roku


async def main():
    """Show example of connecting to your Roku device."""
    async with Roku("192.168.1.100") as roku:
        print(roku)


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())
```

