Skip to content

Commit 6643a15

Browse files
committed
Update README
1 parent 438820a commit 6643a15

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Lark-Cython
22

3-
Cython plugin for Lark, reimplementing the LALR parser & lexer for better performance on CPython.
3+
Cython plugin for [Lark](https://github.com/lark-parser/lark), reimplementing the LALR parser & lexer for better performance on CPython.
44

5-
**WIP**
5+
Install:
6+
7+
```python
8+
pip install lark-cython
9+
```
610

711
Usage:
812

@@ -14,6 +18,9 @@ parser = Lark(grammar, parser="lalr", _plugins=lark_cython.plugins)
1418
# Use Lark as you usually would, with a huge performance boost
1519
```
1620

21+
See the [examples](https://github.com/lark-parser/lark_cython/tree/master/examples) for more.
22+
23+
1724
## Differences from Lark
1825

1926
- `Token` instances do not inherit from `str`. You must use the `value` attribute to get the string.

0 commit comments

Comments
 (0)