Convenient command line and library wrapper for youtube-dl.
Project description
Convenient command line and library wrapper for youtube-dl.
Latest release 20200621:
- YDL.run: just catch the youtube_dl DownloadError.
- Changes to the default output filename template.
- Other minor internal changes.
The youtube-dl tool and associated youtube_dl Python module
are very useful for downloading media from various websites.
However, as an end user who almost never streams because of my
soggy internet link, I find fetching several items is quite serial and
visually noisy.
This module provides a command line tool ydl which:
- runs multiple downloads in parallel with progress bars
- prints the downloaded filename as each completes
Interactively, I keep this shell function:
ydl(){
( set -ue
dldir=${DL:-$HOME/dl}/v
[ -d "$dldir" ] || set-x mkdir "$dldir"
cd "$dldir"
command ydl ${1+"$@"}
)
}
which runs the downloader in my preferred download area
without tedious manual cding.
Function main(argv=None, cmd=None)
Main command line.
Class OverYDL
A manager for multiple YDL instances.
Class YDL
Manager for a download process.
Method YDL.__init__(self, url, *, fstags, upd=None, tick=None, over_progress=None, **kw_opts)
Initialise the manager.
Parameters:
url: the URL to downloadfstags: mandatory keyword argument, acs.fstags.FSTagsinstanceupd: optionalcs.upd.Updinstance for progress reportingtick: optional callback to indicate state changeover_progress: anOverProgressto which to add each newProgressinstancekw_opts: other keyword arguments are used to initialise the options for the underlyingYoutubeDLinstance
Class YDLCommand(cs.cmdutils.BaseCommand)
ydl command line implementation.
Command line usage:
Usage: YDLCommand [-f] {URLs|-}...
-f Force download - do not use the cache.
Release Log
Release 20200621:
- YDL.run: just catch the youtube_dl DownloadError.
- Changes to the default output filename template.
- Other minor internal changes.
Release 20200615.1: Add usage message to docstring.
Release 20200615:
- Initial "daemon" mode, suitable for "tail -f .ydld-queue | ydl -", handy for keeping around in a tmux session.
- Assorted small bugfixes.
Release 20200521: Initial PyPI release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cs.app.ydl-20200621.tar.gz.
File metadata
- Download URL: cs.app.ydl-20200621.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1208dd26436b7c070511a1125d696199100e0d4ace5a26854a8ca02f579bd56
|
|
| MD5 |
74044925958171adc0ce750290d8b132
|
|
| BLAKE2b-256 |
63780edabc280e8e0e8fb13ee8336d0a091964ac512a10787d2ccf3f292a310f
|