I've the following source code structure
testapp/
├─ __init__.py
├─ testmsg.py
├─ sub/
│ ├─ __init__.py
│ ├─ testprinter.py
where testmsg
defines the following constant:
MSG = "Test message"
and sub/testprinter.py
:
import testmsg
print("The message is: {0}".format(testmsg.MSG))
But I'm getting ImportError: No module named testmsg
Shouldn't it be working since the package structure? I don't really want to extend sys.path in each submodule and I don't even want to use relative import.
What am I doing wrong here?
python sub/testprinter.py
, but alsopython testprinter.py
withinsub
directory doesn't work. – Drugge