You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
542 B
19 lines
542 B
import pyhmy
|
|
from pyhmy.util import download_cli
|
|
from pyhmy.logging import ControlledLogger
|
|
from pyhmy import cli
|
|
|
|
if __name__ == "__main__":
|
|
download_cli("test")
|
|
print(cli.get_version())
|
|
print(cli.get_binary_path())
|
|
print(cli.get_account_keystore_path())
|
|
print(cli.single_call("hmy keys list"))
|
|
logger = ControlledLogger("test", "logs/")
|
|
print(pyhmy.get_goversion())
|
|
logger.info("test info")
|
|
logger.debug("test debug")
|
|
logger.error("test error")
|
|
logger.warning("test warning")
|
|
logger.write()
|
|
|
|
|