Merge pull request #528 from lbryio/api_doc_consis

Make api docstrings consistent
This commit is contained in:
Umpei Kay Kurokawa 2017-03-13 20:50:45 -04:00 committed by GitHub
commit 02bae15b02
2 changed files with 506 additions and 453 deletions

View file

@ -8,6 +8,7 @@ Announce all blobs to the DHT
Args: Args:
None None
Returns: Returns:
(str) Success/fail message
``` ```
## blob_delete ## blob_delete
@ -16,9 +17,9 @@ Returns:
Delete a blob Delete a blob
Args: Args:
blob_hash 'blob_hash': (str) hash of blob to get
Returns: Returns:
Success/fail message (str) Success/fail message
``` ```
## blob_get ## blob_get
@ -27,34 +28,34 @@ Returns:
Download and return a blob Download and return a blob
Args: Args:
blob_hash 'blob_hash': (str) blob hash of blob to get
timeout (optional) 'timeout'(optional): (int) timeout in number of seconds
encoding (optional): by default no attempt at decoding is made 'encoding'(optional): (str) by default no attempt at decoding is made,
can be set to one of the following decoders: can be set to one of the following decoders:
json 'json'
payment_rate_manager (optional): if not given the default payment rate manager 'payment_rate_manager'(optional): if not given the default payment rate manager
will be used. supported alternative rate managers: will be used. supported alternative rate managers:
only-free 'only-free'
Returns Returns
Success/Fail message or decoded data (str) Success/Fail message or (dict) decoded data
``` ```
## blob_list ## blob_list
```text ```text
Returns blob hashes, if not given filters returns all blobs known by the blob manager Returns blob hashes. If not given filters, returns all blobs known by the blob manager
Args: Args:
uri (str, optional): filter by blobs in stream for winning claim 'uri' (optional): (str) filter by blobs in stream for winning claim
stream_hash (str, optional): filter by blobs in given stream hash 'stream_hash' (optional): (str) filter by blobs in given stream hash
sd_hash (str, optional): filter by blobs in given sd hash 'sd_hash' (optional): (str) filter by blobs in given sd hash
needed (bool, optional): only return needed blobs 'needed' (optional): (bool) only return needed blobs
finished (bool, optional): only return finished blobs 'finished' (optional): (bool) only return finished blobs
page_size (int, optional): limit number of results returned 'page_size' (optional): (int) limit number of results returned
page (int, optional): filter to page x of [page_size] results 'page' (optional): (int) filter to page x of [page_size] results
Returns: Returns:
list of blob hashes (list) List of blob hashes
``` ```
## blob_reflect_all ## blob_reflect_all
@ -65,7 +66,7 @@ Reflects all saved blobs
Args: Args:
None None
Returns: Returns:
True (bool) true if successful
``` ```
## block_show ## block_show
@ -74,9 +75,9 @@ Returns:
Get contents of a block Get contents of a block
Args: Args:
blockhash: hash of the block to look up 'blockhash': (str) hash of the block to look up
Returns: Returns:
requested block (dict) Requested block
``` ```
## claim_abandon ## claim_abandon
@ -85,11 +86,14 @@ Returns:
Abandon a name and reclaim credits from the claim Abandon a name and reclaim credits from the claim
Args: Args:
'txid': txid of claim, string 'txid': (str) txid of claim
'nout': nout of claim, integer 'nout': (int) nout of claim
Return: Return:
txid : txid of resulting transaction if succesful (dict) Dictionary containing result of the claim
fee : fee paid for the transaction if succesful {
txid : (str) txid of resulting transaction
fee : (float) fee paid for the transaction
}
``` ```
## claim_list ## claim_list
@ -98,24 +102,26 @@ Return:
Get claims for a name Get claims for a name
Args: Args:
name: search for claims on this name 'name': (str) search for claims on this name
Returns Returns
(dict) State of claims assigned for the name
{ {
'claims': list of claims for the name 'claims': (list) list of claims for the name
[ [
{ {
'amount': amount assigned to the claim, not including supports 'amount': (float) amount assigned to the claim
'effective_amount': total amount assigned to the claim, including supports 'effective_amount': (float) total amount assigned to the claim,
'claim_id': claim ID of the claim including supports
'height': height of block containing the claim 'claim_id': (str) claim ID of the claim
'txid': txid of the claim 'height': (int) height of block containing the claim
'nout': nout of the claim 'txid': (str) txid of the claim
'supports': a list of supports attached to the claim 'nout': (int) nout of the claim
'value': the value of the claim 'supports': (list) a list of supports attached to the claim
'value': (str) the value of the claim
}, },
] ]
'supports_without_claims': list of supports without any claims attached to them 'supports_without_claims': (list) supports without any claims attached to them
'last_takeover_height': the height when the last takeover for the name happened 'last_takeover_height': (int) the height of last takeover for the name
} }
``` ```
@ -127,23 +133,23 @@ List my name claims
Args: Args:
None None
Returns Returns
list of name claims owned by user (list) List of name claims owned by user
[ [
{ {
'address': address that owns the claim 'address': (str) address that owns the claim
'amount': amount assigned to the claim 'amount': (float) amount assigned to the claim
'blocks_to_expiration': number of blocks until it expires 'blocks_to_expiration': (int) number of blocks until it expires
'category': "claim", "update" , or "support" 'category': (str) "claim", "update" , or "support"
'claim_id': claim ID of the claim 'claim_id': (str) claim ID of the claim
'confirmations': number of blocks of confirmations for the claim 'confirmations': (int) number of blocks of confirmations for the claim
'expiration_height': the block height which the claim will expire 'expiration_height': (int) the block height which the claim will expire
'expired': True if expired, False otherwise 'expired': (bool) true if expired, false otherwise
'height': height of the block containing the claim 'height': (int) height of the block containing the claim
'is_spent': True if claim is abandoned, False otherwise 'is_spent': (bool) true if claim is abandoned, false otherwise
'name': name of the claim 'name': (str) name of the claim
'txid': txid of the cliam 'txid': (str) txid of the cliam
'nout': nout of the claim 'nout': (int) nout of the claim
'value': value of the claim 'value': (str) value of the claim
}, },
] ]
``` ```
@ -154,13 +160,16 @@ Returns
Support a name claim Support a name claim
Args: Args:
'name': name 'name': (str) name
'claim_id': claim id of claim to support 'claim_id': (str) claim ID of claim to support
'amount': amount to support by 'amount': (float) amount to support by
Return: Return:
txid : txid of resulting transaction if succesful (dict) Dictionary containing result of the claim
nout : nout of the resulting support claim if succesful {
fee : fee paid for the transaction if succesful txid : (str) txid of resulting support claim
nout : (int) nout of the resulting support claim
fee : (float) fee paid for the transaction
}
``` ```
## claim_show ## claim_show
@ -169,20 +178,22 @@ Return:
Resolve claim info from a LBRY name Resolve claim info from a LBRY name
Args: Args:
'name': name to look up, string, do not include lbry:// prefix 'name': (str) name to look up, do not include lbry:// prefix
'txid': optional, if specified, look for claim with this txid 'txid'(optional): (str) if specified, look for claim with this txid
'nout': optional, if specified, look for claim with this nout 'nout'(optional): (int) if specified, look for claim with this nout
Returns: Returns:
false if name is not claimed , else return dictionary containing (dict) Dictionary contaning claim info, (bool) false if claim is not
resolvable
'txid': txid of claim {
'nout': nout of claim 'txid': (str) txid of claim
'amount': amount of claim 'nout': (int) nout of claim
'value': value of claim 'amount': (float) amount of claim
'height' : height of claim 'value': (str) value of claim
'claim_id': claim ID of claim 'height' : (int) height of claim takeover
'supports': supports associated with claim 'claim_id': (str) claim ID of claim
'supports': (list) list of supports associated with claim
}
``` ```
## commands ## commands
@ -191,7 +202,7 @@ Returns:
Return a list of available commands Return a list of available commands
Returns: Returns:
list (list) list of available commands
``` ```
## daemon_stop ## daemon_stop
@ -200,7 +211,7 @@ Returns:
Stop lbrynet-daemon Stop lbrynet-daemon
Returns: Returns:
shutdown message (string) Shutdown message
``` ```
## descriptor_get ## descriptor_get
@ -209,14 +220,14 @@ Returns:
Download and return a sd blob Download and return a sd blob
Args: Args:
sd_hash 'sd_hash': (str) hash of sd blob
timeout (optional) 'timeout'(optional): (int) timeout in number of seconds
payment_rate_manager (optional): if not given the default payment rate manager 'payment_rate_manager'(optional): (str) if not given the default payment rate manager
will be used. supported alternative rate managers: will be used. supported alternative rate managers:
only-free only-free
Returns Returns
Success/Fail message or decoded data (str) Success/Fail message or (dict) decoded data
``` ```
## file_delete ## file_delete
@ -225,17 +236,18 @@ Returns
Delete a lbry file Delete a lbry file
Args: Args:
'name' (optional): delete files by lbry name, 'name' (optional): (str) delete file by lbry name,
'sd_hash' (optional): delete files by sd hash, 'sd_hash' (optional): (str) delete file by sd hash,
'file_name' (optional): delete files by the name in the downloads folder, 'file_name' (optional): (str) delete file by the name in the downloads folder,
'stream_hash' (optional): delete files by stream hash, 'stream_hash' (optional): (str) delete file by stream hash,
'claim_id' (optional): delete files by claim id, 'claim_id' (optional): (str) delete file by claim ID,
'outpoint' (optional): delete files by claim outpoint, 'outpoint' (optional): (str) delete file by claim outpoint,
'rowid': (optional): delete file by rowid in the file manager 'rowid': (optional): (int) delete file by rowid in the file manager
'delete_target_file' (optional): delete file from downloads folder, defaults to True 'delete_target_file' (optional): (bool) delete file from downloads folder,
if False only the blobs and db entries will be deleted defaults to true if false only the blobs and
db entries will be deleted
Returns: Returns:
True if deletion was successful, otherwise False (bool) true if deletion was successful
``` ```
## file_list ## file_list
@ -244,38 +256,40 @@ Returns:
List files limited by optional filters List files limited by optional filters
Args: Args:
'name' (optional): filter files by lbry name, 'name' (optional): (str) filter files by lbry name,
'sd_hash' (optional): filter files by sd hash, 'sd_hash' (optional): (str) filter files by sd hash,
'file_name' (optional): filter files by the name in the downloads folder, 'file_name' (optional): (str) filter files by the name in the downloads folder,
'stream_hash' (optional): filter files by stream hash, 'stream_hash' (optional): (str) filter files by stream hash,
'claim_id' (optional): filter files by claim id, 'claim_id' (optional): (str) filter files by claim id,
'outpoint' (optional): filter files by claim outpoint, 'outpoint' (optional): (str) filter files by claim outpoint,
'rowid' (optional): filter files by internal row id, 'rowid' (optional): (int) filter files by internal row id,
'full_status': (optional): bool, if true populate the 'message' and 'size' fields 'full_status': (optional): (bool) if true populate the 'message' and 'size' fields
Returns: Returns:
(list) List of files
[ [
{ {
'completed': bool, 'completed': (bool) true if download is completed,
'file_name': str, 'file_name': (str) name of file,
'download_directory': str, 'download_directory': (str) download directory,
'points_paid': float, 'points_paid': (float) credit paid to download file,
'stopped': bool, 'stopped': (bool) true if download is stopped,
'stream_hash': str (hex), 'stream_hash': (str) stream hash of file,
'stream_name': str, 'stream_name': (str) stream name ,
'suggested_file_name': str, 'suggested_file_name': (str) suggested file name,
'sd_hash': str (hex), 'sd_hash': (str) sd hash of file,
'name': str, 'name': (str) name claim attached to file
'outpoint': str, (txid:nout) 'outpoint': (str) claim outpoint attached to file
'claim_id': str (hex), 'claim_id': (str) claim ID attached to file,
'download_path': str, 'download_path': (str) download path of file,
'mime_type': str, 'mime_type': (str) mime type of file,
'key': str (hex), 'key': (str) key attached to file,
'total_bytes': int, None if full_status is False 'total_bytes': (int) file size in bytes, None if full_status is false
'written_bytes': int, 'written_bytes': (int) written size in bytes
'message': str, None if full_status is False 'message': (str), None if full_status is false
'metadata': Metadata dict 'metadata': (dict) Metadata dictionary
} },
] ]
``` ```
@ -285,12 +299,12 @@ Returns:
Start or stop seeding a file Start or stop seeding a file
Args: Args:
'status': "start" or "stop" 'status': (str) "start" or "stop"
'name': start file by lbry name, 'name' (optional): (str) start file by lbry name,
'sd_hash': start file by the hash in the name claim, 'sd_hash' (optional): (str) start file by the hash in the name claim,
'file_name': start file by its name in the downloads folder, 'file_name' (optional): (str) start file by its name in the downloads folder,
Returns: Returns:
confirmation message (str) Confirmation message
``` ```
## get ## get
@ -299,34 +313,36 @@ Returns:
Download stream from a LBRY name. Download stream from a LBRY name.
Args: Args:
'name': name to download, string 'name': (str) name to download
'file_name': optional, a user specified name for the downloaded file 'file_name'(optional): (str) a user specified name for the downloaded file
'stream_info': optional, specified stream info overrides name 'stream_info'(optional): (str) specified stream info overrides name
'timeout': optional 'timeout'(optional): (int) download timeout in number of seconds
'download_directory': optional, path to directory where file will be saved, string 'download_directory'(optional): (str) path to directory where file will be saved
'wait_for_write': optional, defaults to True. When set, waits for the file to 'wait_for_write'(optional): (bool) defaults to True. When set, waits for the file to
only start to be written before returning any results. only start to be written before returning any results.
Returns: Returns:
(dict) Dictionary contaning information about the stream
{ {
'completed': bool, 'completed': (bool) true if download is completed,
'file_name': str, 'file_name': (str) name of file,
'download_directory': str, 'download_directory': (str) download directory,
'points_paid': float, 'points_paid': (float) credit paid to download file,
'stopped': bool, 'stopped': (bool) true if download is stopped,
'stream_hash': str (hex), 'stream_hash': (str) stream hash of file,
'stream_name': str, 'stream_name': (str) stream name ,
'suggested_file_name': str, 'suggested_file_name': (str) suggested file name,
'sd_hash': str (hex), 'sd_hash': (str) sd hash of file,
'name': str, 'name': (str) name claim attached to file
'outpoint': str, (txid:nout) 'outpoint': (str) claim outpoint attached to file
'claim_id': str (hex), 'claim_id': (str) claim ID attached to file,
'download_path': str, 'download_path': (str) download path of file,
'mime_type': str, 'mime_type': (str) mime type of file,
'key': str (hex), 'key': (str) key attached to file,
'total_bytes': int 'total_bytes': (int) file size in bytes, None if full_status is false
'written_bytes': int, 'written_bytes': (int) written size in bytes
'message': str 'message': (str), None if full_status is false
'metadata': Metadata dict 'metadata': (dict) Metadata dictionary
} }
``` ```
@ -335,13 +351,13 @@ Returns:
```text ```text
Get stream availability for a winning claim Get stream availability for a winning claim
Arg: Args:
name (str): lbry name 'name' : (str) lbry name
sd_timeout (int, optional): sd blob download timeout 'sd_timeout' (optional): (int) sd blob download timeout
peer_timeout (int, optional): how long to look for peers 'peer_timeout' (optional): (int) how long to look for peers
Returns: Returns:
peers per blob / total blobs (float) Peers per blob / total blobs
``` ```
## help ## help
@ -350,9 +366,9 @@ Returns:
Return a useful message for an API command Return a useful message for an API command
Args: Args:
'command': optional, command to retrieve documentation for 'command'(optional): (str) command to retrieve documentation for
Returns: Returns:
if given a command, returns documentation about that command (str) if given a command, returns documentation about that command
otherwise returns general help message otherwise returns general help message
``` ```
@ -362,10 +378,10 @@ Returns:
Get peers for blob hash Get peers for blob hash
Args: Args:
'blob_hash': blob hash 'blob_hash': (str) blob hash
'timeout' (int, optional): peer search timeout 'timeout'(optional): (int) peer search timeout in seconds
Returns: Returns:
List of contacts (list) List of contacts
``` ```
## publish ## publish
@ -374,18 +390,21 @@ Returns:
Make a new name claim and publish associated data to lbrynet Make a new name claim and publish associated data to lbrynet
Args: Args:
'name': str, name to be claimed, string 'name': (str) name to be claimed, string
'bid': float, amount of credits to commit in this claim, 'bid': (float) amount of credits to commit in this claim,
'metadata': dict, Metadata compliant (can be missing sources if a file is provided) 'metadata': (dict) Metadata compliant (can be missing sources if a file is provided)
'file_path' (optional): str, path to file to be associated with name, if not given 'file_path' (optional): (str) path to file to be associated with name, if not given
the stream from your existing claim for the name will be used the stream from your existing claim for the name will be used
'fee' (optional): dict, FeeValidator compliant 'fee' (optional): (dict) FeeValidator compliant (i.e. {'LBC':{'amount':10}} )
Returns: Returns:
'tx' : hex encoded transaction (dict) Dictionary containing result of the claim
'txid' : txid of resulting transaction {
'nout' : nout of the resulting support claim 'tx' : (str) hex encoded transaction
'fee' : fee paid for the claim transaction 'txid' : (str) txid of resulting claim
'claim_id' : claim id of the resulting transaction 'nout' : (int) nout of the resulting claim
'fee' : (float) fee paid for the claim transaction
'claim_id' : (str) claim ID of the resulting claim
}
``` ```
## reflect ## reflect
@ -394,9 +413,9 @@ Returns:
Reflect a stream Reflect a stream
Args: Args:
sd_hash: sd_hash of lbry file 'sd_hash': (str) sd_hash of lbry file
Returns: Returns:
True or traceback (bool) true if successful
``` ```
## report_bug ## report_bug
@ -405,9 +424,9 @@ Returns:
Report a bug to slack Report a bug to slack
Args: Args:
'message': string, message to send 'message': (str) message to send
Returns: Returns:
True if successful (bool) true if successful
``` ```
## resolve_name ## resolve_name
@ -416,9 +435,10 @@ Returns:
Resolve stream info from a LBRY name Resolve stream info from a LBRY name
Args: Args:
'name': name to look up, string, do not include lbry:// prefix 'name': (str) name to look up, do not include lbry:// prefix
Returns: Returns:
metadata dictionary from name claim or None if the name is not known (dict) Metadata dictionary from name claim, None if the name is not
resolvable
``` ```
## send_amount_to_address ## send_amount_to_address
@ -427,10 +447,10 @@ Returns:
Send credits to an address Send credits to an address
Args: Args:
amount: the amount to send 'amount': (float) the amount to send
address: the address of the recipient 'address': (str) the address of the recipient in base58
Returns: Returns:
True if payment successfully scheduled (bool) true if payment successfully scheduled
``` ```
## settings_get ## settings_get
@ -438,21 +458,25 @@ Returns:
```text ```text
Get daemon settings Get daemon settings
Args:
None
Returns: Returns:
'run_on_startup': bool, (dict) Dictionary of daemon settings
'data_rate': float, {
'max_key_fee': float, 'run_on_startup': (bool) currently not supported
'download_directory': string, 'data_rate': (float) data rate
'max_upload': float, 0.0 for unlimited 'max_key_fee': (float) maximum key fee
'max_download': float, 0.0 for unlimited 'download_directory': (str) path of where files are downloaded
'search_timeout': float, 'max_upload': (float), currently not supported
'download_timeout': int 'max_download': (float), currently not supported
'max_search_results': int, 'download_timeout': (int) download timeout in seconds
'wallet_type': string, 'max_search_results': (int) max search results
'delete_blobs_on_remove': bool, 'wallet_type': (str) wallet type
'peer_port': int, 'delete_blobs_on_remove': (bool) delete blobs on removal
'dht_node_port': int, 'peer_port': (int) peer port
'use_upnp': bool, 'dht_node_port': (int) dht node port
'use_upnp': (bool) use upnp if true
}
``` ```
## settings_set ## settings_set
@ -461,15 +485,15 @@ Returns:
Set daemon settings Set daemon settings
Args: Args:
'run_on_startup': bool, 'run_on_startup': (bool) currently not supported
'data_rate': float, 'data_rate': (float) data rate,
'max_key_fee': float, 'max_key_fee': (float) maximum key fee,
'download_directory': string, 'download_directory': (str) path of where files are downloaded,
'max_upload': float, 0.0 for unlimited 'max_upload': (float), currently not supported
'max_download': float, 0.0 for unlimited 'max_download': (float), currently not supported
'download_timeout': int 'download_timeout': (int) download timeout in seconds
Returns: Returns:
settings dict (dict) settings dict
``` ```
## status ## status
@ -478,9 +502,10 @@ Returns:
Return daemon status Return daemon status
Args: Args:
session_status: bool 'session_status' (optional): (bool) true to return session status,
default is false
Returns: Returns:
daemon status (dict) Daemon status dictionary
``` ```
## stream_cost_estimate ## stream_cost_estimate
@ -489,21 +514,22 @@ Returns:
Get estimated cost for a lbry stream Get estimated cost for a lbry stream
Args: Args:
'name': lbry name 'name': (str) lbry name
'size': stream size, in bytes. if provided an sd blob won't be downloaded. 'size' (optional): (int) stream size, in bytes. if provided an sd blob
won't be downloaded.
Returns: Returns:
estimated cost (float) Estimated cost in lbry credits
``` ```
## transaction_list ## transaction_list
```text ```text
List transactions List transactions belonging to wallet
Args: Args:
None None
Returns: Returns:
list of transactions (list) List of transactions
``` ```
## transaction_show ## transaction_show
@ -512,9 +538,9 @@ Returns:
Get a decoded transaction from a txid Get a decoded transaction from a txid
Args: Args:
txid: txid hex string 'txid': (str) txid of transaction
Returns: Returns:
JSON formatted transaction (dict) JSON formatted transaction
``` ```
## version ## version
@ -525,14 +551,17 @@ Get lbry version information
Args: Args:
None None
Returns: Returns:
"platform": platform string (dict) Dictionary of lbry version information
"os_release": os release string {
"os_system": os name 'platform': (str) platform string
"lbrynet_version: ": lbrynet_version, 'os_release': (str) os release string
"lbryum_version: ": lbryum_version, 'os_system': (str) os name
"ui_version": commit hash of ui version being used 'lbrynet_version': (str) lbrynet_version,
"remote_lbrynet": most recent lbrynet version available from github 'lbryum_version': (str) lbryum_version,
"remote_lbryum": most recent lbryum version available from github 'ui_version': (str) commit hash of ui version being used
'remote_lbrynet': (str) most recent lbrynet version available from github
'remote_lbryum': (str) most recent lbryum version available from github
}
``` ```
## wallet_balance ## wallet_balance
@ -541,7 +570,7 @@ Returns:
Return the balance of the wallet Return the balance of the wallet
Returns: Returns:
balance, float (float) amount of lbry credits in wallet
``` ```
## wallet_is_address_mine ## wallet_is_address_mine
@ -550,9 +579,9 @@ Returns:
Checks if an address is associated with the current wallet. Checks if an address is associated with the current wallet.
Args: Args:
address: string 'address': (str) address to check in base58
Returns: Returns:
is_mine: bool (bool) true, if address is associated with current wallet
``` ```
## wallet_new_address ## wallet_new_address
@ -563,7 +592,7 @@ Generate a new wallet address
Args: Args:
None None
Returns: Returns:
new wallet address, base 58 string (str) New wallet address in base58
``` ```
## wallet_public_key ## wallet_public_key
@ -572,8 +601,8 @@ Returns:
Get public key from wallet address Get public key from wallet address
Args: Args:
wallet: wallet address, base58 'wallet': (str) wallet address in base58
Returns: Returns:
public key (str) Public key in hex encoding
``` ```

