Suppose I have a module foo.py and a package foo/. If I call
import foo
which one will be loaded? How can I specify I wand to load the module, or the package?
|
|
|
I believe the package will always get loaded. You can't work around this, as far as I know. So change either the package or the module name. Docs: http://docs.python.org/tutorial/modules.html#the-module-search-path |
|||
|
|
|
Actually, it is possible (this code is not well tested, but seems to work). File foo.py
File foo/init.py
File test1.py
File test2.py
Running
|
|||
|
|
|
Maybe you want to move your classes from This way you'll be able to import them from the package as well as importing optional subpackages: File
File
Nonetheless I would like somebody to double-check this approach and let me know if it's correct or the |
||||
|
|