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.0 simplifies core interfaces related to Nodes and graphs. It includes initial support for parsing (and encoding) binary data and has a completely new tutorial. It also has improved support for handling explicit spaces in tabular data or with “smart separators”.

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.0.zip (179.7 kB view details)

Uploaded Source

LEPL-3.0.tar.gz (112.8 kB view details)

Uploaded Source

File details

Details for the file LEPL-3.0.zip.

File metadata

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

File hashes

Hashes for LEPL-3.0.zip
Algorithm Hash digest
SHA256 cf343e18af695b1b4decc5e2e564578a798ba756c24eb0e2a094ad8e6c22c5b8
MD5 8ddd832737b5c928f02b76649531a045
BLAKE2b-256 651854522fd1cbba3edfb4c1091711b008ed315489b53e4367651d889b32ae6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for LEPL-3.0.tar.gz
Algorithm Hash digest
SHA256 a02ae4ea5b4142d3a86c2f289d3ef2db1238ddcf4c96dbfecf5ad22c1e2ebef9
MD5 a7e8124aa970bd1d5a4eb8eedf1a3647
BLAKE2b-256 40d68aeb6f1fb7c7d64d774a0f01432c136e46dc328eca9f8042a298d32a7ec2

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