Forum Archive

Beta bug while trying to run Roku package

ihf

Using Stash, I did pip install Roku (installs a package to control Roku devices). Install works but if I then do the following Pythonista locks up and must be restarted. I don’t think that Roku will run due to incompatibilities but I suppose it shouldn’t crash Pythonista

from Roku import Roku
roku = Roku(someipaddress)
Roku.home()


ihf

I am back to trying to get this to work post-beta. I thought I had gotten it to work at one point but I just tried the above again and Pythonista freezes as soon as I type myroku.h

Any thoughts on what might be wrong or how to further diagnose the pythonista bug?

The above code should read:

from roku import Roku
myroku = Roku(someipaddress)
myroku.home()