A Python library for interacting and working with the Woop blockchain.
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.
|
import pyhmy
|
|
from pyhmy.util import download_cli
|
|
from pyhmy.logging import ControlledLogger
|
|
|
|
if __name__ == "__main__":
|
|
# download_cli("test")
|
|
logger = ControlledLogger("test", "logs/")
|
|
CLI = pyhmy.HmyCLI(environment=pyhmy.get_environment())
|
|
z = pyhmy.get_goversion()
|
|
|
|
|