Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Python Programming [closed]

Tags:

python

android

Can I program for Android using Python? I seem to have stumbled upon many links while searching... however neither of them is concrete.

Any suggestions? I want to write apps for Android but really don't want to get into Java for all this.

PS: My question is whether I can write proper, full fledged apps for Android.

like image 615
user225312 Avatar asked Nov 15 '10 14:11

user225312


People also ask

Can Python programming be done on Android?

Python can run on Android through various apps from the play store library. This tutorial will explain how to run python on Android using Pydroid 3 – IDE for Python 3 application. Features : Offline Python 3.7 interpreter: no Internet is required to run Python programs.

How do I open a Python file on Android?

If you want to run Python on mobile, one of the easiest options is simply to download an IDE on your chosen platform. There is no need to download a separate interpreter, you can simply download the app and start typing and running your Python code.

Where I can write Python code in Android?

You may just install the application from play market and enjoy Python coding everywhere. Show activity on this post. Recently tried Pydroid, the best IDE on Android, autocompletion and code analysis works awesome, supports many libraries, much better than QPython3 that doesn't even have a pip in its third version yet.


1 Answers

Checkout Kivy. They have done a really great job so far, and I am a big fan of their work. It is still lacking some providers, but they keep adding new stuff to it everyday. First thing you need to do is to check your requirement against what they can offer based on their documentation. They have create an amazing framework for input such as multi-touch or pen handling. They use OpenGL ES internally, as a result complex graphics and visualizations can run very fast when interacting with the the application. Their process for creating an apk is also very straight forward.

like image 199
Aras Avatar answered Sep 23 '22 22:09

Aras