A minimal DSL for Python
Project description
A minimal DSL for Python
Minilanguage is a minimal DSL for Python written with Ply.
Is it intended to be a starting point for writing more specific DSLs.
Currently, it only implements simple boolean logic and objects/strings evaluation.
Example
from minilanguage.grammar import FeatureParser context = { 'country': 'US', 'user': { 'username': 'regular_user', 'data_bag': { "payload": 'abc', } } } parser = FeatureParser() parser.build() parser.evaluate("2 + 0.5", context) # 2.5 parser.evaluate("12 + 12", context) # 24 parser.evaluate("12 == 12", context) # True parser.evaluate("12 != 12", context) # False parser.evaluate("12 and False", context) # False parser.evaluate("12 or False", context) # 12 parser.evaluate("12 > 10", context) # True parser.evaluate("12 < 10", context) # False parser.evaluate("12 <= 12", context) # True parser.evaluate("12 >= 12", context) # True parser.evaluate("country", context) # 'US' parser.evaluate("country == 'US'", context) # True parser.evaluate("user['username']", context) # 'regular_user' parser.evaluate("'a', 'b'", context) # tuple('a', 'b') parser.evaluate("user['data_bag']['payload']", context) # 'abc' parser.evaluate("user.get('missing_key', 'default')", context) # 'default' parser.evaluate("12 if False else 14", context) # 14
License
This software is released under the MIT License.
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
minilanguage-1.0.3.tar.gz
(5.5 kB
view hashes)
Built Distribution
Close
Hashes for minilanguage-1.0.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a8bc65495ffbf20fff94de98782d1cdc379345791f53265cc813acaeba72cdf |
|
MD5 | a93c3f6546d576020f21e050639440c3 |
|
BLAKE2b-256 | 9c9eb56e0ed79340e0631bdbc1176c39061be0483b38fb937cbe236a688c682e |