Skip to main content

A Parser Library for Python 2.6+/3+: Recursive Descent; Full Backtracking

Project description

THIS PROJECT IS NO LONGER DEVELOPED. PLEASE SEE THE SITE FOR MORE INFORMATION.

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 5 has simpler stream (input) handling. Memoisation, line-aware lexing and memory use have also been revised. These changes make future extension easier, fix several bugs, and improve performance.

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.

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

Uploaded Source

LEPL-5.1.3.tar.gz (203.7 kB view details)

Uploaded Source

File details

Details for the file LEPL-5.1.3.zip.

File metadata

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

File hashes

Hashes for LEPL-5.1.3.zip
Algorithm Hash digest
SHA256 da6dfa01bbd449f8544857b13474ad52fcca30a5d30de96271c70f34c7a3f96e
MD5 64ae409c0582231112406fff3b6746f2
BLAKE2b-256 fd5d7ec76725dab377d26cfbbb769c7fd5f7126a1cbf68934887e30514f04df2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-5.1.3.tar.gz
Algorithm Hash digest
SHA256 a8715c709308350ce4afed5d525682656886d38141387ec87d44421da8d41397
MD5 5f653984c57ad8efad828c5153660743
BLAKE2b-256 bb895acd0982ca17258d13df855114364140712ac59ccdb835093c385ddc8dca

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