auto-py-to-exe


Nameauto-py-to-exe JSON
Version 2.43.3 PyPI version JSON
download
home_pagehttps://github.com/brentvollebregt/auto-py-to-exe
SummaryConverts .py to .exe using a simple graphical interface.
upload_time2024-03-25 09:40:34
maintainerNone
docs_urlNone
authorBrent Vollebregt
requires_python>=3.6
licenseMIT
keywords gui executable
VCS
bugtrack_url
requirements Eel PyInstaller requests
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">Auto PY to EXE</h1>
<p align="center">A .py to .exe converter using a simple graphical interface and <a href="https://pyinstaller.readthedocs.io/en/stable/index.html">PyInstaller</a> in Python.</p>

<p align="center">
    <img src="https://nitratine.net/posts/auto-py-to-exe/feature.png" alt="Empty interface">
</p>

<p align="center">
    <a href="https://pypi.org/project/auto-py-to-exe/"><img src="https://img.shields.io/pypi/v/auto-py-to-exe.svg" alt="PyPI Version"></a>
    <a href="https://pypi.org/project/auto-py-to-exe/"><img src="https://img.shields.io/pypi/pyversions/auto-py-to-exe.svg" alt="PyPI Supported Versions"></a>
    <a href="https://pypi.org/project/auto-py-to-exe/"><img src="https://img.shields.io/pypi/l/auto-py-to-exe.svg" alt="License"></a>
    <a href="https://pepy.tech/project/auto-py-to-exe"><img src="https://static.pepy.tech/badge/auto-py-to-exe/month" alt="Downloads Per Month"></a>
    <a href="https://pyinstaller.readthedocs.io/en/stable/requirements.html"><img src="https://img.shields.io/badge/platform-windows%20%7C%20linux%20%7C%20macos-lightgrey" alt="Supported Platforms"></a>
    <a href="https://www.buymeacoffee.com/brentvollebregt"><img src="https://img.shields.io/badge/-buy_me_a%C2%A0beer-gray?logo=buy-me-a-coffee" alt="Donate"></a>
</p>

## Translations of This File

阅读中文版的 README ,点击 [这里](./README-Chinese.md)

Suomenkieliset käyttöohjeet löydät [täältä](./README-Finnish.md)

Türkçe Talimatları [burada](./README-Turkish.md) bulabilirsiniz.

دستور العمل های [فارسی](./README-Persian.md)

한국어로 된 설명은 [여기](./README-Korean.md)를 참고하세요.

Български README [тук](README-Bulgarian.md)

## Demo

<p align="center">
    <img src="https://nitratine.net/posts/auto-py-to-exe/auto-py-to-exe-demo.gif" alt="auto-py-to-exe Demo">
</p>

## Getting Started

### Prerequisites

- Python: 3.6-3.12

_To have the interface displayed in the images, you will need Chrome. If Chrome is not installed or `--no-chrome` is passed, the default browser will be used._

### Installation and Usage

#### Installing via [PyPI](https://pypi.org/project/auto-py-to-exe/)

You can install this project using PyPI:

```
$ pip install auto-py-to-exe
```

Then to run it, execute the following in the terminal:

```
$ auto-py-to-exe
```

> If you have more than one version of Python installed, you can use `python -m auto_py_to_exe` instead of `auto-py-to-exe`.

### Installing via [GitHub](https://github.com/brentvollebregt/auto-py-to-exe)

```
$ git clone https://github.com/brentvollebregt/auto-py-to-exe.git
$ cd auto-py-to-exe
$ python setup.py install
```

Then to run it, execute the following in the terminal:

```
$ auto-py-to-exe
```

#### Running Locally via [Github](https://github.com/brentvollebregt/auto-py-to-exe) (no install)

You can run this project locally by following these steps:

