Spaces:
Running
Running
File size: 360 Bytes
b7b041e |
1 2 3 4 5 6 7 8 9 10 11 12 |
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:
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path) |