Parser
Project description
reparsec
Small parsec-like parser combinators library with semi-automatic error recovery.
Installation
pip install reparsec
Usage
Example
With reparsec
, simple arithmetic expression parser and evaluator could be written like this:
from typing import Callable
from reparsec import Delay
from reparsec.scannerless import literal, parse, regexp
from reparsec.sequence import eof
def op_action(op: str) -> Callable[[int, int], int]:
return {
"+": lambda a, b: a + b,
"-": lambda a, b: a - b,
"*": lambda a, b: a * b,
}[op]
spaces = regexp(r"\s*")
number = regexp(r"\d+").fmap(int) << spaces
mul_op = regexp(r"[*]").fmap(op_action) << spaces
add_op = regexp(r"[-+]").fmap(op_action) << spaces
l_paren = literal("(") << spaces
r_paren = literal(")") << spaces
expr = Delay[str, int]()
expr.define(
(
number |
expr.between(l_paren, r_paren)
)
.chainl1(mul_op)
.chainl1(add_op)
)
parser = expr << eof()
This parser can:
- evaluate an expression:
>>> parser.parse("1 + 2 * (3 + 4)").unwrap() 15
- report first syntax error:
>>> parser.parse("1 + 2 * * (3 + 4 5)").unwrap() Traceback (most recent call last): ... reparsec.types.ParseError: at 8: expected '('
- attempt to recover and report multiple syntax errors:
>>> parser.parse("1 + 2 * * (3 + 4 5)", recover=True).unwrap() Traceback (most recent call last): ... reparsec.types.ParseError: at 8: expected '(' (skipped 2 tokens), at 17: expected ')' (skipped 1 token)
- automatically repair input and return some result:
>>> parser.parse("1 + 2 * * (3 + 4 5)", recover=True).unwrap(recover=True) 15
- track line and column numbers:
>>> parse(parser, """1 + ... 2 * * ( ... 3 + 4 5)""", recover=True).unwrap() Traceback (most recent call last): ... reparsec.types.ParseError: at 2:5: expected '(' (skipped 2 tokens), at 3:7: expected ')' (skipped 1 token)
More examples:
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 Distribution
reparsec-0.4.3.tar.gz
(19.3 kB
view details)
Built Distribution
reparsec-0.4.3-py3-none-any.whl
(25.3 kB
view details)
File details
Details for the file reparsec-0.4.3.tar.gz
.
File metadata
- Download URL: reparsec-0.4.3.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 287853b9775748f8960c9b5acccc4e43049612e2b34ea2bc3e2e4f7dd0538d2b |
|
MD5 | d435e6dd8a9457df796201ffe9d0e0e1 |
|
BLAKE2b-256 | 9501285ac3d5e1c8bcdc7000ad0d5718d129ec475b8eadc3ca1a1405845b465d |
File details
Details for the file reparsec-0.4.3-py3-none-any.whl
.
File metadata
- Download URL: reparsec-0.4.3-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea1d1a080ccabc62bb2f3cf008e30c576b497bc647fd95a7a856de26a314bbd1 |
|
MD5 | 8549cbbd7bfc6af7a1a3ac385294f531 |
|
BLAKE2b-256 | ddc906c757ca0d2f1aa62153ca924b7a9b13c6929b1506b611d93cb88d87bc21 |