A C++ tool to inspect and extract contents from PyInstaller archives.
- Opens and reads PyInstaller archive files.
- Detects PyInstaller version (2.0 or 2.1+).
- Parses and lists files from the archive.
- Unpack files.
- Windows
- C++17
- Visual Studio
- Clone the repo:
git clone https://github.com/pyinstxtractor/Pyextract.git cd Pyextract
- Open the solution in Visual Studio:
- Open Visual Studio
- Open the
PyInstaller-C++.vcxproj
project file - Build the project
-i
(Info): Display information about the archive.-u
(Unpack): Unpack the contents of the archive.
To display information about the archive:
PyInstaller-C++.exe -i executable_name
To unpack the contents of the archive:
PyInstaller-C++.exe -u executable_name