Skip to main content

Convenient command line and library wrapper for youtube-dl.

Project description

Convenient command line and library wrapper for youtube-dl.

Latest release 20210306: Assorted internal updates.

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.

Method OverYDL.queue(self, *a, **kw)

Queue a fetch of url and return a Result.

Method OverYDL.queue_iter(self, urls)

Queue the URLs of the iterable urls, essentially a convenience wrapper for the queue method. Returns a list of the Results for each queued URL.

Method OverYDL.report(self, Rs=None)

Wrapper returning cs.result.report(.Rs). Rs defaults to list(self.Rs, the accumulated Results.

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 download
  • fstags: mandatory keyword argument, a cs.fstags.FSTags instance
  • upd: optional cs.upd.Upd instance for progress reporting
  • tick: optional callback to indicate state change
  • over_progress: an OverProgress to which to add each new Progress instance
  • kw_opts: other keyword arguments are used to initialise the options for the underlying YoutubeDL instance

Method YDL.bg(self)

Return the Result for this download, starting the download if necessary.

Property YDL.output_filename

The target output filename.

Method YDL.process_info(ie_result)

Process info hook called by youtube_dl, seems uncalled :-(

Class YDLCommand(cs.cmdutils.BaseCommand)

ydl command line implementation.

Command line usage:

Usage: YDLCommand [-f] {URLs|-}...
    -f  Force download - do not use the cache.

Method YDLCommand.apply_defaults(self)

Initial defaults options.

Method YDLCommand.apply_opts(self, opts)

Command line main switches.

Method YDLCommand.main(self, argv)

Command line main programme.

Release Log

Release 20210306: Assorted internal updates.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cs.app.ydl-20210306.tar.gz (6.8 kB view details)

Uploaded Source

File details

Details for the file cs.app.ydl-20210306.tar.gz.

File metadata

  • Download URL: cs.app.ydl-20210306.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.2

File hashes

Hashes for cs.app.ydl-20210306.tar.gz
Algorithm Hash digest
SHA256 a6907cad1f3d0f0264a43ae95962e53649ccadd6f8c073f33c77ca33bc4e693d
MD5 f94e6f0c95453957c83d16938cd0624b
BLAKE2b-256 37008fe4bc5150c8fb3b40268a40c4cc391aff9555c99b702809f85261e83077

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page