In my project I have a directory (./Mylibs) with all my own libraries. To import them I simply write:
from Mylibs import configure, db, logger
This works fine. But during the execution I need to change something in the configure.py library and need this changes reimported. Therefor I did:
import importlib
importlib.reload(configure)
But this didn't work and I can't use the changes in my code. What did I do wrong?