Metadata-Version: 2.1 Name: Arpeggio Version: 2.0.2 Summary: Packrat parser interpreter Home-page: https://github.com/textX/Arpeggio Download-URL: Author: Igor R. Dejanovic Author-email: igor.dejanovic@gmail.com License: MIT Keywords: parser,PEG,packrat,library,interpreter Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Information Technology Classifier: Intended Audience :: Science/Research Classifier: Topic :: Software Development :: Interpreters Classifier: Topic :: Software Development :: Compilers Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Description-Content-Type: text/markdown License-File: LICENSE License-File: AUTHORS.md Provides-Extra: dev Requires-Dist: wheel ; extra == 'dev' Requires-Dist: mkdocs ; extra == 'dev' Requires-Dist: mike ; extra == 'dev' Requires-Dist: twine ; extra == 'dev' Provides-Extra: test Requires-Dist: flake8 ; extra == 'test' Requires-Dist: coverage ; extra == 'test' Requires-Dist: coveralls ; extra == 'test' Requires-Dist: pytest ; extra == 'test' ![](https://raw.githubusercontent.com/textX/Arpeggio/master/art/arpeggio-logo.png) [![PyPI Version](https://img.shields.io/pypi/v/Arpeggio.svg)](https://pypi.python.org/pypi/Arpeggio) ![](https://img.shields.io/pypi/l/Arpeggio.svg) [![Build status](https://github.com/textx/Arpeggio/actions/workflows/ci-linux-ubuntu.yml/badge.svg)](https://github.com/textx/Arpeggio/actions) [![Coverage Status](https://coveralls.io/repos/github/textX/Arpeggio/badge.svg)](https://coveralls.io/github/textX/Arpeggio) [![Documentation](https://img.shields.io/badge/docs-latest-green.svg)](http://textx.github.io/Arpeggio/latest/) Arpeggio is a recursive descent parser with memoization based on PEG grammars (aka Packrat parser). Documentation with tutorials is available [here](http://textx.github.io/Arpeggio/). **Note:** for a higher level parsing/language tool (i.e., a nicer interface to Arpeggio) see [textX](https://github.com/textX/textX).