Skip to main content

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

Project description

Note - an alpha release of the next version, 3.0a1, is now available at http://code.google.com/p/lepl/downloads/list

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.4 adds a lexer. This can simplify some applications (typically by separating the handling of spaces from the main grammar) and may also improve efficiency.

Features

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

  • Friendly syntax using Python’s operators.

  • Integrated, optional lexer simplifies handling whitespace.

  • 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.4.zip (99.2 kB view details)

Uploaded Source

LEPL-2.4.tar.gz (77.4 kB view details)

Uploaded Source

File details

Details for the file LEPL-2.4.zip.

File metadata

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

File hashes

Hashes for LEPL-2.4.zip
Algorithm Hash digest
SHA256 9990cb117b4ad451cefc3ab2d6ef11290294ada19148c5e3b71d4eb282d8c867
MD5 d1fef431ddae740dfc6ca309dc2331d5
BLAKE2b-256 4b63ee3bf360ed5f0559a27c156fda96daeb02ec453cbf19c563c41f00c711c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-2.4.tar.gz
Algorithm Hash digest
SHA256 6e8a90a1ddcfdbbfdc425f4571a3dae94796851e55f57cbe5c181d96d988dcbf
MD5 c8bafd2d056943b7be33ba8a7ee3f0f7
BLAKE2b-256 8fc91983934b6b526c200382f7758387f155b132a378e72cb2f70669cad7df04

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