I'm trying to follow the example given in readme and I get a "event_parser not found error" from python interpreter. It looks like python needs all recurrent files to be explicitly imported even within the same package. It worked after I modified init.py to import event_parser as recurrent.event_parser and modified event_parser.py to import constansts.py explicitly. Is this some kind of 2.7 to 3.0 artifact ? (I'm new to python)
I'm trying to follow the example given in readme and I get a "event_parser not found error" from python interpreter. It looks like python needs all recurrent files to be explicitly imported even within the same package. It worked after I modified init.py to import event_parser as recurrent.event_parser and modified event_parser.py to import constansts.py explicitly. Is this some kind of 2.7 to 3.0 artifact ? (I'm new to python)
Thanks, OG