This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Erez Sh 47316488dd Merge branch 'grammars-lark-lark' of https://github.com/MegaIng/lark into MegaIng-grammars-lark-lark 3 yıl önce
..
advanced Earley error reporting - initial (Issue #760) 3 yıl önce
relative-imports Examples: add import example 5 yıl önce
standalone Standalone generator now remove docstrings and comments. 4 yıl önce
tests added tests for lark.lark changes 4 yıl önce
README.rst move advanced examples to a different folder 4 yıl önce
__init__.py Added examples (calc, json) 7 yıl önce
calc.py Improvements to puppet + other small stuff 4 yıl önce
fruitflies.png Improved Readme 6 yıl önce
fruitflies.py added make_dot 4 yıl önce
indented_tree.py inital sphinx gallery 4 yıl önce
json_parser.py Adjustments 4 yıl önce
lark_grammar.py Moved `lark.lark` into the standard library. 3 yıl önce
turtle_dsl.py inital sphinx gallery 4 yıl önce

README.rst

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:

.. code:: bash

[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:

.. code:: bash

[lark]$ python -m examples.python_parser

Beginner Examples
~~~~~~~~~~~~~~~~~