SwapStation_Dashboard/utils.py

13 lines
430 B
Python

import sys
import os
def resource_path(relative_path):
""" Get absolute path to resource, works for dev and for PyInstaller """
try:
# PyInstaller creates a temp folder and stores path in _MEIPASS
base_path = sys._MEIPASS
except Exception:
# If not running as a bundled exe, use the normal script path
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)