Distribute Python apps to Windows machines without freezing them.
Project description
Frigobar
Distribute Python apps to Windows machines without freezing them.
Basic usage
frigobar my_app.py
This will create a frigobar
folder, with a my_app.bat
file in it. Run it to run your app. And since you already opened it, grab a beer!
Installation
pip install frigobar
Options
> frigobar --help
usage: frigobar [-h] [-r REQUIREMENTS_FILE] [-p PYTHON_VERSION] [--copy-directory] script-path [target-directory]
Distribute Python apps to Windows machines without freezing them. The resulting distribution will be put in a folder that
can be copied to any Windows machine. Users should run "<script_name>.bat" to run the script. All the dependencies,
including an embeddable version of Python, will be downloaded on the first run.
positional arguments:
script-path Path to the script to distribute.
target-directory Folder where the distribution will be put. Defaults to 'frigobar'.
options:
-h, --help show this help message and exit
-r REQUIREMENTS_FILE, --requirements-file REQUIREMENTS_FILE
Path to a requirements file that lists the dependencies of the script.
-p PYTHON_VERSION, --python-version PYTHON_VERSION, --python PYTHON_VERSION
Python version, in X.Y.Z format, that the distribution should use.The version must be available as
an embeddable package on https://www.python.org/downloads/windows/. Defaults to 3.11.4.
--copy-directory Copy the contents of the script directory to the distribution.
Rationale
A common technique to distribute Python apps is to "freeze" them using tools like PyInstaller or cx_Freeze. These freezers create a standalone executable that contains your app and all its dependencies. This is a workable solution, but it has two main drawbacks:
- The resulting frozen app is often huge. It's not uncommon to see a simple app taking MBs of space.
- Because dependence resolution is hard, the frozen app may contain more or less dependencies than it needs. Less dependencies lead to dread "working-app-that-stop-working-when-you-freeze-it" situations. Unnecessary dependencies lead to bloated apps.
Frigobar avoids those problems by postponing the download of the Python interpreter and all the app's dependencies to the first time the user runs the app, making the app the smallest it can be. Frigobar also doesn't try to be smart about dependencies and will only download the ones explicitly listed in a requirements.txt
file. This a closer experience to what a developer does when he runs the app in his own machine, which hopefully will lead to less surprises to users.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file frigobar-3.tar.gz
.
File metadata
- Download URL: frigobar-3.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60f886fe62cb149bce8ff93a93941e3ec32c5820bcaa7a96a306ac450307e023 |
|
MD5 | 98121a19e3e08902bc6a99a7d7899201 |
|
BLAKE2b-256 | 30e0a76008e2fb534aa6da5d040ed7a7c1591feb6f8e0cbe27223163b19921a5 |
File details
Details for the file frigobar-3-py2.py3-none-any.whl
.
File metadata
- Download URL: frigobar-3-py2.py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a1708d0eb7170d7a9821f102b19bebc60db00fc83a3c8db2afe5ad98cd374f3 |
|
MD5 | 2454e33149d88b529d9d8a5f7513f568 |
|
BLAKE2b-256 | 9e769e5b0b925e1781cf7135114046dab6012203e0b55dfbab48917f4940c2d8 |