Move into package

This commit is contained in:
CPD 2025-03-05 14:35:46 +01:00
parent f99ecf4822
commit d6bd9b9818
3 changed files with 8 additions and 0 deletions

View 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"))

View File

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB