PyInstaller Overview
====================
.. image:: https://img.shields.io/pypi/v/pyinstaller
:alt: PyPI
:target: https://pypi.org/project/pyinstaller
.. image:: https://img.shields.io/pypi/pyversions/pyinstaller
:alt: PyPI - Python Version
:target: https://pypi.org/project/pyinstaller
.. image:: https://img.shields.io/readthedocs/pyinstaller/stable
:alt: Read the Docs (version)
:target: https://pyinstaller.org
.. image:: https://img.shields.io/pypi/dm/pyinstaller
:alt: PyPI - Downloads
:target: https://pypistats.org/packages/pyinstaller
PyInstaller bundles a Python application and all its dependencies into a single
package. The user can run the packaged app without installing a Python
interpreter or any modules.
:Documentation: https://pyinstaller.org/
:Code: https://github.com/pyinstaller/pyinstaller
PyInstaller reads a Python script written by you. It analyzes your code
to discover every other module and library your script needs in order to
execute. Then it collects copies of all those files -- including the active
Python interpreter! -- and puts them with your script in a single folder, or
optionally in a single executable file.
PyInstaller is tested against Windows, macOS, and GNU/Linux.
However, it is not a cross-compiler:
to make a Windows app you run PyInstaller in Windows; to make
a GNU/Linux app you run it in GNU/Linux, etc.
PyInstaller has been used successfully
with AIX, Solaris, FreeBSD and OpenBSD,
but is not tested against them as part of the continuous integration tests.
Main Advantages
---------------
- Works out-of-the-box with any Python version 3.8-3.13.
- Fully multi-platform, and uses the OS support to load the dynamic libraries,
thus ensuring full compatibility.
- Correctly bundles the major Python packages such as numpy, PyQt5,
PySide2, PyQt6, PySide6, wxPython, matplotlib and others out-of-the-box.
- Compatible with many 3rd-party packages out-of-the-box. (All the required
tricks to make external packages work are already integrated.)
- Works with code signing on macOS.
- Bundles MS Visual C++ DLLs on Windows.
Installation
------------
PyInstaller is available on PyPI. You can install it through `pip`:
.. code:: bash
pip install pyinstaller
Requirements and Tested Platforms
---------------------------------
- Python:
- 3.8-3.13. Note that Python 3.10.0 contains a bug making it unsupportable by
PyInstaller. PyInstaller will also not work with beta releases of Python
3.14.
- Windows (32bit/64bit/ARM64):
- PyInstaller should work on Windows 7 or newer, but we only officially support Windows 8+.
- Support for Python installed from the Windows store without using virtual
environments requires PyInstaller 4.4 or later.
- Linux:
- GNU libc based distributions on architectures ``x86_64``, ``aarch64``,
``i686``, ``ppc64le``, ``s390x``.
- musl libc based distributions on architectures ``x86_64``, ``aarch64``.
- ldd: Console application to print the shared libraries required
by each program or shared library. This typically can be found in
the distribution-package `glibc` or `libc-bin`.
- objdump: Console application to display information from
object files. This typically can be found in the
distribution-package `binutils`.
- objcopy: Console application to copy and translate object files.
This typically can be found in the distribution-package `binutils`,
too.
- Raspberry Pi users on ``armv5``-``armv7`` should `add piwheels as an extra
index url <https://www.piwheels.org/>`_ then ``pip install pyinstaller``
as usual.
- macOS (``x86_64`` or ``arm64``):
- macOS 10.15 (Catalina) or newer.
- Supports building ``universal2`` applications provided that your installation
of Python and all your dependencies are also compiled ``universal2``.
Usage
-----
Basic usage is very simple, just run it against your main script:
.. code:: bash
pyinstaller /path/to/yourscript.py
For more details, see the `manual`_.
Untested Platforms
------------------
The following platforms have been contributed and any feedback or
enhancements on these are welcome.
- FreeBSD
- ldd
- Solaris
- ldd
- objdump
- AIX
- AIX 6.1 or newer. PyInstaller will not work with statically
linked Python libraries.
- ldd
- Linux on any other libc implementation/architecture combination not listed
above.
Before using any contributed platform, you need to build the PyInstaller
bootloader. This will happen automatically when you ``pip install
pyinstaller`` provided that you have an appropriate C compiler (typically
either ``gcc`` or ``clang``) and zlib's development headers already installed.
Support
-------
- Official debugging guide: https://pyinstaller.org/en/v6.11.1/when-things-go-wrong.html
- Assorted user contributed help topics: https://github.com/pyinstaller/pyinstaller/wiki
- Web based Q&A forums: https://github.com/pyinstaller/pyinstaller/discussions
- Email based Q&A forums: https://groups.google.com/g/pyinstaller
Changes in this Release
-----------------------
You can find a detailed list of changes in this release
in the `Changelog`_ section of the manual.
.. _`manual`: https://pyinstaller.org/en/v6.11.1/
.. _`Changelog`: https://pyinstaller.org/en/v6.11.1/CHANGES.html
Raw data
{
"_id": null,
"home_page": "https://www.pyinstaller.org/",
"name": "pyinstaller",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.14,>=3.8",
"maintainer_email": null,
"keywords": "packaging, app, apps, bundle, convert, standalone, executable, pyinstaller, cxfreeze, freeze, py2exe, py2app, bbfreeze",
"author": "Hartmut Goebel, Giovanni Bajo, David Vierra, David Cortesi, Martin Zibricky",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/55/d4/54f5f5c73b803e6256ea97ffc6ba8a305d9a5f57f85f9b00b282512bf18a/pyinstaller-6.11.1.tar.gz",
"platform": null,
"description": "PyInstaller Overview\n====================\n\n.. image:: https://img.shields.io/pypi/v/pyinstaller\n :alt: PyPI\n :target: https://pypi.org/project/pyinstaller\n.. image:: https://img.shields.io/pypi/pyversions/pyinstaller\n :alt: PyPI - Python Version\n :target: https://pypi.org/project/pyinstaller\n.. image:: https://img.shields.io/readthedocs/pyinstaller/stable\n :alt: Read the Docs (version)\n :target: https://pyinstaller.org\n.. image:: https://img.shields.io/pypi/dm/pyinstaller\n :alt: PyPI - Downloads\n :target: https://pypistats.org/packages/pyinstaller\n\n\nPyInstaller bundles a Python application and all its dependencies into a single\npackage. The user can run the packaged app without installing a Python\ninterpreter or any modules.\n\n:Documentation: https://pyinstaller.org/\n:Code: https://github.com/pyinstaller/pyinstaller\n\nPyInstaller reads a Python script written by you. It analyzes your code\nto discover every other module and library your script needs in order to\nexecute. Then it collects copies of all those files -- including the active\nPython interpreter! -- and puts them with your script in a single folder, or\noptionally in a single executable file.\n\n\nPyInstaller is tested against Windows, macOS, and GNU/Linux.\nHowever, it is not a cross-compiler:\nto make a Windows app you run PyInstaller in Windows; to make\na GNU/Linux app you run it in GNU/Linux, etc.\nPyInstaller has been used successfully\nwith AIX, Solaris, FreeBSD and OpenBSD,\nbut is not tested against them as part of the continuous integration tests.\n\n\nMain Advantages\n---------------\n\n- Works out-of-the-box with any Python version 3.8-3.13.\n- Fully multi-platform, and uses the OS support to load the dynamic libraries,\n thus ensuring full compatibility.\n- Correctly bundles the major Python packages such as numpy, PyQt5,\n PySide2, PyQt6, PySide6, wxPython, matplotlib and others out-of-the-box.\n- Compatible with many 3rd-party packages out-of-the-box. (All the required\n tricks to make external packages work are already integrated.)\n- Works with code signing on macOS.\n- Bundles MS Visual C++ DLLs on Windows.\n\n\nInstallation\n------------\n\nPyInstaller is available on PyPI. You can install it through `pip`:\n\n.. code:: bash\n\n pip install pyinstaller\n\n\nRequirements and Tested Platforms\n---------------------------------\n\n- Python:\n - 3.8-3.13. Note that Python 3.10.0 contains a bug making it unsupportable by\n PyInstaller. PyInstaller will also not work with beta releases of Python\n 3.14.\n- Windows (32bit/64bit/ARM64):\n - PyInstaller should work on Windows 7 or newer, but we only officially support Windows 8+.\n - Support for Python installed from the Windows store without using virtual\n environments requires PyInstaller 4.4 or later.\n- Linux:\n - GNU libc based distributions on architectures ``x86_64``, ``aarch64``,\n ``i686``, ``ppc64le``, ``s390x``.\n - musl libc based distributions on architectures ``x86_64``, ``aarch64``.\n - ldd: Console application to print the shared libraries required\n by each program or shared library. This typically can be found in\n the distribution-package `glibc` or `libc-bin`.\n - objdump: Console application to display information from\n object files. This typically can be found in the\n distribution-package `binutils`.\n - objcopy: Console application to copy and translate object files.\n This typically can be found in the distribution-package `binutils`,\n too.\n - Raspberry Pi users on ``armv5``-``armv7`` should `add piwheels as an extra\n index url <https://www.piwheels.org/>`_ then ``pip install pyinstaller``\n as usual.\n- macOS (``x86_64`` or ``arm64``):\n - macOS 10.15 (Catalina) or newer.\n - Supports building ``universal2`` applications provided that your installation\n of Python and all your dependencies are also compiled ``universal2``.\n\n\nUsage\n-----\n\nBasic usage is very simple, just run it against your main script:\n\n.. code:: bash\n\n pyinstaller /path/to/yourscript.py\n\nFor more details, see the `manual`_.\n\n\nUntested Platforms\n------------------\n\nThe following platforms have been contributed and any feedback or\nenhancements on these are welcome.\n\n- FreeBSD\n - ldd\n- Solaris\n - ldd\n - objdump\n- AIX\n - AIX 6.1 or newer. PyInstaller will not work with statically\n linked Python libraries.\n - ldd\n- Linux on any other libc implementation/architecture combination not listed\n above.\n\nBefore using any contributed platform, you need to build the PyInstaller\nbootloader. This will happen automatically when you ``pip install\npyinstaller`` provided that you have an appropriate C compiler (typically\neither ``gcc`` or ``clang``) and zlib's development headers already installed.\n\n\nSupport\n-------\n\n- Official debugging guide: https://pyinstaller.org/en/v6.11.1/when-things-go-wrong.html\n- Assorted user contributed help topics: https://github.com/pyinstaller/pyinstaller/wiki\n- Web based Q&A forums: https://github.com/pyinstaller/pyinstaller/discussions\n- Email based Q&A forums: https://groups.google.com/g/pyinstaller\n\n\nChanges in this Release\n-----------------------\n\nYou can find a detailed list of changes in this release\nin the `Changelog`_ section of the manual.\n\n.. _`manual`: https://pyinstaller.org/en/v6.11.1/\n.. _`Changelog`: https://pyinstaller.org/en/v6.11.1/CHANGES.html\n",
"bugtrack_url": null,
"license": "GPLv2-or-later with a special exception which allows to use PyInstaller to build and distribute non-free programs (including commercial ones)",
"summary": "PyInstaller bundles a Python application and all its dependencies into a single package.",
"version": "6.11.1",
"project_urls": {
"Homepage": "https://www.pyinstaller.org/",
"Source": "https://github.com/pyinstaller/pyinstaller"
},
"split_keywords": [
"packaging",
" app",
" apps",
" bundle",
" convert",
" standalone",
" executable",
" pyinstaller",
" cxfreeze",
" freeze",
" py2exe",
" py2app",
" bbfreeze"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "9615b0f1c0985ee32fcd2f6ad9a486ef94e4db3fef9af025a3655e76cb708009",
"md5": "e7e6b3fc282764f331d54665d36ce282",
"sha256": "44e36172de326af6d4e7663b12f71dbd34e2e3e02233e181e457394423daaf03"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "e7e6b3fc282764f331d54665d36ce282",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 991780,
"upload_time": "2024-11-10T17:00:17",
"upload_time_iso_8601": "2024-11-10T17:00:17.242238Z",
"url": "https://files.pythonhosted.org/packages/96/15/b0f1c0985ee32fcd2f6ad9a486ef94e4db3fef9af025a3655e76cb708009/pyinstaller-6.11.1-py3-none-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd0f9f54cb18abe2b1d89051bc9214c0cb40d7b5f4049c151c315dacc067f4a2",
"md5": "fac9ae8ee73b0c6ef7b947cdca3577e7",
"sha256": "6d12c45a29add78039066a53fb05967afaa09a672426072b13816fe7676abfc4"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fac9ae8ee73b0c6ef7b947cdca3577e7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 711739,
"upload_time": "2024-11-10T17:00:21",
"upload_time_iso_8601": "2024-11-10T17:00:21.734059Z",
"url": "https://files.pythonhosted.org/packages/fd/0f/9f54cb18abe2b1d89051bc9214c0cb40d7b5f4049c151c315dacc067f4a2/pyinstaller-6.11.1-py3-none-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32f779d10830780eff8339bfa793eece1df4b2459e35a712fc81983e8536cc29",
"md5": "4a9f0505f1ee9bb392b1bb8f318042c7",
"sha256": "ddc0fddd75f07f7e423da1f0822e389a42af011f9589e0269b87e0d89aa48c1f"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a9f0505f1ee9bb392b1bb8f318042c7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 714053,
"upload_time": "2024-11-10T17:00:25",
"upload_time_iso_8601": "2024-11-10T17:00:25.773638Z",
"url": "https://files.pythonhosted.org/packages/32/f7/79d10830780eff8339bfa793eece1df4b2459e35a712fc81983e8536cc29/pyinstaller-6.11.1-py3-none-manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25f79961ef02cdbd2dbb1b1a215292656bd0ea72a83aafd8fb6373513849711e",
"md5": "5a1255064e3bda4c64a72a6ecbdb47e5",
"sha256": "0d6475559c4939f0735122989611d7f739ed3bf02f666ce31022928f7a7e4fda"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5a1255064e3bda4c64a72a6ecbdb47e5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 719133,
"upload_time": "2024-11-10T17:00:30",
"upload_time_iso_8601": "2024-11-10T17:00:30.342232Z",
"url": "https://files.pythonhosted.org/packages/25/f7/9961ef02cdbd2dbb1b1a215292656bd0ea72a83aafd8fb6373513849711e/pyinstaller-6.11.1-py3-none-manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f4d7f854842a1ce798de762a0b0bc5d5a4fc26ad06164a98575dc3c54abed1f",
"md5": "bd7fe1969dec83b249c97e47a9e2eadd",
"sha256": "e21c7806e34f40181e7606926a14579f848bfb1dc52cbca7eea66eccccbfe977"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bd7fe1969dec83b249c97e47a9e2eadd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 709591,
"upload_time": "2024-11-10T17:00:34",
"upload_time_iso_8601": "2024-11-10T17:00:34.932992Z",
"url": "https://files.pythonhosted.org/packages/6f/4d/7f854842a1ce798de762a0b0bc5d5a4fc26ad06164a98575dc3c54abed1f/pyinstaller-6.11.1-py3-none-manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fe000d29fc90c3ba50620c61554e26ebb4d764569507be7cd1c8794aa696f9a",
"md5": "ae46cc2e2a10d1dd58f9e7eb649dcc1f",
"sha256": "32c742a24fe65d0702958fadf4040f76de85859c26bec0008766e5dbabc5b68f"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ae46cc2e2a10d1dd58f9e7eb649dcc1f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 710068,
"upload_time": "2024-11-10T17:00:39",
"upload_time_iso_8601": "2024-11-10T17:00:39.655754Z",
"url": "https://files.pythonhosted.org/packages/7f/e0/00d29fc90c3ba50620c61554e26ebb4d764569507be7cd1c8794aa696f9a/pyinstaller-6.11.1-py3-none-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e57d14b44a69f068d2caaee49d15e45f9fa0f37c6a2d2ad778c953c1722a1ca",
"md5": "bf55d819ef19aedda6f0387aa1a16d46",
"sha256": "208c0ef6dab0837a0a273ea32d1a3619a208e3d1fe3fec3785eea71a77fd00ce"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bf55d819ef19aedda6f0387aa1a16d46",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 714439,
"upload_time": "2024-11-10T17:00:43",
"upload_time_iso_8601": "2024-11-10T17:00:43.838271Z",
"url": "https://files.pythonhosted.org/packages/3e/57/d14b44a69f068d2caaee49d15e45f9fa0f37c6a2d2ad778c953c1722a1ca/pyinstaller-6.11.1-py3-none-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8801256824bb57ca208099c86c2fb289f888ca7732580e91ced48fa14e5903b2",
"md5": "17c878d0abfac4b0a11bc090cff62a6b",
"sha256": "ad84abf465bcda363c1d54eafa76745d77b6a8a713778348377dc98d12a452f7"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "17c878d0abfac4b0a11bc090cff62a6b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 710457,
"upload_time": "2024-11-10T17:00:47",
"upload_time_iso_8601": "2024-11-10T17:00:47.890653Z",
"url": "https://files.pythonhosted.org/packages/88/01/256824bb57ca208099c86c2fb289f888ca7732580e91ced48fa14e5903b2/pyinstaller-6.11.1-py3-none-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cf098c9138f5f0ff17462f1ad6d712dcfa643b9a283d6238d464d8145bc139d",
"md5": "52cda433830f9d22be02412ee61696ac",
"sha256": "2e8365276c5131c9bef98e358fbc305e4022db8bedc9df479629d6414021956a"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "52cda433830f9d22be02412ee61696ac",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 1280261,
"upload_time": "2024-11-10T17:00:54",
"upload_time_iso_8601": "2024-11-10T17:00:54.688626Z",
"url": "https://files.pythonhosted.org/packages/7c/f0/98c9138f5f0ff17462f1ad6d712dcfa643b9a283d6238d464d8145bc139d/pyinstaller-6.11.1-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d08f43080614b3e8bce481d4dfd580e579497c7dcdaf87656d9d2ad912e5796",
"md5": "37f08bf88144c09e3832b6f8ba653c82",
"sha256": "7ac83c0dc0e04357dab98c487e74ad2adb30e7eb186b58157a8faf46f1fa796f"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "37f08bf88144c09e3832b6f8ba653c82",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 1340482,
"upload_time": "2024-11-10T17:01:01",
"upload_time_iso_8601": "2024-11-10T17:01:01.620949Z",
"url": "https://files.pythonhosted.org/packages/7d/08/f43080614b3e8bce481d4dfd580e579497c7dcdaf87656d9d2ad912e5796/pyinstaller-6.11.1-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed56953c6594cb66e249563854c9cc04ac5a055c6c99d1614298feeaeaa9b87e",
"md5": "7fc36dc6dc28c7eb4e2271dd21126422",
"sha256": "35e6b8077d240600bb309ed68bb0b1453fd2b7ab740b66d000db7abae6244423"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1-py3-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "7fc36dc6dc28c7eb4e2271dd21126422",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.8",
"size": 1267519,
"upload_time": "2024-11-10T17:01:08",
"upload_time_iso_8601": "2024-11-10T17:01:08.525297Z",
"url": "https://files.pythonhosted.org/packages/ed/56/953c6594cb66e249563854c9cc04ac5a055c6c99d1614298feeaeaa9b87e/pyinstaller-6.11.1-py3-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55d454f5f5c73b803e6256ea97ffc6ba8a305d9a5f57f85f9b00b282512bf18a",
"md5": "4ef0c66cc5a6046aacbe84fb99118d67",
"sha256": "491dfb4d9d5d1d9650d9507daec1ff6829527a254d8e396badd60a0affcb72ef"
},
"downloads": -1,
"filename": "pyinstaller-6.11.1.tar.gz",
"has_sig": false,
"md5_digest": "4ef0c66cc5a6046aacbe84fb99118d67",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.14,>=3.8",
"size": 4249772,
"upload_time": "2024-11-10T17:01:25",
"upload_time_iso_8601": "2024-11-10T17:01:25.415247Z",
"url": "https://files.pythonhosted.org/packages/55/d4/54f5f5c73b803e6256ea97ffc6ba8a305d9a5f57f85f9b00b282512bf18a/pyinstaller-6.11.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-10 17:01:25",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pyinstaller",
"github_project": "pyinstaller",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyinstaller"
}