Faster Python apps
Faster Is Better

© Lead Image © Tomasz Pacyna, 123RF.com
PyPy and Nuitka improve the performance of Python on a Raspberry Pi.
Python apps on lower-end hardware like Raspberry Pis can be a bit slow, but luckily you have some options that can improve their performance. A number of interesting packages allow you to compile, interpret, or repackage your Python apps. In this article, I highlight two packages that have given me good success:
- PyPy [1] – a replacement to the native Python interpreter that runs more than four times faster
- Nuitka [2] – a native Python utility to compile Python apps to C code
How a Python application performs is based on a lot of different factors, so it's important to know the limitations and how best to work with them. PyPy and Nuitka might not work for all applications, but for many common types of projects they are great fits.
Background
PyPy has been around for a while, and Guido van Rossum, the creator of Python, is popularly said to have stated: "If you want your code to run faster, you should probably just use PyPy."
The PyPy site has some performance results, and they state that, on average, PyPy will run 4.2 times faster than native Python. In one of my test projects, it ran nine times faster than native Python. PyPy really shines in the area of web services, database connections, and iterative (large loop) applications.
It's very important to note that PyPy only supports a limited number of Python libraries. For Raspberry Pi projects, two of the important libraries that PyPy does not support are tkinter, a graphic interface library, and RPi.GPIO, the Raspberry Pi general purpose I/O library. To see whether PyPy will work with your application, check the supported libraries [3].
Nuitka will not give the same performance results as PyPy, but it can offer some speed improvements over native Python. Nuitka supports a large majority of the Python libraries, so it's a good fit when you can't use PyPy. Nuitka has the added benefit of creating a compiled application, so you don't need to distribute Python source code.
Figure 1 summarizes the project requirements best served by PyPy and Nuitka.
PyPy – A Faster Python
The improved performance of PyPy is due to its just-in-time compiler, as opposed to the native Python's line-by-line interpreter.
PyPy has a version for Python 2.7 and 3.6 for Linux, macOS, and Windows. The PyPy version for Python 2.7 is preinstalled on the latest Raspbian operating system for the Raspberry Pi. To install the PyPy3 version in Ubuntu, enter:
sudo apt update sudo apt install PyPy3
The nice thing about PyPy is that you can use your base Python code as is, and you can do basic testing with PyPy in command-line mode. For example, on the Raspberry Pi, if I want to check whether some basic Python libraries are loaded and then see if the Pi GPIO library is supported, I would use the pypy3
command (Listing 1).
Listing 1
Checking PyPy Support
§§noumber $ pypy3 Python 3.5.3 (7.0.0+dfsg-3, Mar 03 2019, 06:11:22) [PyPy 7.0.0 with GCC 8.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>>> import os >>>> import time >>>> import RPi.GPIO Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3/dist-packages/RPi/GPIO/__init__.py", line 23, in <module> from RPi._GPIO import * ImportError: No module named 'RPi._GPIO' >>>>
To run your Python application from the command line, substitute python
with PyPy
(or PyPy3
):
$ PyPy3 myapp.py
If you are running your Python app as an executable script (i.e., as chmod +x myapp.py
), then you'll need to change the first line of your script from #!/usr/bin/python
to #!/usr/bin/PyPy3
.
PyPy Libraries
By default, only the basic Python libraries are installed with PyPy. To load a specific Python library into PyPy3, you need to install the Python package installer (pip
) module before Python packages can be loaded:
$ wget https://bootstrap.pypa.io/get-pip.py $ PyPy3 get-pip.py $ PyPy3 -m pip install <some-pymodule>
I found I was able to load some of the "lighter" modules (e.g., bottle, requests, beautifulsoup4, pika, etc.) without any issues. However, some of the "heavier" modules (e.g., NumPy and MatPlotlib) would not load directly. If you're planning on using some of these modules, the recommendation is to run PyPy in an isolated Python environment (virtualenv
) [4].
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
News
-
System76 Teams up with HP to Create the Dev One Laptop
HP and System76 have come together to develop a new laptop, powered by Pop!_OS and aimed toward developers.
-
Titan Linux is a New KDE Linux Based on Debian Stable
Titan Linux is a new Debian-based Linux distribution that features the KDE Plasma desktop with a focus on usability and performance.
-
Danielle Foré Has an Update for elementary OS 7
Now that Ubuntu 22.04 has been released, the team behind elementary OS is preparing for the upcoming 7.0 release.
-
Linux New Media Launches Open Source JobHub
New job website focuses on connecting technical and non-technical professionals with organizations in open source.
-
Ubuntu Cinnamon 22.04 Now Available
Ubuntu Cinnamon 22.04 has been released with all the additions from upstream as well as other features and improvements.
-
Pop!_OS 22.04 Has Officially Been Released
From the makers of some of the finest Linux-powered desktop and laptop computers on the market comes the latest version of their Ubuntu-based distribution, Pop!_OS 22.04.
-
Star Labs Unveils a New Small Format Linux PC
The Byte Mk I is an AMD-powered mini Linux PC with Coreboot support and plenty of power.
-
MX Linux Verison 21.1 “Wildflower” Now Available
The latest release of the systemd-less MX Linux is now ready for public consumption.
-
Microsoft Expands Their Windows Subsystem for Linux Offerings With AlmaLinux
Anyone who works with Windows Subsystem for Linux (WSL) will now find a new addition to the available distributions, one that’s become the front-runner replacement for CentOS.
-
Debian 11.3 Released wIth Numerous Bug and Security Fixes
The latest point release for Debian Bullseye is now available with some very important updates.