forked from LBRYCommunity/lbry-sdk
a5362f3170
-set_settings accepts a dict of settings -adds upload_log field, defaulting on true, this uploads the lbry log file to lbry.io to help figure out if and where things aren’t working -default_download_directory is the key of the path where files are saved -gets publish working with sources -adds check_first_run function, returns True/False -previously only is_running would work during startup, check_first_run, get_time_behind_blockchain, and stop have been added -requires six 1.9, 1.10.0 produced errors
8 lines
151 B
Python
8 lines
151 B
Python
import logging
|
|
|
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
|
|
|
|
|
version = (0, 2, 1)
|
|
__version__ = ".".join([str(x) for x in version])
|