1. Clone/download the [repo](https://github.com/brentvollebregt/auto-py-to-exe)
2. Open cmd/terminal and cd into the project's root folder
3. Execute `python -m pip install -r requirements.txt`
4. Execute `python -m auto_py_to_exe` to run the application

## Using the Application

1. Select your script location (paste in or use a file explorer)
   - The outline will become blue if the file exists
2. Select other options and add things like an icon or other files
3. Click the big blue button at the bottom to convert
4. Find your converted files in /output when completed

_Easy._

### Arguments

Use the help flag to get the usage: `auto-py-to-exe --help`

| Argument                                                     | Type                | Description                                                                                                                       |
| ------------------------------------------------------------ | ------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| filename                                                     | positional/optional | Pre-fill the "Script Location" field in the UI.                                                                                   |
| -nc, --no-chrome                                             | optional            | Open the UI using the default browser (which may be Chrome). Will not try to find Chrome.                                         |
| -nu, --no-ui                                                 | optional            | Don't try to open the UI in a browser and simply print out the address where the application can be accessed.                     |
| -c [CONFIG], --config [CONFIG]                               | optional            | Provide a configuration file (JSON) to pre-fill the UI. These can be generated in the settings tab.                               |
| -o [PATH], --output-dir [PATH]                               | optional            | Set the default output directory. This can still be changed in the UI.                                                            |
| -bdo [FOLDER_PATH], --build-directory-override [FOLDER_PATH] | optional            | Override the default build directory. Useful if you need to whitelist a folder to stop your antivirus from removing files.        |
| -lang [LANGUAGE_CODE], --language [LANGUAGE_CODE]            | optional            | Hint the UI what language it should default to when opening. Language codes can be found in the table under "Translations" below. |

### JSON Configuration

Instead of inserting the same data into the UI over and over again, you can export the current state by going to the "Configuration" section within the settings tab and exporting the config to a JSON file. This can then be imported into the UI again to re-populate all fields.

This JSON config export action does not save the output directory automatically as moving hosts could mean different directory structures. If you want to have the output directory in the JSON config, add the directory under `nonPyinstallerOptions.outputDirectory` in the JSON file (will need to create a new key).

## Video

If you need something visual to help you get started, [I made a video for the original release of this project](https://youtu.be/OZSZHmWSOeM); some things may be different but the same concepts still apply.

## Contributing

Check out [CONTRIBUTING.md](./CONTRIBUTING.md) to see guidelines on how to contribute. This outlines what to do if you have a new feature, a change, translation update or have found an issue with auto-py-to-exe.

## Issues Using the Tool

If you're having issues with the packaged executable or using this tool in general, I recommend you read [my blog post on common issues when using auto-py-to-exe](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/?utm_source=auto_py_to_exe&utm_medium=readme_link&utm_campaign=auto_py_to_exe_help). This post covers things you should know about packaging Python scripts and fixes for things that commonly go wrong.

If you believe you've found an issue with this tool, please follow the ["Reporting an Issue" section in CONTRIBUTING.md](./CONTRIBUTING.md#reporting-an-issue).

## Translations

| Language                                    | Translator                                                                                   | Translated                           |
| ------------------------------------------- | -------------------------------------------------------------------------------------------- | ------------------------------------ |
| Arabic (العربية)                            | [Tayeb-Ali](https://github.com/tayeb-ali)                                                    | UI                                   |
| Brazilian Portuguese (Português Brasileiro) | [marleyas](https://github.com/marleyas), [reneoliveirajr](https://github.com/reneoliveirajr) | UI                                   |
| Bulgarian (Български)                       | [kbkozlev](https://github.com/kbkozlev)                                                      | UI and [README](README-Bulgarian.md) |
| Chinese Simplified (简体中文)               | [jiangzhe11](https://github.com/jiangzhe11)                                                  | UI and [README](./README-Chinese.md) |
| Chinese Traditional (繁體中文)              | [startgo](https://github.com/ystartgo)                                                       | UI                                   |
| Czech (Čeština)                             | [Matto58](https://github.com/Matto58)                                                        | UI                                   |
| Dutch (Nederlands)                          | [barremans](https://github.com/barremans)                                                    | UI                                   |
| English                                     | -                                                                                            | UI and README                        |
| Finnish (Suomen kieli)                      | [ZapX5](https://github.com/ZapX5)                                                            | UI and [README](./README-Finnish.md) |
| French (Français)                           | [flaviedesp](https://github.com/flaviedesp)                                                  | UI                                   |
| German (Deutsch)                            | [hebens](https://github.com/hebens), [ackhh](https://github.com/ackhh)                       | UI                                   |
| Greek (Ελληνικά)                            | [sofronas](https://github.com/sofronas)                                                      | UI                                   |
| Hindi (हिन्दी)                              | [triach-rold](https://github.com/triach-rold)                                                | UI and [README](./README-Hindi.md)   |
| Indonesian (Bahasa Indonesia)               | [MarvinZhong](https://github.com/MarvinZhong)                                                | UI                                   |
| Italian (Italiano)                          | [itsEmax64](https://github.com/itsEmax64)                                                    | UI                                   |
| Japanese (日本語)                           | [NattyanTV](https://github.com/nattyan-tv)                                                   | UI                                   |
| Korean (한국어)                             | [jhk1090](https://github.com/jhk1090)                                                        | UI and [README](./README-Korean.md)  |
| Persian (فارسی)                             | [DrunkLeen](https://github.com/drunkleen), [Ar.dst](https://github.com/Ar-dst)               | UI and [README](./README-Persian.md) |
| Polish (Polski)                             | [Akuczaku](https://github.com/Akuczaku)                                                      | UI                                   |
| Russian (Русский)                           | Oleg                                                                                         | UI                                   |
| Serbian                                     | [rina](https://github.com/sweatshirts)                                                       | UI                                   |
| Spanish (Español)                           | [enriiquee](https://github.com/enriiquee)                                                    | UI                                   |
| Spanish Latam (Español Latam)               | [Matyrela](https://github.com/Matyrela)                                                      | UI                                   |
| Thai (ภาษาไทย)                              | [teerut26](https://github.com/teerut26)                                                      | UI (partial)                         |
| Turkish (Türkçe)                            | [mcagriaksoy](https://github.com/mcagriaksoy)                                                | UI and [README](./README-Turkish.md) |
| Ukrainian (Українська)                      | [AndrejGorodnij](https://github.com/AndrejGorodnij)                                          | UI                                   |
| Vietnamese (Tiếng Việt)                     | [7777Hecker](https://github.com/7777Hecker)                                                  | UI                                   |

> Want to add a translation for another language? follow the ["Add or Update a Translation" section in CONTRIBUTING.md](./CONTRIBUTING.md#add-or-update-a-translation).

## Python 2.7 Support

As of [PyInstaller v4.0](https://github.com/pyinstaller/pyinstaller/releases/tag/v4.0) released on Aug 9 2020, Python 2.7 is no longer supported; although you can still use this tool with Python 2.7 by installing an older version of PyInstaller. [PyInstaller v3.6](https://github.com/pyinstaller/pyinstaller/releases/tag/v3.6) was the last version that supported Python 2.7; to install this, first uninstall any existing versions of PyInstaller and then execute `python -m pip install pyinstaller==3.6`.

## Testing

Tests are located in `tests/` and are run using pytest:

```
$ pip install pytest
$ pip install -e .
$ pytest
```

## Screenshots

| <!-- -->                                                                                                                                             | <!-- -->                                                                                                                              |
| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| [![Empty interface](https://nitratine.net/posts/auto-py-to-exe/empty-interface.png)](https://nitratine.net/posts/auto-py-to-exe/empty-interface.png) | [![Filled out](https://nitratine.net/posts/auto-py-to-exe/filled-out.png)](https://nitratine.net/posts/auto-py-to-exe/filled-out.png) |
| [![Converting](https://nitratine.net/posts/auto-py-to-exe/converting.png)](https://nitratine.net/posts/auto-py-to-exe/converting.png)                | [![Completed](https://nitratine.net/posts/auto-py-to-exe/completed.png)](https://nitratine.net/posts/auto-py-to-exe/completed.png)    |



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/brentvollebregt/auto-py-to-exe",
    "name": "auto-py-to-exe",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "gui, executable",
    "author": "Brent Vollebregt",
    "author_email": "brent@nitratine.net",
    "download_url": "https://files.pythonhosted.org/packages/bf/31/b57ebb8c46e64af71f04e9ca212bc01705e8abb86d423910a0c5fe3774a7/auto-py-to-exe-2.43.3.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">Auto PY to EXE</h1>\n<p align=\"center\">A .py to .exe converter using a simple graphical interface and <a href=\"https://pyinstaller.readthedocs.io/en/stable/index.html\">PyInstaller</a> in Python.</p>\n\n<p align=\"center\">\n    <img src=\"https://nitratine.net/posts/auto-py-to-exe/feature.png\" alt=\"Empty interface\">\n</p>\n\n<p align=\"center\">\n    <a href=\"https://pypi.org/project/auto-py-to-exe/\"><img src=\"https://img.shields.io/pypi/v/auto-py-to-exe.svg\" alt=\"PyPI Version\"></a>\n    <a href=\"https://pypi.org/project/auto-py-to-exe/\"><img src=\"https://img.shields.io/pypi/pyversions/auto-py-to-exe.svg\" alt=\"PyPI Supported Versions\"></a>\n    <a href=\"https://pypi.org/project/auto-py-to-exe/\"><img src=\"https://img.shields.io/pypi/l/auto-py-to-exe.svg\" alt=\"License\"></a>\n    <a href=\"https://pepy.tech/project/auto-py-to-exe\"><img src=\"https://static.pepy.tech/badge/auto-py-to-exe/month\" alt=\"Downloads Per Month\"></a>\n    <a href=\"https://pyinstaller.readthedocs.io/en/stable/requirements.html\"><img src=\"https://img.shields.io/badge/platform-windows%20%7C%20linux%20%7C%20macos-lightgrey\" alt=\"Supported Platforms\"></a>\n    <a href=\"https://www.buymeacoffee.com/brentvollebregt\"><img src=\"https://img.shields.io/badge/-buy_me_a%C2%A0beer-gray?logo=buy-me-a-coffee\" alt=\"Donate\"></a>\n</p>\n\n## Translations of This File\n\n\u9605\u8bfb\u4e2d\u6587\u7248\u7684 README \uff0c\u70b9\u51fb [\u8fd9\u91cc](./README-Chinese.md)\n\nSuomenkieliset k\u00e4ytt\u00f6ohjeet l\u00f6yd\u00e4t [t\u00e4\u00e4lt\u00e4](./README-Finnish.md)\n\nT\u00fcrk\u00e7e Talimatlar\u0131 [burada](./README-Turkish.md) bulabilirsiniz.\n\n\u062f\u0633\u062a\u0648\u0631 \u0627\u0644\u0639\u0645\u0644 \u0647\u0627\u06cc [\u0641\u0627\u0631\u0633\u06cc](./README-Persian.md)\n\n\ud55c\uad6d\uc5b4\ub85c \ub41c \uc124\uba85\uc740 [\uc5ec\uae30](./README-Korean.md)\ub97c \ucc38\uace0\ud558\uc138\uc694.\n\n\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 README [\u0442\u0443\u043a](README-Bulgarian.md)\n\n## Demo\n\n<p align=\"center\">\n    <img src=\"https://nitratine.net/posts/auto-py-to-exe/auto-py-to-exe-demo.gif\" alt=\"auto-py-to-exe Demo\">\n</p>\n\n## Getting Started\n\n### Prerequisites\n\n- Python: 3.6-3.12\n\n_To have the interface displayed in the images, you will need Chrome. If Chrome is not installed or `--no-chrome` is passed, the default browser will be used._\n\n### Installation and Usage\n\n#### Installing via [PyPI](https://pypi.org/project/auto-py-to-exe/)\n\nYou can install this project using PyPI:\n\n```\n$ pip install auto-py-to-exe\n```\n\nThen to run it, execute the following in the terminal:\n\n```\n$ auto-py-to-exe\n```\n\n> If you have more than one version of Python installed, you can use `python -m auto_py_to_exe` instead of `auto-py-to-exe`.\n\n### Installing via [GitHub](https://github.com/brentvollebregt/auto-py-to-exe)\n\n```\n$ git clone https://github.com/brentvollebregt/auto-py-to-exe.git\n$ cd auto-py-to-exe\n$ python setup.py install\n```\n\nThen to run it, execute the following in the terminal:\n\n```\n$ auto-py-to-exe\n```\n\n#### Running Locally via [Github](https://github.com/brentvollebregt/auto-py-to-exe) (no install)\n\nYou can run this project locally by following these steps:\n\n1. Clone/download the [repo](https://github.com/brentvollebregt/auto-py-to-exe)\n2. Open cmd/terminal and cd into the project's root folder\n3. Execute `python -m pip install -r requirements.txt`\n4. Execute `python -m auto_py_to_exe` to run the application\n\n## Using the Application\n\n1. Select your script location (paste in or use a file explorer)\n   - The outline will become blue if the file exists\n2. Select other options and add things like an icon or other files\n3. Click the big blue button at the bottom to convert\n4. Find your converted files in /output when completed\n\n_Easy._\n\n### Arguments\n\nUse the help flag to get the usage: `auto-py-to-exe --help`\n\n| Argument                                                     | Type                | Description                                                                                                                       |\n| ------------------------------------------------------------ | ------------------- | --------------------------------------------------------------------------------------------------------------------------------- |\n| filename                                                     | positional/optional | Pre-fill the \"Script Location\" field in the UI.                                                                                   |\n| -nc, --no-chrome                                             | optional            | Open the UI using the default browser (which may be Chrome). Will not try to find Chrome.                                         |\n| -nu, --no-ui                                                 | optional            | Don't try to open the UI in a browser and simply print out the address where the application can be accessed.                     |\n| -c [CONFIG], --config [CONFIG]                               | optional            | Provide a configuration file (JSON) to pre-fill the UI. These can be generated in the settings tab.                               |\n| -o [PATH], --output-dir [PATH]                               | optional            | Set the default output directory. This can still be changed in the UI.                                                            |\n| -bdo [FOLDER_PATH], --build-directory-override [FOLDER_PATH] | optional            | Override the default build directory. Useful if you need to whitelist a folder to stop your antivirus from removing files.        |\n| -lang [LANGUAGE_CODE], --language [LANGUAGE_CODE]            | optional            | Hint the UI what language it should default to when opening. Language codes can be found in the table under \"Translations\" below. |\n\n### JSON Configuration\n\nInstead of inserting the same data into the UI over and over again, you can export the current state by going to the \"Configuration\" section within the settings tab and exporting the config to a JSON file. This can then be imported into the UI again to re-populate all fields.\n\nThis JSON config export action does not save the output directory automatically as moving hosts could mean different directory structures. If you want to have the output directory in the JSON config, add the directory under `nonPyinstallerOptions.outputDirectory` in the JSON file (will need to create a new key).\n\n## Video\n\nIf you need something visual to help you get started, [I made a video for the original release of this project](https://youtu.be/OZSZHmWSOeM); some things may be different but the same concepts still apply.\n\n## Contributing\n\nCheck out [CONTRIBUTING.md](./CONTRIBUTING.md) to see guidelines on how to contribute. This outlines what to do if you have a new feature, a change, translation update or have found an issue with auto-py-to-exe.\n\n## Issues Using the Tool\n\nIf you're having issues with the packaged executable or using this tool in general, I recommend you read [my blog post on common issues when using auto-py-to-exe](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/?utm_source=auto_py_to_exe&utm_medium=readme_link&utm_campaign=auto_py_to_exe_help). This post covers things you should know about packaging Python scripts and fixes for things that commonly go wrong.\n\nIf you believe you've found an issue with this tool, please follow the [\"Reporting an Issue\" section in CONTRIBUTING.md](./CONTRIBUTING.md#reporting-an-issue).\n\n## Translations\n\n| Language                                    | Translator                                                                                   | Translated                           |\n| ------------------------------------------- | -------------------------------------------------------------------------------------------- | ------------------------------------ |\n| Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)                            | [Tayeb-Ali](https://github.com/tayeb-ali)                                                    | UI                                   |\n| Brazilian Portuguese (Portugu\u00eas Brasileiro) | [marleyas](https://github.com/marleyas), [reneoliveirajr](https://github.com/reneoliveirajr) | UI                                   |\n| Bulgarian (\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438)                       | [kbkozlev](https://github.com/kbkozlev)                                                      | UI and [README](README-Bulgarian.md) |\n| Chinese Simplified (\u7b80\u4f53\u4e2d\u6587)               | [jiangzhe11](https://github.com/jiangzhe11)                                                  | UI and [README](./README-Chinese.md) |\n| Chinese Traditional (\u7e41\u9ad4\u4e2d\u6587)              | [startgo](https://github.com/ystartgo)                                                       | UI                                   |\n| Czech (\u010ce\u0161tina)                             | [Matto58](https://github.com/Matto58)                                                        | UI                                   |\n| Dutch (Nederlands)                          | [barremans](https://github.com/barremans)                                                    | UI                                   |\n| English                                     | -                                                                                            | UI and README                        |\n| Finnish (Suomen kieli)                      | [ZapX5](https://github.com/ZapX5)                                                            | UI and [README](./README-Finnish.md) |\n| French (Fran\u00e7ais)                           | [flaviedesp](https://github.com/flaviedesp)                                                  | UI                                   |\n| German (Deutsch)                            | [hebens](https://github.com/hebens), [ackhh](https://github.com/ackhh)                       | UI                                   |\n| Greek (\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac)                            | [sofronas](https://github.com/sofronas)                                                      | UI                                   |\n| Hindi (\u0939\u093f\u0928\u094d\u0926\u0940)                              | [triach-rold](https://github.com/triach-rold)                                                | UI and [README](./README-Hindi.md)   |\n| Indonesian (Bahasa Indonesia)               | [MarvinZhong](https://github.com/MarvinZhong)                                                | UI                                   |\n| Italian (Italiano)                          | [itsEmax64](https://github.com/itsEmax64)                                                    | UI                                   |\n| Japanese (\u65e5\u672c\u8a9e)                           | [NattyanTV](https://github.com/nattyan-tv)                                                   | UI                                   |\n| Korean (\ud55c\uad6d\uc5b4)                             | [jhk1090](https://github.com/jhk1090)                                                        | UI and [README](./README-Korean.md)  |\n| Persian (\u0641\u0627\u0631\u0633\u06cc)                             | [DrunkLeen](https://github.com/drunkleen), [Ar.dst](https://github.com/Ar-dst)               | UI and [README](./README-Persian.md) |\n| Polish (Polski)                             | [Akuczaku](https://github.com/Akuczaku)                                                      | UI                                   |\n| Russian (\u0420\u0443\u0441\u0441\u043a\u0438\u0439)                           | Oleg                                                                                         | UI                                   |\n| Serbian                                     | [rina](https://github.com/sweatshirts)                                                       | UI                                   |\n| Spanish (Espa\u00f1ol)                           | [enriiquee](https://github.com/enriiquee)                                                    | UI                                   |\n| Spanish Latam (Espa\u00f1ol Latam)               | [Matyrela](https://github.com/Matyrela)                                                      | UI                                   |\n| Thai (\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22)                              | [teerut26](https://github.com/teerut26)                                                      | UI (partial)                         |\n| Turkish (T\u00fcrk\u00e7e)                            | [mcagriaksoy](https://github.com/mcagriaksoy)                                                | UI and [README](./README-Turkish.md) |\n| Ukrainian (\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430)                      | [AndrejGorodnij](https://github.com/AndrejGorodnij)                                          | UI                                   |\n| Vietnamese (Ti\u1ebfng Vi\u1ec7t)                     | [7777Hecker](https://github.com/7777Hecker)                                                  | UI                                   |\n\n> Want to add a translation for another language? follow the [\"Add or Update a Translation\" section in CONTRIBUTING.md](./CONTRIBUTING.md#add-or-update-a-translation).\n\n## Python 2.7 Support\n\nAs of [PyInstaller v4.0](https://github.com/pyinstaller/pyinstaller/releases/tag/v4.0) released on Aug 9 2020, Python 2.7 is no longer supported; although you can still use this tool with Python 2.7 by installing an older version of PyInstaller. [PyInstaller v3.6](https://github.com/pyinstaller/pyinstaller/releases/tag/v3.6) was the last version that supported Python 2.7; to install this, first uninstall any existing versions of PyInstaller and then execute `python -m pip install pyinstaller==3.6`.\n\n## Testing\n\nTests are located in `tests/` and are run using pytest:\n\n```\n$ pip install pytest\n$ pip install -e .\n$ pytest\n```\n\n## Screenshots\n\n| <!-- -->                                                                                                                                             | <!-- -->                                                                                                                              |\n| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |\n| [![Empty interface](https://nitratine.net/posts/auto-py-to-exe/empty-interface.png)](https://nitratine.net/posts/auto-py-to-exe/empty-interface.png) | [![Filled out](https://nitratine.net/posts/auto-py-to-exe/filled-out.png)](https://nitratine.net/posts/auto-py-to-exe/filled-out.png) |\n| [![Converting](https://nitratine.net/posts/auto-py-to-exe/converting.png)](https://nitratine.net/posts/auto-py-to-exe/converting.png)                | [![Completed](https://nitratine.net/posts/auto-py-to-exe/completed.png)](https://nitratine.net/posts/auto-py-to-exe/completed.png)    |\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Converts .py to .exe using a simple graphical interface.",
    "version": "2.43.3",
    "project_urls": {
        "Homepage": "https://github.com/brentvollebregt/auto-py-to-exe"
    },
    "split_keywords": [
        "gui",
        " executable"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "839ce9961de2282caf782645a2aaedc3b8a7f0cd7ad0eb4a4e6696ae4f76de97",
                "md5": "948d211470889cf4d2516a4d303d14e1",
                "sha256": "ded0489e7184ef10451d801cd01483f7733a1e03bad3e9221f38001cc3f2f0fe"
            },
            "downloads": -1,
            "filename": "auto_py_to_exe-2.43.3-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "948d211470889cf4d2516a4d303d14e1",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 187914,
            "upload_time": "2024-03-25T09:40:31",
            "upload_time_iso_8601": "2024-03-25T09:40:31.905365Z",
            "url": "https://files.pythonhosted.org/packages/83/9c/e9961de2282caf782645a2aaedc3b8a7f0cd7ad0eb4a4e6696ae4f76de97/auto_py_to_exe-2.43.3-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf31b57ebb8c46e64af71f04e9ca212bc01705e8abb86d423910a0c5fe3774a7",
                "md5": "e46a84135b20484b29cfb217ae0ac7d8",
                "sha256": "e289d365a055491d0c8d737a0440614c849722bff1117ce21c6b510705836c0b"
            },
            "downloads": -1,
            "filename": "auto-py-to-exe-2.43.3.tar.gz",
            "has_sig": false,
            "md5_digest": "e46a84135b20484b29cfb217ae0ac7d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 184589,
            "upload_time": "2024-03-25T09:40:34",
            "upload_time_iso_8601": "2024-03-25T09:40:34.472854Z",
            "url": "https://files.pythonhosted.org/packages/bf/31/b57ebb8c46e64af71f04e9ca212bc01705e8abb86d423910a0c5fe3774a7/auto-py-to-exe-2.43.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 09:40:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "brentvollebregt",
    "github_project": "auto-py-to-exe",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "Eel",
            "specs": [
                [
                    ">=",
                    "0.11.0"
                ]
            ]
        },
        {
            "name": "PyInstaller",
            "specs": [
                [
                    ">=",
                    "5.8.0"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": []
        }
    ],
    "lcname": "auto-py-to-exe"
}
        
Elapsed time: 0.20934s