pyinstaller


Namepyinstaller JSON
Version 6.6.0 PyPI version JSON
download
home_pagehttps://www.pyinstaller.org/
SummaryPyInstaller bundles a Python application and all its dependencies into a single package.
upload_time2024-04-13 09:55:30
maintainerNone
docs_urlNone
authorHartmut Goebel, Giovanni Bajo, David Vierra, David Cortesi, Martin Zibricky
requires_python<3.13,>=3.8
licenseGPLv2-or-later with a special exception which allows to use PyInstaller to build and distribute non-free programs (including commercial ones)
keywords packaging app apps bundle convert standalone executable pyinstaller cxfreeze freeze py2exe py2app bbfreeze
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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.12.
- 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.12. 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.13.
- 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.6.0/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.6.0/
.. _`Changelog`: https://pyinstaller.org/en/v6.6.0/CHANGES.html

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.pyinstaller.org/",
    "name": "pyinstaller",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=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/19/f0/4213fadbae8ab5945786c4020f7cb6202e828d90df05be8f2dbc9395bcd9/pyinstaller-6.6.0.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.12.\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.12. 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.13.\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.6.0/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.6.0/\n.. _`Changelog`: https://pyinstaller.org/en/v6.6.0/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.6.0",
    "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": "1929d24aa7abe3cb9a1386130b073c4136546c4bc0da7c96bba1621f6198bfc9",
                "md5": "ac7b25461fa43326931248f8ad606a8f",
                "sha256": "d2705efe79f8749526f65c4bce70ae88eea8b6adfb051f123122e86542fe3802"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "ac7b25461fa43326931248f8ad606a8f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 959827,
            "upload_time": "2024-04-13T09:54:20",
            "upload_time_iso_8601": "2024-04-13T09:54:20.805509Z",
            "url": "https://files.pythonhosted.org/packages/19/29/d24aa7abe3cb9a1386130b073c4136546c4bc0da7c96bba1621f6198bfc9/pyinstaller-6.6.0-py3-none-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17f796ef836a061a58c0b482bdab48933fd291e79b7c749532ca223e6521626c",
                "md5": "7347cae0ebe77be9930e9fd473116cd0",
                "sha256": "2aa771693ee3e0a899be3e9d946a24eab9896a98d0d4035f05a22f1193004cfb"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7347cae0ebe77be9930e9fd473116cd0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 683337,
            "upload_time": "2024-04-13T09:54:26",
            "upload_time_iso_8601": "2024-04-13T09:54:26.047965Z",
            "url": "https://files.pythonhosted.org/packages/17/f7/96ef836a061a58c0b482bdab48933fd291e79b7c749532ca223e6521626c/pyinstaller-6.6.0-py3-none-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0a30cadef149e5bded6f9a338d10761b999310f810c0ff39a579b43c1d755cf",
                "md5": "39dc46a4301a443d0a4367afa1c3b189",
                "sha256": "1fc15e8cebf76361568359a40926aa5746fc0a84ca365fb2ac6caeea014a2cd3"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "39dc46a4301a443d0a4367afa1c3b189",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 685474,
            "upload_time": "2024-04-13T09:54:31",
            "upload_time_iso_8601": "2024-04-13T09:54:31.008432Z",
            "url": "https://files.pythonhosted.org/packages/d0/a3/0cadef149e5bded6f9a338d10761b999310f810c0ff39a579b43c1d755cf/pyinstaller-6.6.0-py3-none-manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a86889d692607d2a80ed759dad928e029d30908be83fe94cc295e797aa6b5d1",
                "md5": "0e7aa0e09d48e8a09f8c6baf9dfb80ae",
                "sha256": "7c4a55a5d872c118bc7a5e641c2df46ad18585c002d96adad129b4ee8c104463"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0e7aa0e09d48e8a09f8c6baf9dfb80ae",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 689987,
            "upload_time": "2024-04-13T09:54:35",
            "upload_time_iso_8601": "2024-04-13T09:54:35.571745Z",
            "url": "https://files.pythonhosted.org/packages/4a/86/889d692607d2a80ed759dad928e029d30908be83fe94cc295e797aa6b5d1/pyinstaller-6.6.0-py3-none-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee8a92c41c97a45eb3dcf7a6b8316e3bbbfd6402eeafd6f94245cd9169e6dad1",
                "md5": "a33127fac6e9570f0be9e1cb6d614c59",
                "sha256": "97197593344f11f3dd2bdadbab14c61fbc4cdf9cc692a89b047cb671764c1824"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a33127fac6e9570f0be9e1cb6d614c59",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 681058,
            "upload_time": "2024-04-13T09:54:40",
            "upload_time_iso_8601": "2024-04-13T09:54:40.328252Z",
            "url": "https://files.pythonhosted.org/packages/ee/8a/92c41c97a45eb3dcf7a6b8316e3bbbfd6402eeafd6f94245cd9169e6dad1/pyinstaller-6.6.0-py3-none-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31c64067011e0f64370ed155e8a151c6ec5d927114f42cc2ee3eaef0adc3afe5",
                "md5": "8abfbf952e4971eb476c43422679dd1e",
                "sha256": "00d81ddeee97710245a7ed03b0f9d5a4daf6c3a07adf978487b10991e1e20470"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8abfbf952e4971eb476c43422679dd1e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 681966,
            "upload_time": "2024-04-13T09:54:44",
            "upload_time_iso_8601": "2024-04-13T09:54:44.954816Z",
            "url": "https://files.pythonhosted.org/packages/31/c6/4067011e0f64370ed155e8a151c6ec5d927114f42cc2ee3eaef0adc3afe5/pyinstaller-6.6.0-py3-none-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a33aaf0a62aa8224b3bb080547a43ba729a3aeb627c561274a1a65ad1363ff6",
                "md5": "d3c752fd8ccbef7ce793602f31c20844",
                "sha256": "b7cab21db6fcfbdab47ee960239d1b44cd95383a4463177bd592613941d67959"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d3c752fd8ccbef7ce793602f31c20844",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 685269,
            "upload_time": "2024-04-13T09:54:48",
            "upload_time_iso_8601": "2024-04-13T09:54:48.885405Z",
            "url": "https://files.pythonhosted.org/packages/8a/33/aaf0a62aa8224b3bb080547a43ba729a3aeb627c561274a1a65ad1363ff6/pyinstaller-6.6.0-py3-none-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd1f8aa30fd6228cb2429b5866d3dcad96d6e83f34969e2363ce784f88b08b6a",
                "md5": "0f90e98e76ed4c432055d7f6d7f28a6e",
                "sha256": "00996d2090734d9ae4a1e53ed40351b07d593c37118d3e0d435bbcfa8db9edee"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f90e98e76ed4c432055d7f6d7f28a6e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 682703,
            "upload_time": "2024-04-13T09:54:52",
            "upload_time_iso_8601": "2024-04-13T09:54:52.723763Z",
            "url": "https://files.pythonhosted.org/packages/fd/1f/8aa30fd6228cb2429b5866d3dcad96d6e83f34969e2363ce784f88b08b6a/pyinstaller-6.6.0-py3-none-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec0dd1cbb2e62f71e3f38c092a3f55ee534354f16566faa17dd273d997830a66",
                "md5": "4b29b256655ec7d59b6b2e82ed1146ec",
                "sha256": "cfe3ed214601de0723cb660994b44934efacb77a1cf0e4cc5133da996bcf36ce"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4b29b256655ec7d59b6b2e82ed1146ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 1245757,
            "upload_time": "2024-04-13T09:54:58",
            "upload_time_iso_8601": "2024-04-13T09:54:58.892382Z",
            "url": "https://files.pythonhosted.org/packages/ec/0d/d1cbb2e62f71e3f38c092a3f55ee534354f16566faa17dd273d997830a66/pyinstaller-6.6.0-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63d29e0c3cbbc9734797aa073cb856ad067e274ae5db83fac5fb990d948a0c37",
                "md5": "167044253c21addef177fce6fbb16f0b",
                "sha256": "e2f55fbbdf8a99ea84b39bc5669a68624473c303486d7eb2cd9063b339f0aa28"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "167044253c21addef177fce6fbb16f0b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 1310959,
            "upload_time": "2024-04-13T09:55:05",
            "upload_time_iso_8601": "2024-04-13T09:55:05.907586Z",
            "url": "https://files.pythonhosted.org/packages/63/d2/9e0c3cbbc9734797aa073cb856ad067e274ae5db83fac5fb990d948a0c37/pyinstaller-6.6.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64be9df3db6fe36497953559c685721aaf7d45bbbf9bf443b63689609d0b3d9a",
                "md5": "5e32776eb5b2d2eba4957ac58df682b0",
                "sha256": "abbd591967593dab264bcc3bcb2466c0a1582f19a112e37e916c4212069c7933"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0-py3-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e32776eb5b2d2eba4957ac58df682b0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 1237031,
            "upload_time": "2024-04-13T09:55:12",
            "upload_time_iso_8601": "2024-04-13T09:55:12.271180Z",
            "url": "https://files.pythonhosted.org/packages/64/be/9df3db6fe36497953559c685721aaf7d45bbbf9bf443b63689609d0b3d9a/pyinstaller-6.6.0-py3-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19f04213fadbae8ab5945786c4020f7cb6202e828d90df05be8f2dbc9395bcd9",
                "md5": "2343da45ab37cf3d715c57df2868d571",
                "sha256": "be6bc2c3073d3e84fb7148d3af33ce9b6a7f01cfb154e06314cd1d4c05798a32"
            },
            "downloads": -1,
            "filename": "pyinstaller-6.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2343da45ab37cf3d715c57df2868d571",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8",
            "size": 4181915,
            "upload_time": "2024-04-13T09:55:30",
            "upload_time_iso_8601": "2024-04-13T09:55:30.146951Z",
            "url": "https://files.pythonhosted.org/packages/19/f0/4213fadbae8ab5945786c4020f7cb6202e828d90df05be8f2dbc9395bcd9/pyinstaller-6.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-13 09:55:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyinstaller",
    "github_project": "pyinstaller",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyinstaller"
}
        
Elapsed time: 0.48258s