├── .gitignore ├── README.md ├── _config.yml ├── requirements.txt └── roku.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulmouzas/roku-remote/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulmouzas/roku-remote/HEAD/_config.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.8.1 2 | -------------------------------------------------------------------------------- /roku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulmouzas/roku-remote/HEAD/roku.py --------------------------------------------------------------------------------