Hi !
I was wondering if it was possible to import a library in python, and completely change its name.
say i need to do :
import plop.blah.wii
but I want it to be recognized as foo.bar.yeah
something like
import plop.blah.wii as foo.bar.yeah
Any idea how can this be done ?
When unpickling an object, Python expects a library that I have under plop.blah.wii
, and I can't change that name .. but the pickle wants it to be foo.bar.yeah
.
Thanks a lot for your help. Sorry for the confusion. It's been confusing me for a while now ..
Martin