An expression language.
Project description
jsonexpr for Python
This document describes using jsonexpr with Python. For the language overview, see the main page.
Installation
pip3 install jsonexpr
Python 3.8 and later are supported.
Example
import jsonexpr
compiled = jsonexpr.compile("""
PRINT("I have " + LEN(grades) + " students");
PRINT("Alice's grade is " + grades.alice);
""")
compiled.setSymbols({
"grades" : {
"alice" : "A",
"bob" : "B",
}
});
result = compiled.eval()
Output:
I have 2 students
Alice's grade is A
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
jsonexpr-0.0.24.tar.gz
(124.0 kB
view details)
File details
Details for the file jsonexpr-0.0.24.tar.gz
.
File metadata
- Download URL: jsonexpr-0.0.24.tar.gz
- Upload date:
- Size: 124.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8989f6bfe5783be064dd9eb400e0bc7ad8a87aa2be79fdd6efa6690a47619b1 |
|
MD5 | 9154376e957d692563883addbeaca979 |
|
BLAKE2b-256 | 58e56f0fe172126621c82c5e82305b46ac77c1aeb408c584f98c5fa5267ed014 |