Skip to content

Instantly share code, notes, and snippets.

@ttt-fifo
ttt-fifo / __init__.py
Last active June 10, 2022 13:51
Python >= 3.7 Dynamic Load Recipe
"""
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'