Is there a python parser generator that is similar to JavaCC from webgain?

Martin v. Loewis martin at v.loewis.de
Sun Feb 24 03:25:03 EST 2002


Fernando Pereira <pereira at cis.upenn.edu> writes:

> JavaCC takes grammar specs (lexical patterns and rules) and produces a
> parser (a Java class) using a LL(k)-type of rule compilation (that is,
> deterministic recursive descent with lookahead).

Ok, I guess the closest thing for Python like this is YAPPS:

http://theory.stanford.edu/~amitp/Yapps/

Regards,
Martin



More information about the Python-list mailing list