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.4 changes the meaning of Float() slightly, and adds more control over search.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
File details
Details for the file LEPL-4.4.0.zip
.
File metadata
- Download URL: LEPL-4.4.0.zip
- Upload date:
- Size: 368.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 588da28084d775ab9e9d5b46958dbda08275a278d5bc7fcdb79923e0cdd0f781 |
|
MD5 | 0eccf3819d00560230d911c0954ca721 |
|
BLAKE2b-256 | cdb23e9375cab099edabc0edc9624dc5683bd6058a5d0b7097f91b39d8465242 |
File details
Details for the file LEPL-4.4.0.tar.gz
.
File metadata
- Download URL: LEPL-4.4.0.tar.gz
- Upload date:
- Size: 203.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ec59a119b6471c62093fdb2ad8c902a3b8cec12c90a773286af01ea029706bc |
|
MD5 | d53ab5faddf7d44f193c016868e95d6b |
|
BLAKE2b-256 | b3c778bff54f27abddfddc24a7dbdb71227dbaf5c7e1e93c3172c7d441a6a9c5 |