Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronknight/bulk_file_downloader
💾Download bulk images, PDFs, mp3s, etc. from multiple URLs on a txt file, using Python 3.
https://github.com/ronknight/bulk_file_downloader
downloader file image mp3 pdf python
Last synced: 3 months ago
JSON representation
💾Download bulk images, PDFs, mp3s, etc. from multiple URLs on a txt file, using Python 3.
- Host: GitHub
- URL: https://github.com/ronknight/bulk_file_downloader
- Owner: ronknight
- License: mit
- Created: 2019-10-24T18:59:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-26T22:38:28.000Z (6 months ago)
- Last Synced: 2024-08-27T01:32:11.126Z (6 months ago)
- Topics: downloader, file, image, mp3, pdf, python
- Language: Python
- Homepage:
- Size: 227 KB
- Stars: 13
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README-Bulk Download Process-1.eraserdiagram
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
flowchart-diagram
title Bulk Download Process
// Define groups and nodes
Setup {
Install Dependencies [label: Install Required Python Packages, icon: package]
Check Python Version [label: Verify Python 3.x is Installed, icon: terminal]
}Execution {
Read URLs [label: Read URLs from .txt File, icon: file-text]
Validate URLs [label: Validate Each URL, icon: check-circle]
Download Files [label: Download Files from URLs, icon: download-cloud]
}Completion {
Verify Downloads [label: Check If All Files Are Downloaded, icon: file-check]
Error Handling [label: Handle Any Errors During Download, icon: alert-triangle]
Finish [label: End Process, shape: oval, icon: check-square]
}// Define relationships
Start [shape: oval] > Install Dependencies
Install Dependencies > Check Python Version
Check Python Version > Read URLs
Read URLs > Validate URLs
Validate URLs > Download Files
Download Files > Verify Downloads
Verify Downloads > Finish
Download Files > Error Handling: On Error
Error Handling > Finish