Including binary data in Python scripts
Sometimes I need to use some binary data (e.g. a bitmap image) in a Python
script.
In a package, you can store this data portable in a data
subdirectory of
a modules using the package_data
argument of setuptools.setup
.
This won’t work in a standalone script.
You can of course make your script into a package, but here I want to show an
alternative solution.