Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 platform has a nice Python API. Of course there is nothing official about Python on Android, but since Jython exists, does anybody know a way to let the snake and the robot work together ?

share|improve this question
2  
Let's test Joel's theory about the possibility of updates for well-google-ranked SO posts. See below or this: google-opensource.blogspot.com/2009/06/… – bvmou Jun 10 '09 at 5:14
51  
How is that post well ranked ? It's 4 lines long and there is like 3 answers ! I guess Pytho on Android has a huge sex appeal... – e-satis Jun 10 '09 at 8:17
7  
You mean not everybody is interested in python on android? – bvmou Jun 10 '09 at 9:02
12  
I mean the contrary. Given the little content of this post, if it's well ranked, it must be a huge expectation. I strongly hope the best for this project, I'm myself more a pythonista than a Java guy and coding Android with this language would sky rock the prototyping phase. – e-satis Jun 10 '09 at 12:51
2  
Oh, right... I don't think updating the question is usefull, but changing the accepted answser certainly is. – e-satis Jun 11 '09 at 12:21
show 5 more comments

19 Answers

up vote 173 down vote accepted

How about Kivy?
http://kivy.org/#home

"Open source library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps."

"Kivy is running on Linux, Windows, MacOSX and Android. You can run the same [python] code on all supported platforms."

Kivy Showcase app
https://market.android.com/details?id=org.kivy.showcase&hl=en

share|improve this answer
6  
Wonderful. Something that's really innovative; – e-satis Nov 19 '11 at 0:35
5  
i would be interested to hear about peoples experiances with this – Hortinstein Dec 7 '11 at 22:48
5  
Works very nicely, builds somewhat large packages. But the source code is actually on the device, so you can inspect and edit on site if need be. – relet Dec 19 '11 at 13:39
8  
If you use Kivy, here is a tool to help package your project into an APK: github.com/kivy/python-for-android – gdw2 Jan 9 '12 at 4:42
8  
Now, almost a full year later, is support any better? Has here been any notable improvements? – TankorSmash Nov 17 '12 at 2:32
show 6 more comments

There is also the new ASE project, it looks awesome, and has some integration with native Android components. Android Scripting Environment

share|improve this answer
38  
True, but they have to have ASE installed, it's not a solution that lets you write an Android app in python without anything already installed (normal user will be all "wtf is this ASE thing?) – Stuart Axon Nov 26 '10 at 18:30
3  
@Stuart that cracked me up. --> normal user will be all "wtf is this ASE thing? – sabertooth Dec 23 '10 at 5:50
14  
Further, ASE is a restricted environment; you cannot write full-blown Android apps even if ASE is pre-installed. See stackoverflow.com/questions/2076381 – Sridhar Ratnakumar Jan 23 '11 at 21:36
2  
I think it was renamed to SL4A. – Vanuan Dec 4 '12 at 21:25
2  
You can write apps, package them, and even sell them on Play Store if you like, with SL4A now days. It's come along well since the comments above were posted. If you want Python on Android, then PY4A, which runs on SL4A is probably the best choice. – Carl Smith Mar 9 at 17:53

YES!

An example via Matt Cutts -- "here’s a barcode scanner written in six lines of Python code:

import android
droid = android.Android()
code = droid.scanBarcode()
isbn = int(code['result']['SCAN_RESULT'])
url = "http://books.google.com?q=%d" % isbn
droid.startActivity('android.intent.action.VIEW', url)
share|improve this answer
the curly quotes fsck with the code parsing – lfaraone Dec 16 '09 at 0:59
13  
s/YES/meh. maybe/ ...it's extremely limited. anything graphical or multi touch? a big NO. – gcb Oct 23 '10 at 9:09
@gcb you can't use the normal android widget set, but you can use "webviews" (which is what the native gmail application uses, for example). – gdw2 Mar 16 '12 at 16:10
2  
golfed: import android as a;d=a.Android();d.startActivity('android.intent.action.VIEW',"http://books.googl‌​e.com?q=%d"%int(d.scanBarcode()['result']['SCAN_RESULT'])) – Alex L Dec 28 '12 at 6:20

"The Pygame Subset for Android is a port of a subset of Pygame functionality to the Android platform. The goal of the project is to allow the creation of Android-specific games, and to ease the porting of games from PC-like platforms to Android."

The examples include a complete game packaged in an APK, which is pretty interesting.

