Showing only posts tagged Python. Show all posts.

Parsing in Python Compendium

A link collection of parsing for Python.

  • https://tomassetti.me/parsing-in-python/

Feature comparison

Library Algorithm Grammar Builds tree? Supports ambiguity? Can handle every CFG? Line/Column tracking Generates Stand-alone License
ANTLR LL(*) EBNF Yes No Yes? Yes No Proprietary
Lark Earley/LALR(1) EBNF Yes Yes Yes Yes Yes (LALR …