Skip to content

consumo

Content Consumption Analyzer.

Usage:

$ consumo [OPTIONS] COMMAND [ARGS]...

Options:

  • --version: Print the program's version and exit.
  • --install-completion: Install completion for the current shell.
  • --show-completion: Show completion for the current shell, to copy it or customize the installation.
  • --help: Show this message and exit.

Commands:

  • file: Calculate the consumption time of files...
  • list: Calculate the consumption time of all the...
  • url: Calculate the consumption time of URLs...

consumo file

Calculate the consumption time of files concurrently in a *h *m *s format.

Usage:

$ consumo file [OPTIONS] FILES...

Arguments:

  • FILES...: [required]

Options:

  • --sort / --no-sort: Whether to sort the output by duration in ascending order. [default: no-sort]
  • --words-per-minute INTEGER: Reading speed in words per minute. [default: 265]
  • --skip-errors / --no-skip-errors: Whether to warn and show 0s in case an exception is raised for an item in the list. [default: no-skip-errors]
  • --cache / --no-cache: Whether to cache results in a database for later reuse. Values are invalidated based on time. [default: cache]
  • --help: Show this message and exit.

consumo list

Calculate the consumption time of all the links in a link list file in a *h *m *s format.

Usage:

$ consumo list [OPTIONS] FILE

Arguments:

  • FILE: [required]

Options:

  • --sort / --no-sort: Whether to sort the output by duration in ascending order. [default: no-sort]
  • --words-per-minute INTEGER: Reading speed in words per minute. [default: 265]
  • --skip-errors / --no-skip-errors: Whether to warn and show 0s in case an exception is raised for an item in the list. [default: no-skip-errors]
  • --depth INTEGER: How many levels to recursively follow URLs on the page. [default: 0]
  • --cache / --no-cache: Whether to cache results in a database for later reuse. Values are invalidated based on time. [default: cache]
  • --help: Show this message and exit.

consumo url

Calculate the consumption time of URLs concurrently in a *h *m *s format.

Usage:

$ consumo url [OPTIONS] URLS...

Arguments:

  • URLS...: [required]

Options:

  • --sort / --no-sort: Whether to sort the output by duration in ascending order. [default: no-sort]
  • --words-per-minute INTEGER: Reading speed in words per minute. [default: 265]
  • --skip-errors / --no-skip-errors: Whether to warn and show 0s in case an exception is raised for an item in the list. [default: no-skip-errors]
  • --depth INTEGER: How many levels to recursively follow URLs on the page. [default: 0]
  • --cache / --no-cache: Whether to cache results in a database for later reuse. Values are invalidated based on time. [default: cache]
  • --help: Show this message and exit.