fixed info

This commit is contained in:
OusmBlueNinja 2024-12-29 00:40:49 -06:00
parent 010d75c7b4
commit 73fe281402
2 changed files with 5 additions and 5 deletions

View File

@ -15,18 +15,18 @@ This Python script extracts the DLL dependencies of a Windows executable file an
## Installation
Install the required Python library:
```bash
pip install pefile
pip install -r requirements.txt
```
## Usage
Run the script with the path to an executable file as an argument:
```bash
python get_dll_dependencies.py <path_to_exe>
python main.py
```
### Example
```bash
python get_dll_dependencies.py my_program.exe
python main.py
```
Output:
```
@ -39,7 +39,6 @@ Non-OS DLL Dependencies:
## Notes
- The script assumes the executable is a valid PE (Portable Executable) file.
- It gracefully handles errors such as missing files or invalid PE formats.
## License
This project is open-source and available under the MIT License.

View File

@ -1 +1,2 @@
pefile
pefile
shutil