Rv reload module without restart RV

Hi folks, while modifying my custom .py files i always restarting RV in order to reload modules which is time consuming.
Any way to reload modules without restarting RV?
Thank you.

As a possibility, for a cheap cheat, you could add:

reload(thisModule)

or py3:

import imp
imp.reload(thisModule) 

in the first line of the function your package calls, then comment it out for the delivered package (“thisModule” being the name of your py module you want to reload, of course).

1 Like

Thank you. Will give it a go.

Unfortunately did not work. Tried in every possible way and location.
Thank you.