Is there a way to get python to read modules from a network?
We have many machines and it would be a too much effort to update each machine manually each time I cha
It might be notable that a module for importing packages/modules available through HTTP/S exists and it is httpimport. This is for both Python2 and Python3.
So, as of the accepted answer, it turns out that there are ways to programmatically import remote modules "like javascript" as follows:
>>> with httpimport.remote_repo(['package1'], 'http://my-codes.example.com/python_packages'):
... import package1
...
>>> # -- 'package1' code is available here --