Basic downloader written in Python.
- I know it's plenty of python scripts with this name out there already
- I just needed something to download anime 😉
NOTE: You need Python 3
- Run pydown to download a resource form the web:
python pydown.py -url resource_url -o output_file
- If you need to automate the download of a large set of media, you can use
anime_downloader.bat
(Windows OS):
./anime_downloader.bat STARTING_EPISODE LAST_EPISODE
It's a script which calls pydown
in loop in order to download the media into the specified range all at once.
NOTE: You need to specify the resource URL into the batch script:
:LOOP
if %CURRENT_EP% gtr %LAST_EP% (
goto END_SCRIPT
)
@Rem !!! The line to modify is below !!!
python pydown.py -url http://www.SOMEWEBSITE.org/path/episode_n_%CURRENT_EP%.mp4 -o Anime_folder/episode_n_%CURRENT_EP%.mp4
echo -------------------------------------------
set /A CURRENT_EP=CURRENT_EP+1
goto LOOP