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.
 
 
 
pywiki/pyhmy/__init__.py

18 lines
614 B

import sys
import warnings
from ._version import __version__
from .util import Typgpy, get_gopath, get_goversion, get_bls_build_variables, json_load
if sys.version_info.major < 3:
warnings.simplefilter("always", DeprecationWarning)
warnings.warn(
DeprecationWarning("`pyhmy` does not support Python 2. Please use Python 3.")
)
warnings.resetwarnings()
if sys.platform.startswith("win32") or sys.platform.startswith("cygwin"):
warnings.simplefilter("always", ImportWarning)
warnings.warn(ImportWarning("`pyhmy` does not work on Windows or Cygwin."))
warnings.resetwarnings()