This is a python newbie question:
I have the following directory structure:
test
-- test_file.py
a
-- b
-- module.py
where test
, a
and b
are folders. Both test
and a
are on the same level.
module.py has a class called shape
, and I want to instantiate an instance of it in test_file.py. How can I do so?
I have tried:
from a.b import module
but I got:
ImportError: No module named a.b
What you want is a relative import like:
from ..a.b import module
The problem with this is that it doesn't work if you are calling test_file.py as your main module. As stated here:
Note that both explicit and implicit relative imports are based on the name of the current module. Since the name of the main module is always "main", modules intended for use as the main module of a Python application should always use absolute imports.
So, if you want to call test_file.py
as your main module, then you should consider changing the structure of your modules and using an absolute import, else just use the relative import from above.
The directory a
needs to be a package. Add an __init__.py
file to make it a package, which is a step up from being a simple directory.
The directory b
also needs to be a subpackage of a
. Add an __init__.py
file.
The directory test
should probably also be a package. Hard to say if this is necessary or not. It's usually a good idea for every directory of Python modules to be a formal package.
In order to import
, the package needs to be on sys.path
; this is built from the PYTHONPATH
environment variable. By default the installed site-packages and the current working directory are (effectively) the only two places where a package can be found.
That means that a
must either be installed, or, your current working directory must also be a package one level above a
.
OR, you need to set your PYTHONPATH
environment variable to include a
.
http://docs.python.org/tutorial/modules.html#the-module-search-path
http://docs.python.org/using/cmdline.html#envvar-PYTHONPATH
Also, http://docs.python.org/library/site.html for complete information on how sys.path
is built.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With