Python version of SimplePEG
Project description
To use, simply do:
>>> from simplepeg import SPEG >>> parser = SPEG() >>> parser.parse_grammar('GRAMMAR test b -> "a";') >>> ast = parser.parse_text('a') >>> print ast.to_json()
or:
>>> from simplepeg import SPEG >>> parser = SPEG() >>> ast = parser.parse('GRAMMAR test b -> "a";', 'a') >>> print ast.to_json()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simplepeg-1.0.4.tar.gz
(6.8 kB
view hashes)