Là một dự án tự động hoá, brentvollebregt/auto-py-to-exe đã đạt 5.0k sao trên GitHub, ngôn ngữ JavaScript. Converts .py to .exe using a simple graphical interface
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
A .py to .exe converter using a simple graphical interface and PyInstaller in Python.
English
| 简体中文
| Suomen kieli
| Türkçe
| فارسی
| 한국어
| Български
| हिन्दी
| עברית
| Беларуская
| Slovenščina
| српски
| srpski
| Русский
| Français
Demo
Getting Started
Prerequisites
Python: 3.6-3.14
To have the interface displayed in the images, you will need Chrome. If Chrome is not installed or --default-browser is passed, the default browser will be used.
Installation and Usage
Installing via PyPI
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
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 (no install)
You can run this project locally by following these steps:
Clone/download the repo
Open cmd/terminal and cd into the project's root folder
Execute python -m pip install -r requirements.txt
Execute python -m auto_py_to_exe to run the application
Using the Application
Select your script location (paste in or use a file explorer)
The outline will become blue if the file exists
Select other options and add things like an icon or other files
Click the big blue button at the bottom to convert
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.
-db, --default-browser
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.
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).
Examples
The examples/ directory offers some examples of how to write your scripts and package them with auto-py-to-exe.
Basic (console application)
No Console (as typically desired for GUI-based applications)
Images and other non-.py files (static files to be included)
Persistent data (like databases)
Video
If you need something visual to help you get started, I made a video for the original release of this project; some things may be different but the same concepts still apply.
Contributing
Check out 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. 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.
Translations
Language
Translators
UI
README
CONTRIBUTING
Examples
Arabic (العربية)
Tayeb-Ali
✔️
Belarusian (Беларуская)
Zmicier21
✔️⚠️
✔️
Brazilian Portuguese (Português Brasileiro)
marleyas, reneoliveirajr
✔️
Bulgarian (Български)
kbkozlev
✔️
✔️
Chinese Simplified (简体中文)
jiangzhe11, Emptylight
✔️
✔️
✔️
Chinese Traditional (繁體中文)
startgo
✔️
Czech (Čeština)
Matto58
✔️
Dutch (Nederlands)
barremans
✔️
English
-
✔️
✔️
✔️
✔️
Finnish (Suomen kieli)
ZapX5
✔️
✔️
French (Français)
flaviedesp, samuellouf
✔️
✔️
German (Deutsch)
hebens, ackhh
✔️
Greek (Ελληνικά)
sofronas
✔️
Hebrew (עברית)
ronbentata
✔️
✔️
Hindi (हिन्दी)
triach-rold
✔️
✔️
Hungarian (Magyar)
synexdev01
✔️
Indonesian (Bahasa Indonesia)
MarvinZhong
✔️
Italian (Italiano)
itsEmax64
✔️
Japanese (日本語)
NattyanTV
✔️
Korean (한국어)
jhk1090
✔️
✔️
Persian (فارسی)
DrunkLeen, Ar.dst
✔️
✔️
Polish (Polski)
Akuczaku
✔️
Russian (Русский)
Oleg, Sandile
✔️
✔️
Serbian Cyrillic (српски)
Radoš Milićev
✔️
✔️
✔️
✔️
Serbian Latin (srpski)
rina, Radoš Milićev
✔️
✔️
✔️
✔️
Slovak (Slovenčina)
mostypc123
✔️
Slovenian (Slovenščina)
Andrew Poženel
✔️
✔️
Spanish (Español)
enriiquee
✔️
Spanish Latin America (Español Latam)
Matyrela
✔️
Thai (ภาษาไทย)
teerut26
✔️⚠️
Turkish (Türkçe)
mcagriaksoy
✔️
✔️
Ukrainian (Українська)
AndrejGorodnij
✔️
Vietnamese (Tiếng Việt)
7777Hecker
✔️
Want to add a translation for another language? Follow the "Add or Update a Translation" section in CONTRIBUTING.md.
Python 2.7 Support
As of PyInstaller 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 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/ directory and are run using pytest:
brentvollebregt/auto-py-to-exe có 5.0k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/brentvollebregt/auto-py-to-exe. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
brentvollebregt/auto-py-to-exe có phải mã nguồn mở không?
Có — brentvollebregt/auto-py-to-exe phát hành theo license MIT, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/brentvollebregt/auto-py-to-exe.
brentvollebregt/auto-py-to-exe có website riêng không?
TopGit chưa ghi nhận URL trang chủ cho brentvollebregt/auto-py-to-exe. Phần README ở tab phía trên thường có link demo, hoặc xem mô tả GitHub của repo.
brentvollebregt/auto-py-to-exe là gì?
brentvollebregt/auto-py-to-exe (brentvollebregt/auto-py-to-exe) là dự án JavaScript trên GitHub. Theo mô tả gốc: Converts .py to .exe using a simple graphical interface
brentvollebregt/auto-py-to-exe so với các dự án Automation khác thế nào?
brentvollebregt/auto-py-to-exe được TopGit xếp vào nhóm Automation, với 5.0k sao GitHub và viết bằng JavaScript. Xem trang chủ đề Automation trên TopGit để so sánh với các dự án tương tự theo số sao và mức độ hoạt động.
Cùng nhóm Automation còn repo nào?
brentvollebregt/auto-py-to-exe thuộc nhóm Automation trên TopGit, cùng 8 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về brentvollebregt/auto-py-to-exe ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/brentvollebregt/auto-py-to-exe là nguồn chính thức.
Đọc đầy đủ README ở tab phía trên.
auto-py-to-exe có đáng để bạn bỏ thời gian?
ChatGPT, Claude và Perplexity đều đọc được trang này. Hỏi thử xem họ nghĩ gì về auto-py-to-exe.