Skip to main content

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

Project description

WARNING easy_install is currently broken - 2.3.3 does install from source (using “python setup.py install), but not using easy_install. I will try fix this later today.

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.

Release 2.3 provides optimisation via regular expressions. A detailed example shows the benefits. Release 2.3.3 fixes a packaging error (I hope - this release has been a complete disaster so far).

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.3.3.zip (92.1 kB view details)

Uploaded Source

LEPL-2.3.3.tar.gz (74.6 kB view details)

Uploaded Source

File details

Details for the file LEPL-2.3.3.zip.

File metadata

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

File hashes

Hashes for LEPL-2.3.3.zip
Algorithm Hash digest
SHA256 fe4490cb24aac99ad1bed3d757dc998fb6fbf2ec8d99de64dbe686202f395b76
MD5 113be9aa0d588f90e8aa7079479b84f7
BLAKE2b-256 d974c567c27a9b32dfb2d226fbf8b9b387e3384fb185cccc797f57c21322e3ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-2.3.3.tar.gz
Algorithm Hash digest
SHA256 4359539af109e7bb31fe3bd6b7b3b828aed27be2e8aa84e87e6c41e344aeb10a
MD5 a1d78c275440271c2ed5e5dfdf705f45
BLAKE2b-256 db89c01c37b8efe0d2c22b5c2785b618428d9a8e9bae3e36d8a7de4950cedf18

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