Commit 03307679 authored by Igor Dejanovic's avatar Igor Dejanovic

README update

parent f0ac5e4c
...@@ -93,8 +93,9 @@ Instantiate a parser. Parser works as grammar interpreter. There is no code gene ...@@ -93,8 +93,9 @@ Instantiate a parser. Parser works as grammar interpreter. There is no code gene
from arpeggio import ParserPython from arpeggio import ParserPython
parser = ParserPython(calc) # calc is the root rule of your grammar parser = ParserPython(calc) # calc is the root rule of your grammar
# Use param debug=True for verbose debugging messages and # Use param debug=True for verbose debugging
# grammar and parse tree visualization using graphviz and dot # messages and grammar and parse tree visualization
# using graphviz and dot
Parse your inputs. Parse your inputs.
...@@ -102,8 +103,8 @@ Parse your inputs. ...@@ -102,8 +103,8 @@ Parse your inputs.
parse_tree = parser.parse("-(4-1)*5+(2+4.67)+5.89/(.2+7)") parse_tree = parser.parse("-(4-1)*5+(2+4.67)+5.89/(.2+7)")
Analyze parse tree directly or write a visitor class to transform it to a more Analyze parse tree directly or write a visitor class to transform it to a more
usable form. See examples how it is done. usable form. See examples how it is done.
For textual PEG syntaxes instead of :code:`ParserPyton` instantiate :code:`ParserPEG` For textual PEG syntaxes instead of :code:`ParserPyton` instantiate :code:`ParserPEG`
from :code:`arpeggio.peg` or :code:`arpeggio.cleanpeg` modules. See examples how it is done. from :code:`arpeggio.peg` or :code:`arpeggio.cleanpeg` modules. See examples how it is done.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment