Skip to main content

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

Project description

BUG - I have just found a serious bug in LEPL’s regular expression engine, so have temporarily removed the downloads. I will make a new release as soon as possible (in the next week or so, I would hope). There is already a quick fix available in the source repository. 2009-11-20

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 3.3 adds line-aware parsing, including support for the “offside rule”.

Features

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

  • Friendly syntax using Python’s operators allows grammars to be defined in a declarative style close to BNF.

  • Integrated, optional lexer simplifies handling whitespace.

  • Built-in AST support with support for iteration, traversal and re–writing.

  • Generic, pure-Python approach supports parsing a wide variety of data including bytes (Python 3+ only).

  • 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”).

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

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

  • Parsers can be made much more efficient with automatic memoisation (“packrat parsing”).

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

Uploaded Source

LEPL-3.3.tar.gz (135.6 kB view details)

Uploaded Source

File details

Details for the file LEPL-3.3.zip.

File metadata

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

File hashes

Hashes for LEPL-3.3.zip
Algorithm Hash digest
SHA256 c6f5ccac27a310b45c3f27fac3d49db4b5e8ed045d3205375a8225d89e284922
MD5 f0bb26802b8ed306dfe279a004f01e02
BLAKE2b-256 0a2901d6fc8bac7298e2bbf410bf5421f847f8ef8c00a5dd4d32e4f6d64a430e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-3.3.tar.gz
Algorithm Hash digest
SHA256 1426f949cebd5d8a56540e7932e2072793c8e349583a65b8c37780ac899cbb32
MD5 da84a831238e94832171e83a5d2bbba5
BLAKE2b-256 3be380520417a2566d073e9e69a76c4f3ffa67a02e407dbb17c8cfc04f40244a

See more details on using hashes here.

Supported by

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