I have a module parser.py in local directory with
class Parser(object):
. . . .
. . . .
class Parser2(object):
. . . .
. . . .
I'd like to import those in mainScript.py, however i'm getting an
error no name 'Parser' in module parser
from parser import Parser
parser?import parser; is it just when youfrom parser import Parserthat you get problems? Doesparser.__file__give the expected location?