Every time I make a change to a python script I have to reload python and re-import the module. Please advise how I can modify my scripts and run then without having to rela
If it's just some module that's changing, you can call reload(module) in your script.