1
0
Files
electrum/contrib/print_electrum_version.py

23 lines
829 B
Python
Executable File

#!/usr/bin/python3
# For usage in shell, to get the version of electrum, without needing electrum installed.
# For example:
# $ VERSION=$("$CONTRIB"/print_electrum_version.py)
# instead of
# $ VERSION=$(python3 -c "import electrum; print(electrum.version.ELECTRUM_VERSION)")
import importlib.util
import os
if __name__ == '__main__':
project_root = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
version_file_path = os.path.join(project_root, "electrum", "version.py")
# load version.py; needlessly complicated alternative to "imp.load_source":
version_spec = importlib.util.spec_from_file_location('version', version_file_path)
version_module = version = importlib.util.module_from_spec(version_spec)
version_spec.loader.exec_module(version_module)
print(version.ELECTRUM_VERSION)