Python Runner For Android

In this blog: Learn how to create a simple App for iOS using Python frameworks. Download our “Mobile Development” build to get a version of Python 3.7 complete with the mobile development frameworks explained in this post.

The Python ecosystem has a vast array of libraries that cover almost all aspects of software development. What is particularly interesting is that some of those libraries also include tools for compiling Python into native code for specific mobile platforms such as iOS, and Android. Yes, you heard that right! It is possible to use Python to create native mobile applications.

You can now run Python scripts on your Android Device! Press on a program such as speak.py A little popup will be shown. Pressing on the terminal icon will start the Python script. The third button (the pencil) will open an editor. This is not a full blown IDE but a simple editor.

Why Python for mobile development? Python is well known for its readability and ease of use, which can translate into faster development – a huge benefit in the mobile market where speed to market is critical to gaining and keeping market share. On the other hand, neither Android nor iOS support interpreted languages, which means they can’t natively run Python apps. That’s where a number of frameworks bridge the gap to allow Python apps to be run on mobile devices with a native look and feel.

In this tutorial, we will:

In this step-by-step tutorial, you'll learn how to build a mobile application with Python and the Kivy GUI framework. You'll discover how to develop an application that can run on your desktop as well as your phone. Then, you'll package your app for iOS, Android, Windows, and macOS. QPython - Python on Android. In most cases, script can get your jobs done as good as the native application. Now you can make it with QPython's help. QPython is a script engine which runs Python programs on android devices. It also can help.

  • Identify the most popular frameworks for cross-platform mobile development in Python
  • Learn how to create a simple App for iOS using Python frameworks
  • Understand the pros and cons of using a Python framework versus native iOS or Android tooling

Let’s get started.

Cross-Platform Mobile Frameworks for Python

When it comes to developing cross-platform mobile applications that support both Android and iOS platforms using Python, there are two main choices: Kivy and BeeWare.

Kivy

Kivy promotes itself as an open source Python library for rapid development of cross-platform UI applications. It has a graphics engine that is built over OpenGL, so it can handle GPU-bound workloads when necessary. It also has a python-to-android project that lets you port Python applications to Android. It has a similar toolkit for iOS, although packages for iOS can only be generated with Python 2.7 at the moment.

BeeWare

BeeWare is another popular set of tools that let you write applications in Python and cross-compile them for deployment on several operating systems, including macOS, Windows and Linux GTK, as well as mobile platforms like Android and iOS.

For instance, there is a tool called briefcase that lets you create project boilerplates for specific native applications. Rubicon-C and Rubicon-Java also provide bridge interfaces for using Python to call Objective-C and Java bindings, respectively.

BeeWare’s main repository seems to be updated regularly, and they also provide commercial support that includes training, consulting and technical support.

Python Mobile Application with BeeWare

To try out the BeeWare toolkit, let’s create a basic mobile application that does something simple like selecting today’s cafeteria special chosen randomly from a pre-populated list.

First, we begin by creating a new python3 development environment:

Then, we install the briefcase tool that will help us create the project boilerplate code:

Next, we use the briefcase tool to create a new project:

Briefcase provides an interactive way to help you create your project by prompting you for key information:

On completion, you can run the project that was generated in order to see the native app (Mac or Windows) representation. In this case, an empty modal window is displayed:

Python Runner For Android

Since we want our app to run on an iOS device, we need to use the following command inside the project:

At this point, we need to install Apple’s application development tools (Xcode) in order to proceed.

Once Xcode is in place, we can edit the file src/foodtracker/app.py and replace the boilerplate with code that implements our “daily special” app:

As you can see, imperative-style code is used to construct the window elements. We added a main box element to hold all of the child elements. Using composition, we added a button and another message box that holds a readonly text field. When a user clicks on the button, it will display a random recipe in the text field.

Finally, we define the main window and its properties in the last 3 lines of the startup method.

Now we can build our project:

To see what our application looks like on our desktop, we can use Xcode to open the project and run it in an iOS emulator. We just need to tell it to use the following folder:

Here is what we will see when we run the emulator:

