Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get a python program I've written onto Blackberry or other mobile platform?

The said program runs only on my PC as of now.

I've been searching through StackOverflow, and I've found out about RhoMobile's Rhodes which allows you to write the app in Ruby once and run it in multiple mobile platforms: iPhone, Symbian, Android, BlackBerry, and Windows Mobile. Is there anything similar for Python? If not how would I go about doing it?

Thanks in advance!

like image 369
Louis93 Avatar asked May 25 '11 15:05

Louis93


1 Answers

You can use the PyJS python-to-javascript cross-"compiler" at http://pyjs.org/ to make your program into a web application, possibly locally stored. This would work on any mobile device with a competent browser with javascript enabled (pretty common nowadays, though it was not the case a few years ago).

It's still extremely buggy though... extremely...

like image 196
ninjagecko Avatar answered Sep 21 '22 16:09

ninjagecko