I used pip to install two libraries I need, which are related in what they do but cannot dispose any of them. The problem is that once unpacked, they have the same name and the functionalities in both of them are imported as:
import the_package
from the_package import a, b
Update: I mean to import the_package in any of the previous ways, not necessarily both nor in sequence.
Since I install them via pip, and are installed from a requirements file so my teammates can install them the same way I guess renaming packages/modules is not an option (if it is, I appreciate pointing how to do it automatically)
One thing I came up with was giving pip some option that would install the packages in directories with some sort of alias/prefix so their names could be different, but pip docs didn't come much in handy for me.
Thanks in advance for any help :D