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.2 adds validation of email and HTTP URLs (RFC 3696), as well as improved compilation to regexps (used internally to improve speed); 4.3 simplifies line-aware parsing and 4.3.2 supports Python 2.7.

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.3.2.zip (356.9 kB view details)

Uploaded Source

LEPL-4.3.2.tar.gz (193.9 kB view details)

Uploaded Source

File details

Details for the file LEPL-4.3.2.zip.

File metadata

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

File hashes

Hashes for LEPL-4.3.2.zip
Algorithm Hash digest
SHA256 824a59f02b095f2c869bdd5ffd1f9dc9db79231658525e05ba576ead07ea5bea
MD5 159d45017c27fd07ff4bbe30d9b54fb1
BLAKE2b-256 040ae7cb83ffac865d321f01ad0bd7a215de92cdd3a0cf9a93fbbfc4662a6597

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-4.3.2.tar.gz
Algorithm Hash digest
SHA256 1e9a9d745a2225f5a6951a04f80fc04ede27d55f25c6f784c0b4b5a6e72da62b
MD5 851f60b805a5260c0690aa287e206305
BLAKE2b-256 1c59d622c29a1df5ce183c8a46c87c9ca3030d66882e31d705ffbddedb740f3e

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