Skip to content

skillerious/WebDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

30 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŒ Web Downloader - Your Ultimate Website Downloading Tool ๐Ÿš€

Web Downloader Logo

Web Downloader is a powerful and user-friendly application built with Python and PyQt5, designed to help you effortlessly download entire websites, including their HTML, CSS, JavaScript, images, SVGs, videos, and documents. Whether you're archiving your favorite sites, working offline, or analyzing website structures, Web Downloader has got you covered!


๐Ÿ”ฅ Key Features

  • Batch Downloads: Enter multiple website URLs at once and download them simultaneously.
  • Selective Resource Downloading: Choose which types of resources (HTML, CSS, JS, Images, Fonts, Videos, SVGs, Documents) you want to download.
  • Respect or Bypass robots.txt: Decide whether to adhere to a website's robots.txt rules.
  • Concurrency Control: Set the number of concurrent threads to optimize download speeds based on your system's capabilities.
  • Proxy Support: Configure proxy settings to route your downloads through a proxy server, enhancing privacy and bypassing network restrictions.
  • Rate Limiting: Prevent server overload by setting delays between HTTP requests.
  • User-Agent Customization: Select from predefined User-Agent strings or input a custom one to mimic different browsers or devices.
  • Custom HTTP Headers: Add custom HTTP headers to your requests for advanced configurations.
  • Basic Authentication: Provide username and password for websites requiring basic authentication.
  • Ignore Specific MIME Types: Exclude certain MIME types from being downloaded to streamline the process.
  • Schedule Downloads: Schedule your downloads to start at a specific time, allowing for automated operations.
  • Download History: Keep track of your downloads with a searchable and filterable history log.
  • Pause, Resume, and Stop Downloads: Control your download processes with easy-to-use pause, resume, and stop functionalities.
  • Responsive UI: Enjoy a sleek, dark-themed interface with real-time progress indicators, detailed logs, and a resource table.
  • Preview Downloaded Pages: (If PyQtWebEngine is installed) Preview the last downloaded page directly within the application.
  • Open Download Folder: Quickly access the folder where your websites are downloaded.
  • Cross-Platform Compatibility: Runs smoothly on Windows, macOS, and Linux.

๐Ÿ“ธ Screenshots

1. Home Interface

Home Interface

2. Settings Page

Settings Page


๐Ÿ›  Installation & Setup

Prerequisites

  • Python 3.7+: Ensure you have Python installed. Download Python
  • Pip: Python package installer. It typically comes bundled with Python.

Step-by-Step Installation

  1. Clone the Repository

    git clone https://github.com/skillerious/WebDownloader.git
    cd WebDownloader
  2. Install Required Dependencies

    It's recommended to use a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts๏ฟฝctivate

    Install dependencies:

    pip install -r requirements.txt

    If you don't have a requirements.txt, install manually:

    pip install PyQt5 requests beautifulsoup4 playwright qdarkstyle

    Install Playwright Browsers:

    After installing Playwright, you need to install the necessary browsers:

    playwright install
  3. Run the Application

    python main.py
  4. (Optional) Create an Executable

    For easier distribution, you can create a standalone executable using PyInstaller:

    pip install pyinstaller
    pyinstaller --onefile --windowed main.py

    The executable will be available in the dist folder.


๐ŸŽ› How to Use

1. Launch the Application

After running main.py, the Web Downloader window will appear with a clean and intuitive interface.

2. Enter Website URLs

  • Batch Input: Enter one or multiple website URLs in the "Website URLs" text area, each on a new line.

    https://example.com
    https://anotherexample.com
    

3. Select Download Path

  • Click the Browse button to choose the folder where you want the downloaded websites to be saved.

4. Choose Resource Types

  • Resource Types: Select the types of resources you wish to download by checking the corresponding boxes (HTML, CSS, JS, Images, Fonts, Videos, SVGs, Documents).

5. Configure Download Settings

  • Timeout: Set the timeout duration for HTTP requests.
  • Retries: Specify the number of retry attempts for failed downloads.
  • Max Depth: Determine the recursion depth for downloading linked pages.
  • Concurrency: Set the number of concurrent threads to optimize download speed.
  • Proxy (Optional): Enter proxy server details if you need to route downloads through a proxy.
    • Proxy Authentication: If your proxy requires authentication, enable the proxy authentication option and provide the username and password.
  • Respect robots.txt: Toggle this option to adhere to or bypass robots.txt rules.
  • Rate Limit: Set delays between HTTP requests to prevent server overload.
  • Ignore HTTPS Errors: Choose to ignore HTTPS certificate errors if necessary.
  • Max File Size: Specify the maximum file size (in MB) for downloaded resources. Resources exceeding this size will be skipped.
  • Download Structure: Choose between "keep" to preserve the original website structure or "flatten" to organize all resources into a single directory.
  • Follow External Links: Decide whether to download resources from external domains linked within the websites.
  • Ignore MIME Types: Exclude certain MIME types from being downloaded to streamline the process.

