This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mike Roberts ed3c131ca8 Allow comments in rule definitions 4 years ago
..
relative-imports Examples: add import example 5 years ago
standalone Updated standalone example 5 years ago
README.md Docs: Fixup 5 years ago
__init__.py Added examples (calc, json) 7 years ago
calc.py Improved documentation and code style (minor) 6 years ago
conf_earley.py Improved documentation and code style (minor) 6 years ago
conf_lalr.py Improved documentation and code style (minor) 6 years ago
custom_lexer.py Added Token.end_pos, and updated docs regarding recent commits 4 years ago
error_reporting_lalr.py Fixed examples for error reporting 6 years ago
fruitflies.png Improved Readme 6 years ago
fruitflies.py Improved Readme 6 years ago
indented_tree.py Added option to provide a custom lexer (with example) 6 years ago
json_parser.py Improved documentation and code style (minor) 6 years ago
lark.lark Allow comments in rule definitions 4 years ago
lark_grammar.py Examples: add import example 5 years ago
python2.lark Trimmed whitespaces and ensured a new line on the end of the file 5 years ago
python3.lark Fixed IMAG_NUMBER in the Python3 grammar (Issue #387) 5 years ago
python_parser.py Merge branch 'file-ext-change' of https://github.com/RobRoseKnows/lark into RobRoseKnows-file-ext-change 6 years ago
qscintilla_json.py Improved docs 6 years ago
reconstruct_json.py propagate_positions & maybe_placeholders are now true by default, updated docs, tests & examples accordingly (Issue #449, #451) 4 years ago
turtle_dsl.py Earley now uses dynamic lexer by default. Bump to version 0.3.0 7 years ago

README.md

Examples for Lark

How to run the examples

After cloning the repo, open the terminal into the root directory of the project, and run the following:

[lark]$ python -m examples.<name_of_example>

For example, the following will parse all the Python files in the standard library of your local installation:

[lark]$ python -m examples.python_parser

Beginners

  • calc.py - A simple example of a REPL calculator
  • json_parser.py - A simple JSON parser (comes with a tutorial, see docs)
  • indented_tree.py - A demonstration of parsing indentation (“whitespace significant” language)
  • fruitflies.py - A demonstration of ambiguity
  • turtle_dsl.py - Implements a LOGO-like toy language for Python’s turtle, with interpreter.
  • lark_grammar.py + lark.lark - A reference implementation of the Lark grammar (using LALR(1) + standard lexer)

Advanced

  • error_reporting_lalr.py - A demonstration of example-driven error reporting with the LALR parser
  • python_parser.py - A fully-working Python 2 & 3 parser (but not production ready yet!)
  • conf_lalr.py - Demonstrates the power of LALR’s contextual lexer on a toy configuration language
  • conf_earley.py - Demonstrates the power of Earley’s dynamic lexer on a toy configuration language
  • custom_lexer.py - Demonstrates using a custom lexer to parse a non-textual stream of data
  • reconstruct_json.py - Demonstrates the experimental text-reconstruction feature