From 73fe28140274474eeff166e617564d98c60766dd Mon Sep 17 00:00:00 2001 From: OusmBlueNinja <89956790+OusmBlueNinja@users.noreply.github.com> Date: Sun, 29 Dec 2024 00:40:49 -0600 Subject: [PATCH] fixed info --- README.md | 7 +++---- requirements.txt | 3 ++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 524177a..9a8ca1a 100644 --- a/README.md +++ b/README.md @@ -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 +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. diff --git a/requirements.txt b/requirements.txt index 5088fdb..6bac8d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -pefile \ No newline at end of file +pefile +shutil \ No newline at end of file