Skip to main content

A Parser Library for Python 3 (and 2.6): Recursive Descent; Full Backtracking

Project description

LEPL is a recursive descent parser, written in Python, which has a a friendly, easy-to-use syntax. The underlying implementation includes several features that make it more powerful than might be expected.

For example, it is not limited by the Python stack, because it uses trampolining and co-routines. Multiple parses can be found for ambiguous grammars and it can also handle left-recursive grammars.

The aim is a powerful, extensible parser that will also give solid, reliable results to first-time users.

This release (2.1) improves performance. Typical parsers are now twice as fast (improved constant factor) while left recursive grammars are re-arranged to avoid unnecessary deep recursion (improved “big-O” performance; one test case improved by a factor of 40).

Features

  • Parsers are Python code, defined in Python itself. No separate grammar is necessary.

  • Friendly syntax using Python’s operators.

  • Built-in AST support (a generic Node class). Improved support for the visitor pattern and tree re–writing.

  • Well documented and easy to extend.

  • Unlimited recursion depth. The underlying algorithm is recursive descent, which can exhaust the stack for complex grammars and large data sets. LEPL avoids this problem by using Python generators as coroutines (aka “trampolining”).

  • Support for ambiguous grammars (complete backtracking). A parser can return more than one result (aka “parse forests”).

  • Packrat parsing. Parsers can be made much more efficient with automatic memoisation.

  • Parser rewriting. The parser can itself be manipulated by Python code. This gives unlimited opportunities for future expansion and optimisation.

  • Left recursive grammars. Memoisation can detect and control left–recursive grammars. Together with LEPL’s support for ambiguity this means that “any” grammar can be supported.

  • Pluggable trace and resource management, including “deepest match” diagnostics and the ability to limit backtracking.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

LEPL-2.1.zip (65.1 kB view details)

Uploaded Source

LEPL-2.1.tar.gz (53.2 kB view details)

Uploaded Source

File details

Details for the file LEPL-2.1.zip.

File metadata

  • Download URL: LEPL-2.1.zip
  • Upload date:
  • Size: 65.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for LEPL-2.1.zip
Algorithm Hash digest
SHA256 631e4ebfb3263f25f902518fd38ef2285df0e7837d222920b5e1b64ffee1b3e9
MD5 8780757ebbe2871acfa4429089887c8a
BLAKE2b-256 aaa9b05afc9b0e1b35549772ecb2172bc8a5d6815f62e726aae3d08aab2bcb63

See more details on using hashes here.

File details

Details for the file LEPL-2.1.tar.gz.

File metadata

  • Download URL: LEPL-2.1.tar.gz
  • Upload date:
  • Size: 53.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for LEPL-2.1.tar.gz
Algorithm Hash digest
SHA256 0a0df40b782149141fd0e304ee5bace9864deb9912a9b8579ae12ee9e680931e
MD5 99512f5351baa6dacf97fbdf7a24ac17
BLAKE2b-256 358b53da472bbfde16eddeac1a49c6f6f26a380d4397571a082041344ea81ef5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page