community.lbry.lbry_resolve (0.1.1) — module

Get the claim that a URL refers to.

| "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

Get the claim that a URL refers to.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get a claim
  community.lbry.lbry_resolve:
    uri: TODO
  register: result

Inputs

    
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

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

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

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

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

new_sdk_server:
    description:
    - URL of the new SDK server (EXPERIMENTAL).
    type: str

include_sent_tips:
    default: false
    description:
    - lookup and sum the total amount of tips you've made to this claim (only makes sense
      when claim is not yours)
    type: bool

include_is_my_output:
    default: false
    description:
    - lookup and include a boolean indicating if claim being resolved is yours.
    type: bool

include_received_tips:
    default: false
    description:
    - lookup and sum the total amount of tips you've received to this claim (only makes
      sense when claim is yours)
    type: bool

include_sent_supports:
    default: false
    description:
    - lookup and sum the total amount of supports you've made to this claim.
    type: bool

include_purchase_receipt:
    default: false
    description:
    - lookup and include a receipt if this wallet has purchased the claim being resolved.
    type: bool