2017-08-04 13:55:24 +00:00
# Lark - a modern parsing library for Python
2017-02-05 11:23:18 +00:00
2017-08-04 13:55:24 +00:00
Parse any context-free grammar, FAST and EASY!
2017-02-05 11:23:18 +00:00
2018-01-24 12:44:09 +00:00
**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.
2017-03-08 23:06:43 +00:00
2018-01-24 12:44:09 +00:00
**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.
2017-02-05 11:23:18 +00:00
2017-08-04 13:55:24 +00:00
Lark can:
2017-02-05 11:23:18 +00:00
2017-10-31 17:48:24 +00:00
- Parse all context-free grammars, and handle all ambiguity
2017-08-04 13:58:55 +00:00
- Build a parse-tree automagically, no construction code required
2017-10-31 17:48:24 +00:00
- Outperform all other Python libraries when using LALR(1) (Yes, including PLY)
2017-08-04 13:58:55 +00:00
- Run on every Python interpreter (it's pure-python)
2018-01-10 12:45:56 +00:00
- Generate a stand-alone parser (for LALR(1) grammars)
2017-02-05 11:23:18 +00:00
2017-08-04 13:55:24 +00:00
And many more features. Read ahead and find out.
2017-02-05 11:23:18 +00:00
2017-10-31 17:48:24 +00:00
Most importantly, Lark will save you time and prevent you from getting parsing headaches.
2017-10-31 17:44:20 +00:00
### Quick links
2017-10-31 17:51:15 +00:00
- [Documentation wiki ](https://github.com/erezsh/lark/wiki )
2017-10-31 17:44:20 +00:00
- [Tutorial ](/docs/json_tutorial.md ) for writing a JSON parser.
2018-06-27 13:37:41 +00:00
- [Cheatsheet (PDF) ](/docs/lark_cheatsheet.pdf )
2017-10-31 17:44:20 +00:00
- Blog post: [How to write a DSL with Lark ](http://blog.erezsh.com/how-to-write-a-dsl-in-python-with-lark/ )
2018-02-28 09:10:13 +00:00
- [Forum @googlegroups ](https://groups.google.com/forum/#!forum/lark-parser ) (New)
2018-08-28 10:31:42 +00:00
- [Gitter chat ](https://gitter.im/lark-parser/Lobby ) (New)
2017-02-05 11:23:18 +00:00
2017-11-02 11:47:05 +00:00
### Install Lark
$ pip install lark-parser
Lark has no dependencies.
2018-05-17 09:57:04 +00:00
[![Build Status ](https://travis-ci.org/lark-parser/lark.svg?branch=master )](https://travis-ci.org/lark-parser/lark)
2017-11-02 12:23:43 +00:00
2018-06-27 13:37:41 +00:00
### Syntax Highlighting (new)
Lark now provides syntax highlighting for its grammar files (\*.lark):
- [Sublime Text & TextMate ](https://github.com/lark-parser/lark_syntax )
- [vscode ](https://github.com/lark-parser/vscode-lark )
2017-03-05 12:44:46 +00:00
### Hello World
2017-02-08 10:19:10 +00:00
Here is a little program to parse "Hello, World!" (Or any other similar phrase):
```python
from lark import Lark
2018-06-27 13:37:41 +00:00
2017-02-08 10:19:10 +00:00
l = Lark('''start: WORD "," WORD "!"
2018-06-27 13:37:41 +00:00
%import common.WORD // imports from terminal library
%ignore " " // Disregard spaces in text
2017-02-08 10:19:10 +00:00
''')
2018-06-27 13:37:41 +00:00
2017-02-08 10:19:10 +00:00
print( l.parse("Hello, World!") )
```
And the output is:
```python
2017-02-11 13:51:47 +00:00
Tree(start, [Token(WORD, 'Hello'), Token(WORD, 'World')])
2017-02-08 10:19:10 +00:00
```
Notice punctuation doesn't appear in the resulting tree. It's automatically filtered away by Lark.
2017-11-04 19:12:42 +00:00
### Fruit flies like bananas
2017-04-18 00:14:22 +00:00
2018-06-27 13:37:41 +00:00
Lark is great at handling ambiguity. Let's parse the phrase "fruit flies like bananas":
2017-04-18 00:14:22 +00:00
![fruitflies.png ](examples/fruitflies.png )
2017-10-31 17:51:15 +00:00
See more [examples in the wiki ](https://github.com/erezsh/lark/wiki/Examples )
2017-04-18 00:14:22 +00:00
2017-02-05 11:23:18 +00:00
2017-02-11 13:51:47 +00:00
2017-11-04 19:12:42 +00:00
## List of main features
2017-11-02 12:23:43 +00:00
- Builds a parse-tree (AST) automagically, based on the structure of the grammar
- **Earley** parser
2018-01-09 15:00:53 +00:00
- Can parse all context-free grammars
- Full support for ambiguous grammars
2017-11-02 12:23:43 +00:00
- **LALR(1)** parser
2018-01-10 12:45:56 +00:00
- Fast and light, competitive with PLY
- Can generate a stand-alone parser
2018-01-24 12:44:09 +00:00
- **CYK** parser, for highly ambiguous grammars (NEW! Courtesy of [ehudt ](https://github.com/ehudt ))
2017-11-02 12:23:43 +00:00
- **EBNF** grammar
- **Unicode** fully supported
- **Python 2 & 3** compatible
- Automatic line & column tracking
- Standard library of terminals (strings, numbers, names, etc.)
- Import grammars from Nearley.js
- Extensive test suite [![codecov ](https://codecov.io/gh/erezsh/lark/branch/master/graph/badge.svg )](https://codecov.io/gh/erezsh/lark)
- And much more!
See the full list of [features in the wiki ](https://github.com/erezsh/lark/wiki/Features )
2017-11-02 13:05:00 +00:00
### Comparison to other libraries
#### Performance comparison
2017-11-02 12:23:43 +00:00
2018-01-09 15:00:53 +00:00
Lark is the fastest and lightest (lower is better)
2017-11-02 14:04:41 +00:00
![Run-time Comparison ](docs/comparison_runtime.png )
![Memory Usage Comparison ](docs/comparison_memory.png )
2017-11-02 12:23:43 +00:00
Check out the [JSON tutorial ](/docs/json_tutorial.md#conclusion ) for more details on how the comparison was made.
2017-11-02 14:04:41 +00:00
*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!*
2017-11-02 12:23:43 +00:00
2017-11-02 13:05:00 +00:00
#### Feature comparison
2017-11-02 12:23:43 +00:00
2018-01-10 12:45:56 +00:00
| 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 ](http://www.dabeaz.com/ply/ ) | LALR(1) | BNF | No | No | No | No | No |
| [PyParsing ](http://pyparsing.wikispaces.com/ ) | PEG | Combinators | No | No | No\* | No | No |
| [Parsley ](https://pypi.python.org/pypi/Parsley ) | PEG | EBNF | No | No | No\* | No | No |
| [funcparserlib ](https://github.com/vlasovskikh/funcparserlib ) | Recursive-Descent | Combinators | No | No | No | No | No |
| [Parsimonious ](https://github.com/erikrose/parsimonious ) | PEG | EBNF | Yes | No | No\* | No | No |
2018-06-20 15:59:13 +00:00
| [ANTLR ](https://github.com/antlr/antlr4 ) | LL(*) | EBNF | Yes | No | Yes? | Yes | No |
2017-11-02 12:23:43 +00:00
2018-01-10 12:45:56 +00:00
(\* *PEGs cannot handle non-deterministic grammars. Also, according to Wikipedia, it remains unanswered whether PEGs can really parse all deterministic CFGs* )
2017-11-02 12:23:43 +00:00
2017-04-14 08:10:20 +00:00
### Projects using Lark
2017-05-24 13:12:07 +00:00
- [mappyfile ](https://github.com/geographika/mappyfile ) - a MapFile parser for working with MapServer configuration
- [pytreeview ](https://gitlab.com/parmenti/pytreeview ) - a lightweight tree-based grammar explorer
2018-09-05 15:31:18 +00:00
- [tartiflette ](https://github.com/dailymotion/tartiflette ) - a GraphQL engine by Dailymotion (Lark is used to parse the GraphQL schemas definitions)
2017-04-14 08:10:20 +00:00
Using Lark? Send me a message and I'll add your project!
### How to use Nearley grammars in Lark
Lark comes with a tool to convert grammars from [Nearley ](https://github.com/Hardmath123/nearley ), a popular Earley library for Javascript. It uses [Js2Py ](https://github.com/PiotrDabkowski/Js2Py ) to convert and run the Javascript postprocessing code segments.
Here's an example:
```bash
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:
```python
>>> import ncalc
>>> ncalc.parse('sin(pi/4) ^ e')
0.38981434460254655
```
2017-03-05 12:39:52 +00:00
2017-02-05 11:23:18 +00:00
## License
2017-03-05 12:39:52 +00:00
Lark uses the [MIT license ](LICENSE ).
2017-02-05 11:23:18 +00:00
2017-05-27 14:19:36 +00:00
## Contribute
Lark is currently accepting pull-requests.
There are many ways you can help the project:
2018-06-27 13:37:41 +00:00
* Help solve issues
2017-11-02 11:47:05 +00:00
* Improve the documentation
2017-05-27 14:19:36 +00:00
* Write new grammars for Lark's library
* Write a blog post introducing Lark to your audience
2017-11-02 11:47:05 +00:00
* Port Lark to another language
* Help me with code developemnt
2017-05-27 14:19:36 +00:00
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.
2017-02-05 11:23:18 +00:00
## Contact
2017-05-27 14:19:36 +00:00
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.
2018-04-23 07:20:43 +00:00
-- [Erez ](https://github.com/erezsh )