Move into package
This commit is contained in:
parent
f99ecf4822
commit
d6bd9b9818
8
cpdctrl_gui/resources/__init__.py
Normal file
8
cpdctrl_gui/resources/__init__.py
Normal file
@ -0,0 +1,8 @@
|
||||
from importlib.resources import files, as_file
|
||||
from os import path
|
||||
|
||||
def get_resource_path(module: str, name: str) -> str:
|
||||
with as_file(files(module)) as file:
|
||||
p = path.join(file, name)
|
||||
return p
|
||||
# print(get_resource_path("resources", "about.md"))
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Loading…
x
Reference in New Issue
Block a user