Open wwentland opened 6 years ago
I've been experiencing a similar problem. If I try to use the unstable parser as a module I see the following error:
Traceback (most recent call last):
...
File "/some_path/unstable_parser.py", line 15, in <module>
from parser import Configurable
ImportError: cannot import name Configurable
The codebase contains
parser/__init__.py
which shadows a module of the same name in the standard library.As this makes it hard/impossible to import the modules used by Parser-v2, it would be much appreciated if you could rename
parser
to, say,unstableparser
.