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.2) introduces the >= operator, a String() matcher, and a pure-Python regular expression framework.

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.2.zip (65.9 kB view details)

Uploaded Source

LEPL-2.2.tar.gz (54.0 kB view details)

Uploaded Source

File details

Details for the file LEPL-2.2.zip.

File metadata

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

File hashes

Hashes for LEPL-2.2.zip
Algorithm Hash digest
SHA256 2ae976b42ca5359a51258d1533799ee3deadf373fd8f3daf74db9ee02314703f
MD5 735e39ec08bcfbd5fbc1abaa7b002f0e
BLAKE2b-256 dd65089d5a4bc6a2df294d5c46a70c15038c612a27e1aba386e62dd63d4907fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-2.2.tar.gz
Algorithm Hash digest
SHA256 7e7526898907798efd0cb3bab2d14e05621a7f50b022b42916ff92c5b619d6fc
MD5 a4abb0d1ac6408d72a1ecb950ec806fe
BLAKE2b-256 ff5b8403ea93d2e1174acadc5741c9553db7e52579796074416d6128ca454056

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