Metadata-Version: 2.1
Name: pygpeg
Version: 0.1.0
Summary: Another PEG parser for Python
Home-page: https://realistschuckle.gitlab.io/pygpeg
License: MIT
Keywords: parser,peg
Author: Curtis Schlak
Author-email: foss@schlak.com
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Compilers
Project-URL: Documentation, https://realistschuckle.gitlab.io/pygpeg
Project-URL: Repository, https://gitlab.com/realistschuckle/pygpeg
Description-Content-Type: text/x-rst

pygpeg
======

**pygpeg** (/pig'peg/) is a parsing expression grammar (PEG) library for
Python. It allows you to generate a parser that allows you to parse
context-free grammars into whatever structures you want.

**pygpeg** combines the PEG syntax with the terse callback semantics found in
traditional parser generators like yacc or bison. 

