Skip to main content

A Parser Library for Python 2.6+/3+: 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.

Release 4.0 is a major revision, giving a library that’s simpler, faster, and easier to use. Release 4.0.1 adds a small bugfix for left-recursive, whitespace sensitive grammars.

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 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-4.0.1.zip (329.7 kB view details)

Uploaded Source

LEPL-4.0.1.tar.gz (177.4 kB view details)

Uploaded Source

File details

Details for the file LEPL-4.0.1.zip.

File metadata

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

File hashes

Hashes for LEPL-4.0.1.zip
Algorithm Hash digest
SHA256 259e07a33b70cf7fbc0e94d33cf5f84d3354718fc11e5e584942f012fcb6258e
MD5 5ab5d5dfed340d51421d18bae43dac11
BLAKE2b-256 e86a63274ce9f589dbb2e9c526150656028dbf8db274f7722050bb902b264ea8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-4.0.1.tar.gz
Algorithm Hash digest
SHA256 d6fcd21b3c3c1136308e25f8205931d5b707dd0a556847bd54259628e7f358e6
MD5 02867d4183d2346c2f0e697f34a40db1
BLAKE2b-256 cc55f0188c8b5bc0133160e1753e525feb7caff3d10de8d9a8023eb8cb785507

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