Skip to content

A Python script that scrapes & download media URLs from archive.org. Retrieve and download MP3 and MP4 files with ease.

License

Notifications You must be signed in to change notification settings

dexter-90/Archive-Scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

🎧 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:

About

A Python script that scrapes & download media URLs from archive.org. Retrieve and download MP3 and MP4 files with ease.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages