Git Downloader is a user-friendly tool designed to simplify the process of downloading and extracting ZIP files from GitHub repositories. This standalone executable can be used on both Windows and Linux systems without requiring Python or additional dependencies.
- Download ZIP files: Easily download ZIP files from GitHub repositories.
- Extract ZIP contents: Extract the contents of downloaded ZIP files with just a click.
- Cross-platform compatibility: Works seamlessly on both Windows and Linux systems.
- Simple graphical user interface: Intuitive interface for effortless usage.
- Double-click the
Git_Downloader.exe
executable to launch the application. - Enter the GitHub URL of the repository you want to download in the provided field.
- Click the "Download" button to initiate the download process.
- Once the download is complete, you'll be prompted to extract the contents of the ZIP file.
- Choose whether to extract the contents or not.
- The extracted files will be saved in the same directory as the executable.
- Open a terminal and navigate to the directory containing the
Git_Downloader
executable. - Run the executable using the following command:
./Git_Downloader
- Follow steps 2-6 from the Windows instructions above to use the application.
- No additional requirements or dependencies are needed. The executable contains all necessary components for seamless operation.
- Download the Git Downloader executable for your operating system:
- For Windows:
Git_Downloader.exe
- For Linux:
Git_Downloader
- For Windows:
- Place the executable in a convenient location on your system.
- Follow the usage instructions provided above to start using Git Downloader.
If you're interested in contributing to or modifying the Git Downloader source code, follow these steps to build the executable from the source:
-
Clone the Repository:
- Clone the Git Downloader repository to your local machine using the following command:
git clone https://github.com/0xAhmadYousuf/GD.git
- Clone the Git Downloader repository to your local machine using the following command:
-
Navigate to the Repository Directory:
- Change into the repository directory:
cd GD
- Change into the repository directory:
-
Install Dependencies:
- Ensure you have Nuitka installed on your system.
-
Compile the Python Script into an Executable:
- For Windows, use the following command:
This command will generate the
nuitka --mingw64 --standalone --show-progress --show-memory --output-dir=out --onefile --windows-icon-from-ico=a.ico git_downloader.py
Git_Downloader.exe
executable in theout
directory. - For Linux, use the following command:
This command will generate the
nuitka --standalone --show-progress --show-memory --output-dir=out --onefile --linux-icon=icon.png git_downloader.py
Git_Downloader
executable in theout
directory.
- For Windows, use the following command:
-
Contribute or Modify:
- Open the
git_downloader.py
script using your preferred text editor or integrated development environment (IDE). - Make the necessary modifications or contributions to the source code.
- Save your changes.
- Open the
-
Run the Updated Executable:
- After making modifications, you can run the updated executable locally for testing:
- For Windows:
./out/Git_Downloader.exe
- For Linux:
./out/Git_Downloader
- For Windows:
- After making modifications, you can run the updated executable locally for testing:
-
Create a Pull Request (Optional):
- If you've made valuable contributions and wish to share them with the project, consider creating a pull request.
-
Share Feedback:
- Feel free to open issues or provide feedback on the GitHub repository.
-
Acknowledgment:
- Ensure that you adhere to the project's coding standards and guidelines. Provide clear commit messages and follow the contribution guidelines.