Code: Select all
importlib.resources.path
Code: Select all
import importlib.resources
import anchor # Some module
with importlib.resources.path(anchor) as path:
print(path)
Code: Select all
importlib.resources.path
Code: Select all
import importlib.resources
import anchor # Some module
with importlib.resources.path(anchor) as path:
print(path)