lbry-sdk/lbrynet/__init__.py
Jack a5362f3170 daemon settings
-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
2016-04-07 03:12:09 -04:00

9 lines
151 B
Python

import logging
logging.getLogger(__name__).addHandler(logging.NullHandler())
version = (0, 2, 1)
__version__ = ".".join([str(x) for x in version])