Applications that use pyrcc

The pyrcc5 and pyrcc4 programs are the Python equivalents (for PyQt5 and PyQt4 respectively) of Qt’s rcc program. They convert a collection of resource files into a Python source file that is then imported by the application. rcc similarly converts the collection of resource files to C++ code.

Using rcc makes it possible to create a C++ application as a single executable file. Having a single file makes such an application easier to deploy. However with pyrcc5 and pyrcc4, while they reduce the number of files that need to be deployed, there will always be at least two. Of course the standard Python distribution tools are designed to cope with multiple source files, so using pyrcc5 or pyrcc4 doesn’t offer any significant benefits.

pyqtdeploy itself uses rcc to embed all the files that make up the applications and does not support the use of the output of pyrcc5 and pyrcc4 in a deployed application. In fact it is recommended that these programs are simply not used irrespective of whether pyqtdeploy is going to be used or not.

That leaves the problem of exactly where the resource files are located. Fortunately the same technique (and code) will work for an ordinary application and for one that has been produced by pyqtdeploy. Lets say we have a Python module that creates a number of QIcon instances that each have the icon loaded from a PNG file. The PNG files are in a sub-directory called images in the same directory as the Python module. The following code will work in all cases:

# Get the name of the directory containing the images directory, either a
# directory in the real filesystem, or in the in-memory filesystem created
# by rcc.
_root = QFileInfo(__file__).absolutePath()

# Now create the icons.  Qt is clever enough to do the right thing on all
# platforms.
new_icon = QIcon(_root + '/images/new.png')
open_icon = QIcon(_root + '/images/open.png')
save_icon = QIcon(_root + '/images/save.png')

Unfortunately QML files have to be treated a little differently because they are specified using a URL. Lets say our QML files are in a sub-directory called qml, we can then extend the code above as follows:

_root_url = 'qrc:' if _root.startswith(':') else _root

main_url = QUrl(_root_url + '/qml/main.qml')

Support for PEP 302 Optional Import Hooks

New in version 1.2.

Internally a deployed application contains a PEP 302 compatible module importer (i.e. finder and loader) that handles modules embedded in the executable by pyrcc. This importer implements the optional get_data(), get_code(), get_source() and is_package() methods. The importer itself is available as the __loader__ module attribute.