Note that every time we change our code, we will need to run the following commands to see the changes in the emulator:

Python Mobile Tooling vs Native Tooling

Now that we have seen some examples of creating and building simple mobile apps with Python, a really important question arises:

Why should you invest in writing Python mobile applications instead of using standard mobile languages like Java or Swift?

To answer that, we need to discuss the pros and cons of using Python for mobile development.

Pros:

  • The Power of Python: We can leverage the power of Python and its ecosystem with the Kivi and BeeWare frameworks. This proves to be a considerable advantage if you and your development team are already familiar with Python, and just need to port your existing applications to mobile platforms.
  • Cross-Platform Support: This means that we write our application once and then compile it for different platforms, promoting reusability.

Cons:

  • Slower Compilation Time: It seems that the development loop is longer than usual due to the need to run extra tools when changing something in our code. However, this could be improved in the future with tooling integrations or automation scripts.
  • Less Supported Features: Google and Apple will always promote their native tooling first over alternatives. Users of non-native frameworks will be limited by whatever the most recent version of (for example) Kivy/BeeWare have implemented. You will need to be on top of the current issue list and the limitations of the current version in order to resolve any issues you’re seeing in a prompt manner.
  • Inconsistency: As not all features are supported, there will be inconsistencies between different platforms. For example, you might have a layout that displays differently in Android versus iOS. Thus, you may have to implement many workarounds to make the designs consistent.

In general, using imperative code to describe user interfaces requires more effort. Those workflows are typically easier to implement within Apple’s Xcode or Android Studio’s built-in editors.

However, there are significant code reuse advantages in going with Python for a job like this, and there are plenty of applications written in Python that you can use as examples.

If your organization is considering writing applications in Python and cross-compiling them into native platforms like iOS or Android, you should evaluate the pros and cons carefully before proceeding.

Next Steps

To get started with the mobile development frameworks in this post, create a free ActiveState Platform account and then download our “Mobile Development” build. The build contains a version of Python 3.7 and the frameworks in this post so you can test them out for yourself.

