up vote 321 down vote favorite
125
share [g+] share [fb]

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 ?

link|improve this question

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
9  
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
3  
You mean not everybody is interested in python on android? – bvmou Jun 10 '09 at 9:02
4  
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
1  
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 1 more comment
feedback

15 Answers

up vote 19 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

link|improve this answer
Wonderful. Something that's really innovative; – e-satis Nov 19 '11 at 0:35
1  
i would be interested to hear about peoples experiances with this – Hortinstein Dec 7 '11 at 22:48
1  
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
1  
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 at 4:42
@e-satis did Kivy work out for you? was it useful? I would be really thankful if you could post your experiences with Kivy in my question :) – julio.alegria Jan 23 at 13:54
show 2 more comments
feedback

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

link|improve this answer
21  
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
@Stuart that cracked me up. --> normal user will be all "wtf is this ASE thing? – geekam Dec 23 '10 at 5:50
6  
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
feedback

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)
link|improve this answer
the curly quotes fsck with the code parsing – lfaraone Dec 16 '09 at 0:59
5  
s/YES/meh. maybe/ ...it's extremely limited. anything graphical or multi touch? a big NO. – gcb Oct 23 '10 at 9:09
feedback

"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.

link|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
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
21  
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
feedback

There's also SL4A written by a Google employee.

link|improve this answer
feedback

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/

link|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
feedback

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

link|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
I've run web2py on my droid. Not too hard. – gdw2 Oct 5 '11 at 21:55
feedback

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 of with just sticking to Java for now on.

link|improve this answer
feedback

Given the Oracle lawsuit, lets just lobby Google to replace Dalvik with Pylvik and be rid of Larry and the J2me, which I've seen called an overly verbose mess by people who gave impressive code examples...

I guess there's ASEand this 10-step instruction and this cool example and the SL4A Wiki

link|improve this answer
1  
I doubt they will invest in that. Going to HTML 5 apps with Offline mode and JS API to access the phone capabilities feels more like the way everybody's heading to. – e-satis Sep 28 '10 at 8:36
feedback

PySide (Python QT Bindings) on android:

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

link|improve this answer
feedback

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.
link|improve this answer
feedback

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.

link|improve this answer
Duplicate of a duplicate. – e-satis Jan 9 at 8:22
@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 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 at 0:55
feedback

Your Answer

 
or
required, but never shown

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