community.lbry.lbry_get (0.1.1) — module

Download stream from a LBRY name.

| "added in version" 1.0.0 of community.lbry"

Authors: Rhys Campbell (@rhysmeister)

Install collection

Install with ansible-galaxy collection install community.lbry:==0.1.1


Add to requirements.yml

  collections:
    - name: community.lbry
      version: 0.1.1

Description

Download stream from a LBRY name.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get lbry version info
  community.lbry.lbry_get:
    uri: TODO
    download_directory: /lbry/downloads
  register: result

Inputs

    
uri:
    description:
    - uri of the content to download
    required: true
    type: str

host:
    aliases:
    - login_host
    default: 127.0.0.1
    description:
    - The LBRY SDK Server Hostname.
    type: str

port:
    aliases:
    - login_port
    default: 5279
    description:
    - The LBRY SDK Server Port.
    type: int

debug:
    default: false
    description:
    - Enable additional debug output.
    type: bool

timeout:
    description:
    - download timeout in number of seconds
    type: int

protocol:
    default: http
    description:
    - The LBRY SDK Server Protocol.
    type: str

file_name:
    description:
    - specified name for the downloaded file, overrides the stream file name
    type: str

save_file:
    description:
    - save the file to the downloads directory
    type: bool

wallet_id:
    description:
    - wallet to check for claim purchase receipts
    type: str

download_directory:
    description:
    - full path to the directory to download into
    type: str