I want to make changes to a file, and I want it to reflect in real-time without restarting my program and losing all the memory states.
Suppose I imported a function like this:
from A.B.C.foo import bar
There are multiple imports like this in multiple files.
How do I reload all of them? (Or say, just one)