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.

Release 3.2 has improved support for cloning graphs of matchers (see Issue 11). It also contains changes to support handling the “offside rule” in a later release.

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

Uploaded Source

LEPL-3.2.tar.gz (118.5 kB view details)

Uploaded Source

File details

Details for the file LEPL-3.2.zip.

File metadata

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

File hashes

Hashes for LEPL-3.2.zip
Algorithm Hash digest
SHA256 6aa8737561464d4af2eea3d115df2a4782e2e0e6b1bc6c28feb41e29aba0d98e
MD5 0bb286dc992e38fa5be859d881d2f6e5
BLAKE2b-256 16d344a4814b89cbdb9ae0bbcb53b19af1ac1e94e1961fc29c0e6be6dc6d36f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-3.2.tar.gz
Algorithm Hash digest
SHA256 e3eaf6092d0e439ac2cfd5833679ecc9a8102b6c7cdb2893abd91f7d02a8ffe3
MD5 a54863320ec249f870931f23fe8268c5
BLAKE2b-256 986f3685b5a7a91d56dc385d92e2ee554d67c1e2091e9a49eb950641f35fb411

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