This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Python Dynamic Load Recipe | |
for Python >= 3.7 | |
See https://github.com/ttt-fifo/python-dynamicload for details | |
""" | |
import importlib.resources | |
# Change your dynamic imports here -------------------------------------------- | |
# - As you would normally import your modules, functions, classes, etc. | |
# - But you should end every import with '... as somename' |