Hi,
I have a file called tester.py
, located on /project
.
/project
has a subdirectory called lib
, with has a file called BoxTime.py
:
/project/tester.py
/project/lib/BoxTime.py
I want to import BoxTime
from tester
. I have tried this:
import lib.BoxTime
Which resulted:
Traceback (most recent call last):
File "./tester.py", line 3, in <module>
import lib.BoxTime
ImportError: No module named lib.BoxTime
Any ideas how to import BoxTime
from the subdirectory?
EDIT
The init.py was the problem, but don't forget to refer to BoxTime
is lib.BoxTome
, or use:
import lib.BoxTime as BT
...
BT.bt_function()
Thanks,
Udi