๐๐งฉ Decompile Python-built .exe
files back to source code (.pyc
, .pyd
)
Decompile Python-compiled .exe
executables generated by tools like PyInstaller, cx_Freeze, and py2exe.
- ๐งต Extract
.pyc
and.pyd
files from packaged executables - ๐ Decompile
.pyc
files into readable.py
source code - ๐ Support for common packagers: PyInstaller, cx_Freeze, etc.
- Input file:
windows.exe
- Commands:
poetry install
poetry run python -m pyinstxtractor_ng windows.exe # Extract files to `windows.exe_extracted`
poetry run python windows_decompile.py # Generate `decompiled_Main.py`