NOTE: the simplest way to install the environment is to first install the ActiveState Platform’s command line interface (CLI), the State Tool.

  • If you’re on Linux or Mac, you can use curl to install the State Tool:
    sh <(curl -q https://platform.activestate.com/dl/cli/install.sh)

Once the State Tool is installed, just run the following command to download the build and automatically install it into a virtual environment:
state activate Pizza-Team/Mobile-Development

Related Blogs:

While web applications built with Python frameworks like Django and Flask will run on Android and iOS, if you want to create a native application you will need to use a Python mobile app framework like Kivy or BeeWare.

Download the pre-built Mobile Development Python environment, which includes both BeeWare and Kivy.

Python is well known for its readability and ease of use, which can translate into faster development – a huge benefit in the mobile market where speed to market is critical.

While Android and iOS will not run interpreted code, you can use a Python mobile app framework like Kivy or BeeWare to write your mobile application in Python and then cross-compile it for Android or iOS.

Learn more about Python’s built-in elements.

If you only want to run on Android or iOS, you’re better off using their native tools to create your mobile app. However, if you want to run on both Android and iOS, you should consider using Python to develop a cross-platform mobile app. This way, you need only write your app once, and then cross-compile it to run on Android and iOS.

Learn more about the differences between Python and Java.

Both Kivy and BeeWare are excellent choices for a Python mobile app framework. However, BeeWare is updated more frequently, provides commercial support, and offers a native UI toolkit.

Get started with the Mobile Development Python environment, which includes both BeeWare and Kivy.

Latest version

Released:

Android APK packager for Python scripts and apps

Project description

python-for-android is a packaging tool for Python apps on Android. You cancreate your own Python distribution including the modules anddependencies you want, and bundle it in an APK along with your own code.

Features include:

  • Different app backends including Kivy, PySDL2, and a WebView withPython webserver.
  • Automatic support for most pure Python modules, and built in supportfor many others, including popular dependencies such as numpy andsqlalchemy.
  • Multiple architecture targets, for APKs optimised on any givendevice.

For documentation and support, see:

  • Website: http://python-for-android.readthedocs.io
  • Mailing list: https://groups.google.com/forum/#!forum/kivy-users orhttps://groups.google.com/forum/#!forum/python-android.

Documentation

Follow the quickstartinstructionsto install and begin creating APKs.

Install Python Interpreter Windows 10

Quick instructions: install python-for-android with:

(for the develop branch: pip install git+https://github.com/kivy/python-for-android.git)

Test that the install works with:

To build any actual apps, set up the Android SDK and NDKas described in the quickstart.Use the SDK/NDK API level & NDK version as in the quickstart,other API levels may not work.

With everything installed, build an APK with SDL2 with e.g.:

For full instructions and parameter options, see thedocumentation.

Support

If you need assistance, you can ask for help on our mailing list:

  • User Group: https://groups.google.com/group/kivy-users
  • Email: kivy-users@googlegroups.com

We also have #support Discord channel.

Contributing

We love pull requests and discussing novel ideas. Check out the Kivyproject contribution guide andfeel free to improve python-for-android.

See ourdocumentationfor more information about the python-for-android development andrelease model, but don't worry about the details. You just need tomake a pull request, we'll take care of the rest.

The following mailing list and IRC channel are used exclusively fordiscussions about developing the Kivy framework and its sister projects:

  • Dev Group: https://groups.google.com/group/kivy-dev
  • Email: kivy-dev@googlegroups.com

We also have #dev Discord channel.

License

python-for-android is released under the terms of the MIT License.Please refer to the LICENSE file.

History

In 2015 these tools were rewritten to provide a new, easier-to-use andeasier-to-extend interface. If you'd like to browse the old toolchain, itsstatus is recorded for posterity at athttps://github.com/kivy/python-for-android/tree/old_toolchain.

In the last quarter of 2018 the python recipes were changed. Thenew recipe for python3 (3.7.1) had a new build system which wasapplied to the ancient python recipe, allowing us to bump the python2version number to 2.7.15. This change unified the build process forboth python recipes, and probably solved various issues detected over theyears. These unified python recipes require a minimum target api level of 21,Android 5.0 - Lollipop. If you need to build targeting anapi level below 21, you should use an older version of python-for-android(<=0.7.1).

On March of 2020 we dropped support for creating apps that use Python 2. The latestpython-for-android release that supported building Python 2 was version 2019.10.6.

Contributors

This project exists thanks to all the people who contribute. [Contribute].

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

Release historyRelease notifications | RSS feed

2021.9.5

2020.6.2

2020.4.29

2020.3.30

2019.10.6

2019.8.9

2019.7.8

2019.6.6.post0

2019.6.6

0.7.0

0.6.0

0.5.3

0.5.2

0.5.1

0.5

0.4

0.3

Runner

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Files for python-for-android, version 2021.9.5
Filename, sizeFile typePython versionUpload dateHashes
Filename, size python_for_android-2021.9.5-py3-none-any.whl (516.5 kB) File type Wheel Python version py3 Upload dateHashes
Filename, size python-for-android-2021.9.5.tar.gz (985.0 kB) File type Source Python version None Upload dateHashes
Close

Hashes for python_for_android-2021.9.5-py3-none-any.whl

Python Runner For Android App

Hashes for python_for_android-2021.9.5-py3-none-any.whl
AlgorithmHash digest
SHA256383254500966739d42766318ed508e90d05c7907096bead48a1076c67797a2d3
MD50d575f463033f5f5285500191b31805f
BLAKE2-25608675395480ec4346434cc5a1c11ab1f19c7a6b742f42a6f2e45b4842ecfaac9
Close

Hashes for python-for-android-2021.9.5.tar.gz

Hashes for python-for-android-2021.9.5.tar.gz
AlgorithmHash digest
SHA25646305120df040d964514a02b7a5cbc93048d1a69ef9ad67d14cd6cdac536337c
MD51c2ad32a574109dd20a857774f77bae3
BLAKE2-2568712d6825fbd0ee7e3da541cda4d71c3b8e6621b3926ac72e11c4c23e0c169c1