Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 786 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 786 Bytes

🎧 Archive Downloader

A Python script to download archive files from the provided URLs.

⚙ Installation :

pip install beautifulsoup4
pip install colorama
pip install requests

❓ Usage :

from archive_downloader import ArchiveDownloader

# Create an instance of ArchiveDownloader
downloader = ArchiveDownloader()

"""Add target URLs here"""
urls = [""]

for url in urls:
    # Get the archive URLs from the provided URL
    result = downloader.get_archive_urls(url)

    for archive_name, archive_url in result.items():
        # Download the archive file
        downloader.download_archive(archive_url, archive_name)

🪐 Credits: