How do you import python .egg files that are stored in a relative location to the .py code?
For example,
My Application/
My Application/library1.egg
My Application/libs/library2.egg
My Application/test.py
How do you import and use library1 and library2 from within test.py, while leaving the .egg libraries in-place?
An .egg is just a .zip file that acts like a directory from which you can import stuff.
You can use the
PYTHONPATHvariable to add the.eggto your path, or append a directory tosys.path. Another option is to use a.pthfile pointing to the eggs.For more info see A Small Introduction to Python eggs, Python Eggs and All about eggs.
For example, if your
library1.eggcontains a package namedfoo, and you addlibrary1.eggtoPYTHONPATH, you can simplyimport fooIf you can’t set
PYTHONPATH, you can write: