Importing package as a submodule
- by wecac
Hi,
I have a package 3rd party open source package "foo"; that is in beta phase and I want to tweak it to my requirements. So I don't want to get it installed in /usr/local/lib/python or anywhere in current sys.path as I can't make frequent changes in top level packages.
foo/
__init__.py
fmod1.py
import foo.mod2
fmod2.py
…