Helper functions for PLY (Python Lex & Yacc)
Project description
Introduction
easyply is a helper library for PLY, parser generator for Python. It acts as a middleware between your grammar definition and PLY.
What’s so appealing about easyply? PLY supports rather crude parser definitions; easyply adds some EBNF-y flavor to it. easyply is purely a helper in everyday work - you definitely need to understand PLY first in order to use this library.
Goodies
No mandatory whitespace surrounding colon sign
def px_rule(): "production: SYMBOL
Named parameters
Instead of mutating and reading the mysterious p parameter, easyply employs named parameters and return values. So:
def px_rule(id): "production: {ID} ... return retval
is equivalent to:
def p_rule(p): "production : ID" id = p[1] ... p[0] = retval
You can also use custom names for parameters, just like this:
def px_rule(foo): "production: {ID:foo}"
In case when the custom name is not provided, a lowercased name of the term is used.
Optional symbols
Instead of creating multiple similar rules differing only by a few symbols, you can consolidate them into one using ? symbol. Observe:
def px_rule(): "production: symbol1 symbol2? symbol3" ...
Given this code, easyply will generate two functions with the same code and the following rules:
production: symbol1 symbol3
production: symbol1 symbol2 symbol3
This is especially powerful in conjunction with named parameters(note the parentheses):
def px_list(expression, list = ()): "list: ({list} COMMA)? {expression}" return list + expression
Neat, isn’t it?
OR operator
In addition, easyply offers OR operator for quick grouping of similar cases:
def px_expression(): """ expression: LPAREN expression RPAREN | NUMBER | REAL """ ...
The OR operator can be also used inline:
def px_list(expresion, list = ()): "list: ({list} (COMMA|SEMICOLON))? {expresson}" ...
Note that OR has the lowest priority of all operators - hence the additional parentheses.
Installation
pip install easyply
Usage
Basic usage is simple: Prefix all your easyply rules, except p_error, with px_ prefix (instead of the usual p_) and call easyply.process_all(globals()) before creating your PLY parser. The parameter to easyply.process_all can be any mapping or class with parser functions - process_all will mutate the parameter and add appropriate PLY rules. If you want more fine-grained control, consult the API reference in the source itself.
License
This library is licensed under the MIT License.
Copyright © 2011 by Mike Hordecki
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file easyply-1.2.1.tar.gz
.
File metadata
- Download URL: easyply-1.2.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 706af98ea56243d05389064405002f78a16c2ee8e377eeee253e5471823da9cf |
|
MD5 | 175066980dfa1cc4d9c138e4e567d7e5 |
|
BLAKE2b-256 | 2424d90db0745c95833ba6ac8cba4380a64df4904b7399d13a60b09947903aa1 |