Tagged Questions
323
votes
15answers
112k views
Is there any way to run Python on Android?
I like the Android platform. Actually, with some friends, we even participate to the ADC with the Spoxt project.
But Java is not my favourite language at all. We are working on a S60 version and this ...
19
votes
4answers
747 views
How can I get contact name with his/her number
I'm trying to develop a simple app using Android Scripting and Python.
Now, I have a phone number, and I want to find out which contact has that number. I can do a contactsGet() and search for ...
9
votes
5answers
2k views
Making an android Python service to run in suspend state
Here's my Python script written using android-scripting:
import android, time
droid = android.Android()
interval = 1 # every 1 minute
while True:
# define your own vibrate pattern here
...
5
votes
1answer
3k views
Writing python (or any other SL4A) in android
Can someone point me to a tutorial on using the android scripting enviornment? I've seen plenty of tutorials on how to write python code using the android API especially from ...
5
votes
1answer
726 views
Can I port my existing python apps on ASE?
I learned that the Android Scripting Environment (ASE) supports python code. Can I take my existing python programs and run them on android?
Apart from the GUI, what else will I need to adapt? How ...
4
votes
2answers
898 views
installing python packages on android
I want to install a python package from source on android. Is this possible? I tried in the console to run the py install files, but distutils (.core, ccompiler) isn't being found. Is it possible to ...
2
votes
1answer
393 views
running python from an android app
I am trying to run a python script through an application I've written. I found some pages which say that this piece of code is doing it, but I can't figure it out.
...
2
votes
1answer
585 views
Using Android's `Timer.schedule` in Python
Could someone explain how to use the Timer.schedule - that is used for scheduling tasks - in Python?
Note that Python's time.sleep will not work in Android.
1
vote
4answers
85 views
Run python Script in android application
I want to get list of installed software on remote computer.For that I want to use python script in my android application.Now,I have a python script which is getting the list of installed software on ...
1
vote
1answer
123 views
How to get a Device Specific UID using Python in ASE on Android?
I am working on am Android Scripting Environment (ASE) script in Python to replicate an iPhone app.
I need a device UID of some sort. My thoughts where a salted MD5 hash of the MAC address or device ...
1
vote
1answer
554 views
How can I interact with the android scripting environment from an android app?
I'd like to use python scripts as plugins for an app I'm developing. This seems to be possible by interacting with android-scripting-environment (ASE), as is done by Locale, but I haven't found any ...
0
votes
2answers
91 views
how to setup android-scripting + python on Android phones?
I've downloaded the latest available version of python interpreter here. Now, how can i start scripting in python on my phone? The apk (r4) that i've installed is has not any other option than ...
0
votes
1answer
798 views
Using python in android to interface to sql
I know you can use python and other scripting languages in android. But I haven't seen weather or not it was possible to use python as an interface to sqlite in android. Is this possible? This is the ...