Is there a Python extension that would allow me to import remote functions and objects with the same syntax that I import now from files? I'm thinking of something like:
from com.coolmaps.drawing.v21 import draw_map
Then when later in my code i call draw_map
, that automatically would be translated to mean a remote method call on that given server.
Wouldn't that be cool?