View file

@ -1083,9 +1083,10 @@ class Daemon(AuthJSONRPCServer):
Return daemon status Return daemon status
Args: Args:
session_status: bool 'session_status' (optional): (bool) true to return session status,
default is false
Returns: Returns:
daemon status (dict) Daemon status dictionary
""" """
# on startup, the wallet or network won't be available but we still need this call to work # on startup, the wallet or network won't be available but we still need this call to work
has_wallet = self.session and self.session.wallet and self.session.wallet.network has_wallet = self.session and self.session.wallet and self.session.wallet.network
@ -1213,14 +1214,17 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns: Returns:
"platform": platform string (dict) Dictionary of lbry version information
"os_release": os release string {
"os_system": os name 'platform': (str) platform string
"lbrynet_version: ": lbrynet_version, 'os_release': (str) os release string
"lbryum_version: ": lbryum_version, 'os_system': (str) os name
"ui_version": commit hash of ui version being used 'lbrynet_version': (str) lbrynet_version,
"remote_lbrynet": most recent lbrynet version available from github 'lbryum_version': (str) lbryum_version,
"remote_lbryum": most recent lbryum version available from github 'ui_version': (str) commit hash of ui version being used
'remote_lbrynet': (str) most recent lbrynet version available from github
'remote_lbryum': (str) most recent lbryum version available from github
}
""" """
platform_info = self._get_platform() platform_info = self._get_platform()
@ -1243,9 +1247,9 @@ class Daemon(AuthJSONRPCServer):
Report a bug to slack Report a bug to slack
Args: Args:
'message': string, message to send 'message': (str) message to send
Returns: Returns:
True if successful (bool) true if successful
""" """
platform_name = self._get_platform()['platform'] platform_name = self._get_platform()['platform']
@ -1267,21 +1271,25 @@ class Daemon(AuthJSONRPCServer):
""" """
Get daemon settings Get daemon settings
Args:
None
Returns: Returns:
'run_on_startup': bool, (dict) Dictionary of daemon settings
'data_rate': float, {
'max_key_fee': float, 'run_on_startup': (bool) currently not supported
'download_directory': string, 'data_rate': (float) data rate
'max_upload': float, 0.0 for unlimited 'max_key_fee': (float) maximum key fee
'max_download': float, 0.0 for unlimited 'download_directory': (str) path of where files are downloaded
'search_timeout': float, 'max_upload': (float), currently not supported
'download_timeout': int 'max_download': (float), currently not supported
'max_search_results': int, 'download_timeout': (int) download timeout in seconds
'wallet_type': string, 'max_search_results': (int) max search results
'delete_blobs_on_remove': bool, 'wallet_type': (str) wallet type
'peer_port': int, 'delete_blobs_on_remove': (bool) delete blobs on removal
'dht_node_port': int, 'peer_port': (int) peer port
'use_upnp': bool, 'dht_node_port': (int) dht node port
'use_upnp': (bool) use upnp if true
}
""" """
log.info("Get daemon settings") log.info("Get daemon settings")
@ -1300,15 +1308,15 @@ class Daemon(AuthJSONRPCServer):
Set daemon settings Set daemon settings
Args: Args:
'run_on_startup': bool, 'run_on_startup': (bool) currently not supported
'data_rate': float, 'data_rate': (float) data rate,
'max_key_fee': float, 'max_key_fee': (float) maximum key fee,
'download_directory': string, 'download_directory': (str) path of where files are downloaded,
'max_upload': float, 0.0 for unlimited 'max_upload': (float), currently not supported
'max_download': float, 0.0 for unlimited 'max_download': (float), currently not supported
'download_timeout': int 'download_timeout': (int) download timeout in seconds
Returns: Returns:
settings dict (dict) settings dict
""" """
def _log_settings_change(): def _log_settings_change():
@ -1329,9 +1337,9 @@ class Daemon(AuthJSONRPCServer):
Return a useful message for an API command Return a useful message for an API command
Args: Args:
'command': optional, command to retrieve documentation for 'command'(optional): (str) command to retrieve documentation for
Returns: Returns:
if given a command, returns documentation about that command (str) if given a command, returns documentation about that command
otherwise returns general help message otherwise returns general help message
""" """
@ -1359,7 +1367,7 @@ class Daemon(AuthJSONRPCServer):
Return a list of available commands Return a list of available commands
Returns: Returns:
list (list) list of available commands
""" """
return self._render_response(sorted( return self._render_response(sorted(
[command for command in self.callable_methods.keys() [command for command in self.callable_methods.keys()
@ -1377,7 +1385,7 @@ class Daemon(AuthJSONRPCServer):
Return the balance of the wallet Return the balance of the wallet
Returns: Returns:
balance, float (float) amount of lbry credits in wallet
""" """
return self._render_response(float(self.session.wallet.get_balance())) return self._render_response(float(self.session.wallet.get_balance()))
@ -1392,7 +1400,7 @@ class Daemon(AuthJSONRPCServer):
Stop lbrynet-daemon Stop lbrynet-daemon
Returns: Returns:
shutdown message (string) Shutdown message
""" """
def _display_shutdown_message(): def _display_shutdown_message():
@ -1409,38 +1417,40 @@ class Daemon(AuthJSONRPCServer):
List files limited by optional filters List files limited by optional filters
Args: Args:
'name' (optional): filter files by lbry name, 'name' (optional): (str) filter files by lbry name,
'sd_hash' (optional): filter files by sd hash, 'sd_hash' (optional): (str) filter files by sd hash,
'file_name' (optional): filter files by the name in the downloads folder, 'file_name' (optional): (str) filter files by the name in the downloads folder,
'stream_hash' (optional): filter files by stream hash, 'stream_hash' (optional): (str) filter files by stream hash,
'claim_id' (optional): filter files by claim id, 'claim_id' (optional): (str) filter files by claim id,
'outpoint' (optional): filter files by claim outpoint, 'outpoint' (optional): (str) filter files by claim outpoint,
'rowid' (optional): filter files by internal row id, 'rowid' (optional): (int) filter files by internal row id,
'full_status': (optional): bool, if true populate the 'message' and 'size' fields 'full_status': (optional): (bool) if true populate the 'message' and 'size' fields
Returns: Returns:
(list) List of files
[ [
{ {
'completed': bool, 'completed': (bool) true if download is completed,
'file_name': str, 'file_name': (str) name of file,
'download_directory': str, 'download_directory': (str) download directory,
'points_paid': float, 'points_paid': (float) credit paid to download file,
'stopped': bool, 'stopped': (bool) true if download is stopped,
'stream_hash': str (hex), 'stream_hash': (str) stream hash of file,
'stream_name': str, 'stream_name': (str) stream name ,
'suggested_file_name': str, 'suggested_file_name': (str) suggested file name,
'sd_hash': str (hex), 'sd_hash': (str) sd hash of file,
'name': str, 'name': (str) name claim attached to file
'outpoint': str, (txid:nout) 'outpoint': (str) claim outpoint attached to file
'claim_id': str (hex), 'claim_id': (str) claim ID attached to file,
'download_path': str, 'download_path': (str) download path of file,
'mime_type': str, 'mime_type': (str) mime type of file,
'key': str (hex), 'key': (str) key attached to file,
'total_bytes': int, None if full_status is False 'total_bytes': (int) file size in bytes, None if full_status is false
'written_bytes': int, 'written_bytes': (int) written size in bytes
'message': str, None if full_status is False 'message': (str), None if full_status is false
'metadata': Metadata dict 'metadata': (dict) Metadata dictionary
} },
] ]
""" """
@ -1454,9 +1464,10 @@ class Daemon(AuthJSONRPCServer):
Resolve stream info from a LBRY name Resolve stream info from a LBRY name
Args: Args:
'name': name to look up, string, do not include lbry:// prefix 'name': (str) name to look up, do not include lbry:// prefix
Returns: Returns:
metadata dictionary from name claim or None if the name is not known (dict) Metadata dictionary from name claim, None if the name is not
resolvable
""" """
if not name: if not name:
@ -1480,23 +1491,25 @@ class Daemon(AuthJSONRPCServer):
def jsonrpc_claim_show(self, name, txid=None, nout=None): def jsonrpc_claim_show(self, name, txid=None, nout=None):
""" """
Resolve claim info from a LBRY name Resolve claim info from a LBRY name
Args: Args:
'name': name to look up, string, do not include lbry:// prefix 'name': (str) name to look up, do not include lbry:// prefix
'txid': optional, if specified, look for claim with this txid 'txid'(optional): (str) if specified, look for claim with this txid
'nout': optional, if specified, look for claim with this nout 'nout'(optional): (int) if specified, look for claim with this nout
Returns:
(dict) Dictionary contaning claim info, (bool) false if claim is not
resolvable
Returns: {
false if name is not claimed , else return dictionary containing 'txid': (str) txid of claim
'nout': (int) nout of claim
'txid': txid of claim 'amount': (float) amount of claim
'nout': nout of claim 'value': (str) value of claim
'amount': amount of claim 'height' : (int) height of claim takeover
'value': value of claim 'claim_id': (str) claim ID of claim
'height' : height of claim 'supports': (list) list of supports associated with claim
'claim_id': claim ID of claim }
'supports': supports associated with claim
""" """
d = self.session.wallet.get_claim_info(name, txid, nout) d = self.session.wallet.get_claim_info(name, txid, nout)
@ -1513,35 +1526,38 @@ class Daemon(AuthJSONRPCServer):
Download stream from a LBRY name. Download stream from a LBRY name.
Args: Args:
'name': name to download, string 'name': (str) name to download
'file_name': optional, a user specified name for the downloaded file 'file_name'(optional): (str) a user specified name for the downloaded file
'stream_info': optional, specified stream info overrides name 'stream_info'(optional): (str) specified stream info overrides name
'timeout': optional 'timeout'(optional): (int) download timeout in number of seconds
'download_directory': optional, path to directory where file will be saved, string 'download_directory'(optional): (str) path to directory where file will be saved
'wait_for_write': optional, defaults to True. When set, waits for the file to 'wait_for_write'(optional): (bool) defaults to True. When set, waits for the file to
only start to be written before returning any results. only start to be written before returning any results.
Returns: Returns:
(dict) Dictionary contaning information about the stream
{ {
'completed': bool, 'completed': (bool) true if download is completed,
'file_name': str, 'file_name': (str) name of file,
'download_directory': str, 'download_directory': (str) download directory,
'points_paid': float, 'points_paid': (float) credit paid to download file,
'stopped': bool, 'stopped': (bool) true if download is stopped,
'stream_hash': str (hex), 'stream_hash': (str) stream hash of file,
'stream_name': str, 'stream_name': (str) stream name ,
'suggested_file_name': str, 'suggested_file_name': (str) suggested file name,
'sd_hash': str (hex), 'sd_hash': (str) sd hash of file,
'name': str, 'name': (str) name claim attached to file
'outpoint': str, (txid:nout) 'outpoint': (str) claim outpoint attached to file
'claim_id': str (hex), 'claim_id': (str) claim ID attached to file,
'download_path': str, 'download_path': (str) download path of file,
'mime_type': str, 'mime_type': (str) mime type of file,
'key': str (hex), 'key': (str) key attached to file,
'total_bytes': int 'total_bytes': (int) file size in bytes, None if full_status is false
'written_bytes': int, 'written_bytes': (int) written size in bytes
'message': str 'message': (str), None if full_status is false
'metadata': Metadata dict 'metadata': (dict) Metadata dictionary
} }
""" """
timeout = timeout if timeout is not None else self.download_timeout timeout = timeout if timeout is not None else self.download_timeout
@ -1603,12 +1619,12 @@ class Daemon(AuthJSONRPCServer):
Start or stop seeding a file Start or stop seeding a file
Args: Args:
'status': "start" or "stop" 'status': (str) "start" or "stop"
'name': start file by lbry name, 'name' (optional): (str) start file by lbry name,
'sd_hash': start file by the hash in the name claim, 'sd_hash' (optional): (str) start file by the hash in the name claim,
'file_name': start file by its name in the downloads folder, 'file_name' (optional): (str) start file by its name in the downloads folder,
Returns: Returns:
confirmation message (str) Confirmation message
""" """
if status not in ['start', 'stop']: if status not in ['start', 'stop']:
@ -1636,17 +1652,18 @@ class Daemon(AuthJSONRPCServer):
Delete a lbry file Delete a lbry file
Args: Args:
'name' (optional): delete files by lbry name, 'name' (optional): (str) delete file by lbry name,
'sd_hash' (optional): delete files by sd hash, 'sd_hash' (optional): (str) delete file by sd hash,
'file_name' (optional): delete files by the name in the downloads folder, 'file_name' (optional): (str) delete file by the name in the downloads folder,
'stream_hash' (optional): delete files by stream hash, 'stream_hash' (optional): (str) delete file by stream hash,
'claim_id' (optional): delete files by claim id, 'claim_id' (optional): (str) delete file by claim ID,
'outpoint' (optional): delete files by claim outpoint, 'outpoint' (optional): (str) delete file by claim outpoint,
'rowid': (optional): delete file by rowid in the file manager 'rowid': (optional): (int) delete file by rowid in the file manager
'delete_target_file' (optional): delete file from downloads folder, defaults to True 'delete_target_file' (optional): (bool) delete file from downloads folder,
if False only the blobs and db entries will be deleted defaults to true if false only the blobs and
db entries will be deleted
Returns: Returns:
True if deletion was successful, otherwise False (bool) true if deletion was successful
""" """
lbry_files = yield self._get_lbry_files(return_json=False, **kwargs) lbry_files = yield self._get_lbry_files(return_json=False, **kwargs)
@ -1681,10 +1698,11 @@ class Daemon(AuthJSONRPCServer):
Get estimated cost for a lbry stream Get estimated cost for a lbry stream
Args: Args:
'name': lbry name 'name': (str) lbry name
'size': stream size, in bytes. if provided an sd blob won't be downloaded. 'size' (optional): (int) stream size, in bytes. if provided an sd blob
won't be downloaded.
Returns: Returns:
estimated cost (float) Estimated cost in lbry credits
""" """
cost = yield self.get_est_cost(name, size) cost = yield self.get_est_cost(name, size)
defer.returnValue(cost) defer.returnValue(cost)
@ -1695,18 +1713,21 @@ class Daemon(AuthJSONRPCServer):
Make a new name claim and publish associated data to lbrynet Make a new name claim and publish associated data to lbrynet
Args: Args:
'name': str, name to be claimed, string 'name': (str) name to be claimed, string
'bid': float, amount of credits to commit in this claim, 'bid': (float) amount of credits to commit in this claim,
'metadata': dict, Metadata compliant (can be missing sources if a file is provided) 'metadata': (dict) Metadata compliant (can be missing sources if a file is provided)
'file_path' (optional): str, path to file to be associated with name, if not given 'file_path' (optional): (str) path to file to be associated with name, if not given
the stream from your existing claim for the name will be used the stream from your existing claim for the name will be used
'fee' (optional): dict, FeeValidator compliant (i.e. {'LBC':{'amount':10}} ) 'fee' (optional): (dict) FeeValidator compliant (i.e. {'LBC':{'amount':10}} )
Returns: Returns:
'tx' : hex encoded transaction (dict) Dictionary containing result of the claim
'txid' : txid of resulting transaction {
'nout' : nout of the resulting support claim 'tx' : (str) hex encoded transaction
'fee' : fee paid for the claim transaction 'txid' : (str) txid of resulting claim
'claim_id' : claim id of the resulting transaction 'nout' : (int) nout of the resulting claim
'fee' : (float) fee paid for the claim transaction
'claim_id' : (str) claim ID of the resulting claim
}
""" """
log.info("Publish: %s", { log.info("Publish: %s", {
@ -1735,11 +1756,14 @@ class Daemon(AuthJSONRPCServer):
Abandon a name and reclaim credits from the claim Abandon a name and reclaim credits from the claim
Args: Args:
'txid': txid of claim, string 'txid': (str) txid of claim
'nout': nout of claim, integer 'nout': (int) nout of claim
Return: Return:
txid : txid of resulting transaction if succesful (dict) Dictionary containing result of the claim
fee : fee paid for the transaction if succesful {
txid : (str) txid of resulting transaction
fee : (float) fee paid for the transaction
}
""" """
try: try:
@ -1754,11 +1778,6 @@ class Daemon(AuthJSONRPCServer):
def jsonrpc_abandon_name(self, **kwargs): def jsonrpc_abandon_name(self, **kwargs):
""" """
DEPRECATED, use abandon_claim DEPRECATED, use abandon_claim
Args:
'txid': txid of claim, string
Return:
txid
""" """
return self.jsonrpc_abandon_claim(**kwargs) return self.jsonrpc_abandon_claim(**kwargs)
@ -1776,13 +1795,16 @@ class Daemon(AuthJSONRPCServer):
Support a name claim Support a name claim
Args: Args:
'name': name 'name': (str) name
'claim_id': claim id of claim to support 'claim_id': (str) claim ID of claim to support
'amount': amount to support by 'amount': (float) amount to support by
Return: Return:
txid : txid of resulting transaction if succesful (dict) Dictionary containing result of the claim
nout : nout of the resulting support claim if succesful {
fee : fee paid for the transaction if succesful txid : (str) txid of resulting support claim
nout : (int) nout of the resulting support claim
fee : (float) fee paid for the transaction
}
""" """
d = self.session.wallet.support_claim(name, claim_id, amount) d = self.session.wallet.support_claim(name, claim_id, amount)
@ -1800,7 +1822,7 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
'name': name to look up 'name': name to look up
Returns: Returns:
claim info, False if no such claim exists claim info, false if no such claim exists
""" """
d = self.session.wallet.get_my_claim(name) d = self.session.wallet.get_my_claim(name)
@ -1823,23 +1845,23 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns Returns
list of name claims owned by user (list) List of name claims owned by user
[ [
{ {
'address': address that owns the claim 'address': (str) address that owns the claim
'amount': amount assigned to the claim 'amount': (float) amount assigned to the claim
'blocks_to_expiration': number of blocks until it expires 'blocks_to_expiration': (int) number of blocks until it expires
'category': "claim", "update" , or "support" 'category': (str) "claim", "update" , or "support"
'claim_id': claim ID of the claim 'claim_id': (str) claim ID of the claim
'confirmations': number of blocks of confirmations for the claim 'confirmations': (int) number of blocks of confirmations for the claim
'expiration_height': the block height which the claim will expire 'expiration_height': (int) the block height which the claim will expire
'expired': True if expired, False otherwise 'expired': (bool) true if expired, false otherwise
'height': height of the block containing the claim 'height': (int) height of the block containing the claim
'is_spent': True if claim is abandoned, False otherwise 'is_spent': (bool) true if claim is abandoned, false otherwise
'name': name of the claim 'name': (str) name of the claim
'txid': txid of the cliam 'txid': (str) txid of the cliam
'nout': nout of the claim 'nout': (int) nout of the claim
'value': value of the claim 'value': (str) value of the claim
}, },
] ]
""" """
@ -1866,24 +1888,26 @@ class Daemon(AuthJSONRPCServer):
Get claims for a name Get claims for a name
Args: Args:
name: search for claims on this name 'name': (str) search for claims on this name
Returns Returns
(dict) State of claims assigned for the name
{ {
'claims': list of claims for the name 'claims': (list) list of claims for the name
[ [
{ {
'amount': amount assigned to the claim, not including supports 'amount': (float) amount assigned to the claim
'effective_amount': total amount assigned to the claim, including supports 'effective_amount': (float) total amount assigned to the claim,
'claim_id': claim ID of the claim including supports
'height': height of block containing the claim 'claim_id': (str) claim ID of the claim
'txid': txid of the claim 'height': (int) height of block containing the claim
'nout': nout of the claim 'txid': (str) txid of the claim
'supports': a list of supports attached to the claim 'nout': (int) nout of the claim
'value': the value of the claim 'supports': (list) a list of supports attached to the claim
'value': (str) the value of the claim
}, },
] ]
'supports_without_claims': list of supports without any claims attached to them 'supports_without_claims': (list) supports without any claims attached to them
'last_takeover_height': the height when the last takeover for the name happened 'last_takeover_height': (int) the height of last takeover for the name
} }
""" """
@ -1902,12 +1926,12 @@ class Daemon(AuthJSONRPCServer):
@AuthJSONRPCServer.auth_required @AuthJSONRPCServer.auth_required
def jsonrpc_transaction_list(self): def jsonrpc_transaction_list(self):
""" """
List transactions List transactions belonging to wallet
Args: Args:
None None
Returns: Returns:
list of transactions (list) List of transactions
""" """
d = self.session.wallet.get_history() d = self.session.wallet.get_history()
@ -1925,9 +1949,9 @@ class Daemon(AuthJSONRPCServer):
Get a decoded transaction from a txid Get a decoded transaction from a txid
Args: Args:
txid: txid hex string 'txid': (str) txid of transaction
Returns: Returns:
JSON formatted transaction (dict) JSON formatted transaction
""" """
d = self.session.wallet.get_transaction(txid) d = self.session.wallet.get_transaction(txid)
@ -1947,9 +1971,9 @@ class Daemon(AuthJSONRPCServer):
Checks if an address is associated with the current wallet. Checks if an address is associated with the current wallet.
Args: Args:
address: string 'address': (str) address to check in base58
Returns: Returns:
is_mine: bool (bool) true, if address is associated with current wallet
""" """
d = self.session.wallet.address_is_mine(address) d = self.session.wallet.address_is_mine(address)
@ -1969,9 +1993,9 @@ class Daemon(AuthJSONRPCServer):
Get public key from wallet address Get public key from wallet address
Args: Args:
wallet: wallet address, base58 'wallet': (str) wallet address in base58
Returns: Returns:
public key (str) Public key in hex encoding
""" """
d = self.session.wallet.get_pub_keys(wallet) d = self.session.wallet.get_pub_keys(wallet)
@ -1992,7 +2016,7 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns: Returns:
new wallet address, base 58 string (str) New wallet address in base58
""" """
def _disp(address): def _disp(address):
@ -2007,13 +2031,13 @@ class Daemon(AuthJSONRPCServer):
@AuthJSONRPCServer.auth_required @AuthJSONRPCServer.auth_required
def jsonrpc_send_amount_to_address(self, amount, address): def jsonrpc_send_amount_to_address(self, amount, address):
""" """
Send credits to an address Send credits to an address
Args: Args:
amount: the amount to send 'amount': (float) the amount to send
address: the address of the recipient 'address': (str) the address of the recipient in base58
Returns: Returns:
True if payment successfully scheduled (bool) true if payment successfully scheduled
""" """
reserved_points = self.session.wallet.reserve_points(address, amount) reserved_points = self.session.wallet.reserve_points(address, amount)
@ -2031,12 +2055,12 @@ class Daemon(AuthJSONRPCServer):
def jsonrpc_block_show(self, blockhash=None, height=None): def jsonrpc_block_show(self, blockhash=None, height=None):
""" """
Get contents of a block Get contents of a block
Args: Args:
blockhash: hash of the block to look up 'blockhash': (str) hash of the block to look up
Returns: Returns:
requested block (dict) Requested block
""" """
if blockhash is not None: if blockhash is not None:
@ -2065,14 +2089,14 @@ class Daemon(AuthJSONRPCServer):
Download and return a sd blob Download and return a sd blob
Args: Args:
sd_hash 'sd_hash': (str) hash of sd blob
timeout (optional) 'timeout'(optional): (int) timeout in number of seconds
payment_rate_manager (optional): if not given the default payment rate manager 'payment_rate_manager'(optional): (str) if not given the default payment rate manager
will be used. supported alternative rate managers: will be used. supported alternative rate managers:
only-free only-free
Returns Returns
Success/Fail message or decoded data (str) Success/Fail message or (dict) decoded data
""" """
payment_rate_manager = get_blob_payment_rate_manager(self.session, payment_rate_manager) payment_rate_manager = get_blob_payment_rate_manager(self.session, payment_rate_manager)
@ -2088,17 +2112,17 @@ class Daemon(AuthJSONRPCServer):
Download and return a blob Download and return a blob
Args: Args:
blob_hash 'blob_hash': (str) blob hash of blob to get
timeout (optional) 'timeout'(optional): (int) timeout in number of seconds
encoding (optional): by default no attempt at decoding is made 'encoding'(optional): (str) by default no attempt at decoding is made,
can be set to one of the following decoders: can be set to one of the following decoders:
json 'json'
payment_rate_manager (optional): if not given the default payment rate manager 'payment_rate_manager'(optional): if not given the default payment rate manager
will be used. supported alternative rate managers: will be used. supported alternative rate managers:
only-free 'only-free'
Returns Returns
Success/Fail message or decoded data (str) Success/Fail message or (dict) decoded data
""" """
decoders = { decoders = {
@ -2126,9 +2150,9 @@ class Daemon(AuthJSONRPCServer):
Delete a blob Delete a blob
Args: Args:
blob_hash 'blob_hash': (str) hash of blob to get
Returns: Returns:
Success/fail message (str) Success/fail message
""" """
if blob_hash not in self.session.blob_manager.blobs: if blob_hash not in self.session.blob_manager.blobs:
@ -2154,10 +2178,10 @@ class Daemon(AuthJSONRPCServer):
Get peers for blob hash Get peers for blob hash
Args: Args:
'blob_hash': blob hash 'blob_hash': (str) blob hash
'timeout' (int, optional): peer search timeout 'timeout'(optional): (int) peer search timeout in seconds
Returns: Returns:
List of contacts (list) List of contacts
""" """
timeout = timeout or conf.settings['peer_search_timeout'] timeout = timeout or conf.settings['peer_search_timeout']
@ -2180,7 +2204,7 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns: Returns:
(str) Success/fail message
""" """
d = self.session.blob_manager.immediate_announce_all_blobs() d = self.session.blob_manager.immediate_announce_all_blobs()
@ -2192,9 +2216,9 @@ class Daemon(AuthJSONRPCServer):
Reflect a stream Reflect a stream
Args: Args:
sd_hash: sd_hash of lbry file 'sd_hash': (str) sd_hash of lbry file
Returns: Returns:
True or traceback (bool) true if successful
""" """
d = self._get_lbry_file(FileID.SD_HASH, sd_hash, return_json=False) d = self._get_lbry_file(FileID.SD_HASH, sd_hash, return_json=False)
@ -2214,18 +2238,18 @@ class Daemon(AuthJSONRPCServer):
def jsonrpc_blob_list(self, uri=None, stream_hash=None, sd_hash=None, needed=None, def jsonrpc_blob_list(self, uri=None, stream_hash=None, sd_hash=None, needed=None,
finished=None, page_size=None, page=None): finished=None, page_size=None, page=None):
""" """
Returns blob hashes, if not given filters returns all blobs known by the blob manager Returns blob hashes. If not given filters, returns all blobs known by the blob manager
Args: Args:
uri (str, optional): filter by blobs in stream for winning claim 'uri' (optional): (str) filter by blobs in stream for winning claim
stream_hash (str, optional): filter by blobs in given stream hash 'stream_hash' (optional): (str) filter by blobs in given stream hash
sd_hash (str, optional): filter by blobs in given sd hash 'sd_hash' (optional): (str) filter by blobs in given sd hash
needed (bool, optional): only return needed blobs 'needed' (optional): (bool) only return needed blobs
finished (bool, optional): only return finished blobs 'finished' (optional): (bool) only return finished blobs
page_size (int, optional): limit number of results returned 'page_size' (optional): (int) limit number of results returned
page (int, optional): filter to page x of [page_size] results 'page' (optional): (int) filter to page x of [page_size] results
Returns: Returns:
list of blob hashes (list) List of blob hashes
""" """
if uri: if uri:
@ -2272,7 +2296,7 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns: Returns:
True (bool) true if successful
""" """
d = self.session.blob_manager.get_all_verified_blobs() d = self.session.blob_manager.get_all_verified_blobs()
@ -2285,13 +2309,13 @@ class Daemon(AuthJSONRPCServer):
""" """
Get stream availability for a winning claim Get stream availability for a winning claim
Arg: Args:
name (str): lbry name 'name' : (str) lbry name
sd_timeout (int, optional): sd blob download timeout 'sd_timeout' (optional): (int) sd blob download timeout
peer_timeout (int, optional): how long to look for peers 'peer_timeout' (optional): (int) how long to look for peers
Returns: Returns:
peers per blob / total blobs (float) Peers per blob / total blobs
""" """
def _get_mean(blob_availabilities): def _get_mean(blob_availabilities):
@ -2349,7 +2373,7 @@ class Daemon(AuthJSONRPCServer):
Args: Args:
None None
Returns: Returns:
Startup message, such as first run notification (str) Startup message, such as first run notification
""" """
def _get_startup_message(status): def _get_startup_message(status):