My structure of file is
foo/
__init__.py
bar.py
file __init__.py
def abc():
print 'ABC'
file bar.py
from foo import abc
I got this error.
Traceback (most recent call last):
File "foo/bar.py", line 1, in <module>
from foo import abc
ImportError: No module named foo
from __init__.py import abcthen its working is this okey ? – Lafada Jul 25 '11 at 9:08abcas a user module name because it already exists as a standard python module. – Cédric Julien Jul 25 '11 at 9:10