I have the package structure:
`-- mysite/
|-- __init__.py
|--test.py
`-- app/
|-- __init__.py
`-- start.py
In the start.py file I do
from mysite.test import runit
runit()
I also tried
from mysite import test
test.runit()
I get No Module Named mysite
The sys.path:
/home/jahmul14/mysite/app
/usr/lib/python3.5
/usr/lib/python3.5/plat-x86_64-linux-gnu
/usr/lib/python3.5/lib-dynload
/usr/local/lib/python3.5/dist-packages
/usr/lib/python3/dist-packages
/home/jahmul14/mysite
Not sure what I am doing wrong.