mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-23 03:51:39 +00:00
16 lines
519 B
Python
16 lines
519 B
Python
import os
|
|
import sys
|
|
|
|
|
|
def resource_path(relative_path: str) -> str:
|
|
"""
|
|
Get the absolute path to a resource in a manner friendly to PyInstaller.
|
|
PyInstaller creates a temp folder and stores path in _MEIPASS which this function swaps
|
|
into a resource path so it is available both when building binaries and running natively.
|
|
"""
|
|
try:
|
|
base_path = sys._MEIPASS # type: ignore
|
|
except Exception:
|
|
base_path = os.path.abspath(".")
|
|
return os.path.join(base_path, relative_path)
|