__init__.py
import importlib importlib.reload(nameOfModule)s
Reimport a module while interactive
How do I reimport a module? I want to reimport a module after making changes to its .py file.
https://stackoverflow.com/questions/1254370/reimport-a-module-while-interactive

Seonglae Cho