Metadata-Version: 2.1
Name: Arpeggio
Version: 2.1.0.dev0
Summary: Packrat parser interpreter
Keywords: parser,PEG,packrat,library,interpreter
Author-email: "Igor R. Dejanović" <igor.dejanovic@gmail.com>
Requires-Python: >=3.7, <3.13
Description-Content-Type: text/markdown
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.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: mkdocs ; extra == "dev"
Requires-Dist: mike ; extra == "dev"
Requires-Dist: flit ; extra == "dev"
Requires-Dist: ruff ; extra == "test"
Requires-Dist: coverage ; extra == "test"
Requires-Dist: coveralls ; extra == "test"
Requires-Dist: pytest ; extra == "test"
Project-URL: Changelog, https://github.com/textX/Arpeggio/blob/master/CHANGELOG.md
Project-URL: Homepage, https://textx.github.io/Arpeggio/
Project-URL: Repository, https://github.com/textX/Arpeggio
Provides-Extra: dev
Provides-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).

