8000 GitHub - mjec/python-rokuecp: Asynchronous Python client for Roku (ECP)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Asynchronous Python client for Roku (ECP)

License

Notifications You must be signed in to change notification settings

mjec/python-rokuecp

 
 

Repository files navigation

Python: Roku (ECP) Client

Asynchronous Python client for Roku devices using the External Control Protocol.

About

This package allows you to monitor and control Roku devices.

Installation

pip install rokuecp

Usage

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())

About

Asynchronous Python client for Roku (ECP)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%
0