File: README.md

package info (click to toggle)
emulated-roku 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: python: 442; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# emulated_roku

This library is for emulating the Roku API. Discovery is tested with Logitech Harmony and Android remotes.
Only key press / down / up events and app launches (10 dummy apps) are implemented in the RokuCommandHandler callback.  
Other functionality such as input, search will not work.
See the [example](example.py) on how to use.

Application list can be customized with a string in this format :

`1:first-app,2:second-app,3:third-app`

Which would generate this response :

```angular2html
<apps>
    <app id="1" version="1.0.0">first-app</app>
    <app id="2" version="1.0.0">second-app</app>
    <app id="3" version="1.0.0">third-app</app>
</apps>
```