share|improve this answer
Several aspects were broken on my Droid X (buttons, or touchscreen, can't remember), so I didn't get very far with this route. – gdw2 Oct 5 '11 at 21:56

There's also SL4A written by a Google employee.

share|improve this answer

I just posted some directions for cross compiling Python 2.4.5 for Android. It takes some patching, and not all modules are supported, but the basics are there.

share|improve this answer

I've posted instructions and a patch for cross compiling Python 2.7.2 for Android, you can get it at my blog here: http://mdqinc.com/blog/2011/09/cross-compiling-python-for-android/

EDIT: I've open sourced Ignifuga, my 2D Game Engine, it's Python/SDL based and it cross compiles for Android. Even if you don't use it for games, you might get useful ideas from the code and the builder utility (named Schafer, after Tim...you know who).

share|improve this answer
Impressive. +1 for this. Not accepted because you can't possibly write anything for the public with this. – e-satis Oct 13 '11 at 14:14
If you mean you can not do graphic apps with it, you most definitely can, of course, more work is needed. I actually use this port combined with SDL 1.3, it's not trivial to go from the python interpreter to an interactive app, but it can be done. – gabomdq Oct 14 '11 at 2:38

As a python lover and Android programmer, I am sad to say this is not really a good way to go. There's two problems.

One problem is that there is a lot more than just a programming language to the Android development tools. A lot of the Android graphics involve XML files to configure the display, similar to HTML. The built-in java objects are really integrated with this XML layout, and it's a lot easier than writing your own code to go from logic to bitmap.

The other problem is that the G1 (and probably other android devices for the near future) are really not that fast. 200 Mhz processors, and RAM is very limited. Even in Java you have to do a decent amount of rewriting-to-avoid-more-object-creation if you want to make your app perfectly smooth. Python is going to be too slow for a while still on mobile devices.

share|improve this answer
31  
There is not a single java word on an Android phone, it's compiled to byte code during the packaging process. Speed is not the issue : Google could provide tools producing the right byte code from a python code (like for Jython). BTW, Dalvik is not the Java VM so this is not about Java VS Python. – e-satis Nov 2 '08 at 18:20
22  
Hehe. 200 MHz... 4 years later and now phones have quad-core processors... LOL. – Touzen Jul 26 '12 at 5:40

Not at the moment and you would be lucky to get Jython to work soon. If you're planning to start your development now you would be better off with just sticking to Java for now on.

share|improve this answer

Check out this blog here that explains how to install and run python and a simple webserver written in python on Android.

http://www.saffirecorp.com/?p=113

share|improve this answer
Very nice. If you can run a server, you may be able to run django. Django demo on an android tablet anyone ? – e-satis Dec 8 '10 at 11:02
1  
I've run web2py on my droid. Not too hard. – gdw2 Oct 5 '11 at 21:55
@gdw2 im curious how you managed to get web2py to run here? using sl4a and using python to run webpy.py to start the server? When you do this though, you need to launch the browser separately. And im sure you would have to make the end users install sl4a as well. – luckysmack Sep 5 '12 at 20:12
@luckysmack If I recall, I only started it using the terminal (ssh'd in to my phone). I never went so far as to package it into an app (with its own icon). – gdw2 Sep 7 '12 at 4:32

SL4A does what you want and is actively developed. You can install it on your droid easily from their site, and don't need root.

It supports a range of languages, Python support is currently for version 2.6, but the owner, Robbie, is personally working on Python3.

SL4A scripts have a library available for each supported language that gives you an interface to the Android API as a single Android object:

import android
droid = android.Android()

# say "hello world" using the text to speech facade
droid.ttsSpeak('hello world')

Each language has the pretty much the same API, and you can even access the device with JavaScript inside a webview or something:

var droid = new Android();
droid.ttsSpeak('hello from js');

SL4A URL: http://code.google.com/p/android-scripting/

Update

  • Python3 is out, but Python2.6 is the best supported version.
  • You can also now do native Android user interfaces, but this stuff is especially experimental.
share|improve this answer

PySide (Python QT Bindings) on android:

http://thp.io/2011/pyside-android/

share|improve this answer

Using SL4A (which has already been mentioned by itself in other answers) you can run a full-blown web2py instance (other python web frameworks are likely candidates as well). SL4A doesn't allow you to do native UI components (buttons, scroll bars, and the like), but it does support WebViews. A WebView is basically nothing more than a striped down web browser pointed at a fixed address. I believe the native Gmail app uses a WebView instead of going the regular widget route.

This route would have some interesting features:

  • In the case of most python web frameworks, you could actually develop and test without using an android device or android emulator.
  • Whatever Python code you end up writing for the phone could also be put on a public webserver with very little (if any) modification.
  • You could take advantage of all of the crazy web stuff out there: query, HTML5, CSS3, etc.
share|improve this answer
Cherrypy works well, with ws4py websocket support. Bottle is also fine on SL4A. – Carl Smith Feb 13 at 1:28

From the Python for android site:

Python for android is a project to create your own Python distribution including the modules you want, and create an apk including python, libs, and your application.

share|improve this answer
1  
Duplicate of a duplicate. – e-satis Jan 9 '12 at 8:22
1  
@e-satis: Thanks for your comment. I don't see which answer I'm duplicating. I can only guess that you think PFA is the same as Kivy. Though it's hosted under the Kivy project, you don't even have to use Kivy to use PFA. – gdw2 Jan 9 '12 at 22:46
Check @tito's deleted answer at the bottom point to PFA. Plus, there is little interest is running PFA without kivy since it's the only toolkit you got. – e-satis Jan 10 '12 at 0:55
It's not because kivy is currently the only toolkit available (some people are working to intregrate others) than it's a duplicate. Please consider the others options as-it, and not merge all into one post :| – tito Mar 16 '12 at 14:34

Yet another attempt: https://code.google.com/p/android-python27/

This one embed directly the Python interpretter in your app apk.

share|improve this answer

You can run your python code using sl4a. sl4a supports Python, Perl, JRuby, Lua, BeanShell, JavaScript, Tcl, and shell script.

You can learn sl4a Python Examples

share|improve this answer

I use the qpython app, it has a editor, a console, and you can run your python programs with it, the app is free, here is the link http://qpython.com/

share|improve this answer

There is a wonderful project called the Scripting Layer for Android (SL4A) that is bringing scripting languages to the Android platform and providing a working alternative to Java development.

To get started, you need a copy of the Android SDK running on your computer, and you need a Java VM. Although you aren't going to program your Android app with Java, you still need a Java runtime upon which to execute the Android emulator, which is part of the SDK. The inclusion of the Android emulator gives you a sandboxed testbed to play in while you create your app.

Then you need to download and install Sl4A. You can download a copy from here. http://code.google.com/p/android-scripting/

share|improve this answer
5  
Mentioned 4 times already. – e-satis Sep 10 '12 at 8:26
You don't need to install anything on your computer. I think you're thinking of Python4Android27. SL4A can use ADB and other tools, because they're handy, but it works fully without them. – Carl Smith Feb 13 at 1:33

protected by Robert Harvey Jul 10 '12 at 3:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.