Is it possible to import a and import b, but have functions from both a and b under a different name?
Example
under a.py there is function jopen()
under b.py there is function ropen()
i want be able to call both of them from c:
c.jopen()
c.ropen()