Erez Shinan bc159cd364 | 6 years ago | |
---|---|---|
docs | 7 years ago | |
examples | 6 years ago | |
lark | 6 years ago | |
tests | 6 years ago | |
.gitmodules | 7 years ago | |
.travis.yml | 6 years ago | |
LICENSE | 7 years ago | |
MANIFEST.in | 6 years ago | |
README.md | 6 years ago | |
nearley-requirements.txt | 7 years ago | |
setup.cfg | 7 years ago | |
setup.py | 6 years ago |
Parse any context-free grammar, FAST and EASY!
Beginners: Lark is not just another parser. It can parse any grammar you throw at it, no matter how complicated or ambiguous, and do so efficiently. It also constructs a parse-tree for you, without additional code on your part.
Experts: Lark lets you choose between Earley and LALR(1), to trade-off power and speed. It also contains a CYK parser and experimental features such as a contextual-lexer.
Lark can:
And many more features. Read ahead and find out.
Most importantly, Lark will save you time and prevent you from getting parsing headaches.
$ pip install lark-parser
Lark has no dependencies.
Here is a little program to parse “Hello, World!” (Or any other similar phrase):
from lark import Lark
l = Lark('''start: WORD "," WORD "!"
%import common.WORD
%ignore " "
''')
print( l.parse("Hello, World!") )
And the output is:
Tree(start, [Token(WORD, 'Hello'), Token(WORD, 'World')])
Notice punctuation doesn’t appear in the resulting tree. It’s automatically filtered away by Lark.
Lark is very good at handling ambiguity. Here’s how it parses the phrase “fruit flies like bananas”:
See more examples in the wiki
See the full list of features in the wiki
Lark is the fastest and lightest (lower is better)
Check out the JSON tutorial for more details on how the comparison was made.
Note: I really wanted to add PLY to the benchmark, but I couldn’t find a working JSON parser anywhere written in PLY. If anyone can point me to one that actually works, I would be happy to add it!
Library | Algorithm | Grammar | Builds tree? | Supports ambiguity? | Can handle every CFG? | Line/Column tracking | Generates Stand-alone |
---|---|---|---|---|---|---|---|
Lark | Earley/LALR(1) | EBNF | Yes! | Yes! | Yes! | Yes! | Yes! (LALR only) |
PLY | LALR(1) | BNF | No | No | No | No | No |
PyParsing | PEG | Combinators | No | No | No* | No | No |
Parsley | PEG | EBNF | No | No | No* | No | No |
funcparserlib | Recursive-Descent | Combinators | No | No | No | No | No |
Parsimonious | PEG | EBNF | Yes | No | No* | No | No |
(* PEGs cannot handle non-deterministic grammars. Also, according to Wikipedia, it remains unanswered whether PEGs can really parse all deterministic CFGs)
Using Lark? Send me a message and I’ll add your project!
Lark comes with a tool to convert grammars from Nearley, a popular Earley library for Javascript. It uses Js2Py to convert and run the Javascript postprocessing code segments.
Here’s an example:
git clone https://github.com/Hardmath123/nearley
python -m lark.tools.nearley nearley/examples/calculator/arithmetic.ne main nearley > ncalc.py
You can use the output as a regular python module:
>>> import ncalc
>>> ncalc.parse('sin(pi/4) ^ e')
0.38981434460254655
Lark uses the MIT license.
Lark is currently accepting pull-requests.
There are many ways you can help the project:
If you’re interested in taking one of these on, let me know and I will provide more details and assist you in the process.
If you have any questions or want my assistance, you can email me at erezshin at gmail com.
I’m also available for contract work.