6. Customize User-Agent (Optional)

  • User-Agent: Choose from predefined User-Agent strings or select "Custom" to input your own.

7. Add Custom HTTP Headers (Optional)

  • Navigate to the Advanced tab in Settings.
  • Add any custom HTTP headers required for specific websites or use cases.

8. Provide Basic Authentication (Optional)

  • If the target website requires basic authentication, navigate to the Advanced tab in Settings.
  • Enter the required username and password.

9. Schedule Downloads (Optional)

  • In the Advanced tab within Settings, enable "Schedule Download" and set the desired time.
  • The download will automatically start at the scheduled time.

10. Start Downloading

  • Click the Download button to initiate the download process.
  • Progress Bar: Monitor the download progress in real-time.
  • Logs: View detailed logs of each action, including successes and errors.
  • Resource Table: Keep track of each resource's download status and path.

11. Manage Downloads

  • Pause/Resume: Use the Pause and Resume buttons to control ongoing downloads.
  • Stop: Click the Stop button to terminate the download process immediately.

12. Review Download History

  • Navigate to the History section to view past downloads.
  • Search & Filter: Utilize the search bar to find specific downloads.
  • Open Folder: Quickly access the folder where a particular website was downloaded.

13. Preview Downloaded Pages

  • (If PyQtWebEngine is installed) After a successful download, a Preview Last Downloaded Page button will appear.
  • Click it to view the downloaded HTML page within the application.

14. Open Download Folder

  • After downloading, an Open Download Folder button will appear.
  • Click it to open the folder containing the downloaded website files.

15. Adjust Settings

  • Go to the Settings page to modify application-wide settings.
  • Remember to click Save Settings after making changes.

16. Learn More

  • Visit the About page for information about the application, version details, and acknowledgments.

๐Ÿ“‹ Requirements

  • Operating System: Windows, macOS, or Linux
  • Python: Version 3.7 or higher
  • Python Packages:
    • PyQt5
    • requests
    • beautifulsoup4
    • playwright
    • qdarkstyle

๐Ÿ“ Configuration Files

  • Settings: Stored in settings.json within the application directory. This file holds all user-configurable settings.
  • History: Stored in history.json, maintaining a log of all downloaded websites and their respective download paths.
  • Download Cache: Managed in cache.json, preventing duplicate downloads and tracking failed resources.

These files are automatically managed by the application. Avoid manual edits to prevent corruption.


๐Ÿค Contributing

Contributions are welcome! If you'd like to enhance Web Downloader, follow these steps:

  1. Fork the Repository

  2. Create a Feature Branch

    git checkout -b feature/YourFeature
  3. Commit Your Changes

    git commit -m "Add YourFeature"
  4. Push to the Branch

    git push origin feature/YourFeature
  5. Open a Pull Request

Please ensure your code follows the project's coding standards and includes relevant documentation.


๐Ÿ›ก License

This project is licensed under the MIT License. You are free to use, modify, and distribute this software as per the license terms.


๐Ÿ“ž Support & Contact

If you encounter any issues or have questions about Web Downloader, feel free to reach out:


๐ŸŒŸ Acknowledgments

  • PyQt5: The framework used for building the graphical user interface.
  • Requests: Simplifies HTTP requests.
  • BeautifulSoup: Facilitates HTML parsing.
  • Playwright: Enables headless browser automation for dynamic content rendering.
  • QDarkStyle: Provides the dark theme for the application.
  • Icon Design: Icons made by Freepik from www.flaticon.com.
  • Open-Source Community: Special thanks for providing invaluable tools and libraries that made this project possible.

๐Ÿ›ก Disclaimer

While Web Downloader provides the tools to download website content, please ensure you have the necessary permissions to download and use the content from the target websites. Always respect copyright laws and website policies.


Enjoy seamless website downloading with Web Downloader! If you find this tool helpful, please consider giving it a ๐Ÿ‘ and sharing it with others. Happy downloading! ๐ŸŒ๐Ÿ’พ

About

Your Ultimate Website Downloading Tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages