File tree Expand file tree Collapse file tree 1 file changed +21
-12
lines changed
Expand file tree Collapse file tree 1 file changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,12 @@ A C++ tool to inspect and extract contents from PyInstaller archives.
66- Opens and reads PyInstaller archive files.
77- Detects PyInstaller version (2.0 or 2.1+).
88- Parses and lists files from the archive.
9+ - Unpack files.
910
1011## Requirements
1112- Windows
1213- C++17
13- - CMake
14+ - Visual Studio
1415
1516## Usage
1617
@@ -20,14 +21,22 @@ A C++ tool to inspect and extract contents from PyInstaller archives.
2021 git clone https://github.com/pyinstxtractor/Pyextract.git
2122 cd Pyextract
2223 ```
23- 2. Build:
24- 3. ` ` `
25- Build with Visual studio
26- ` ` `
27-
28- # ## Run
29-
30- PyInstaller-C++.exe path/to/your/executable
31-
32-
33-
24+ 2. Open the solution in Visual Studio:
25+ - Open Visual Studio
26+ - Open the ` PyInstaller-C++.vcxproj` project file
27+ - Build the project
28+
29+ # ## Command-line arguments
30+ * ` -i` (Info): Display information about the archive.
31+ * ` -u` (Unpack): Unpack the contents of the archive.
32+
33+ # ## Example Usage
34+ To display information about the archive:
35+ ` ` ` sh
36+ PyInstaller-C++.exe -i executable_name
37+ ` ` `
38+
39+ To unpack the contents of the archive:
40+ ` ` ` sh
41+ PyInstaller-C++.exe -u executable_name
42+ ` ` `
You can’t perform that action at this time.
0 commit comments