A Python module for symbolic arithmetic expressions.
Project description
arithmetic-expressions
arithmetic-expression
is a Python module for symbolic arithmetic expressions. It supports serialization,
deserialization, evaluation with custom variables, and an easy construction interface by combining existing
expressions.
It is built around Python's ast
module and therefore uses Python syntax when string serializing and deserializing.
However, it only supports single-line expressions and strongly restricts the grammar when evaluating expressions.
This constrained subset of the grammar encompasses variables, numeric constants, unary and binary arithmetic
operators, comparison operators, the ternary if-else operator and selected function calls.
Expressions can be deserialized from strings, but can also be built from scratch with an intuitive API that aligns with Python's own syntax.
Example
from arithmetic_expressions import Expression
# Parse an expression
Expression.parse("x * 2 + 1")
# Or create it from scratch
expression = Expression("x") * 2 + 1
# String casting will serialize the expression
print(expression) # prints "x * 2 + 1"
# Pass variables to evaluate it
print(expression.evaluate(x=3)) # prints "7"
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
Built Distribution
File details
Details for the file arithmetic_expressions-0.1.tar.gz
.
File metadata
- Download URL: arithmetic_expressions-0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.5.0-4-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 229b48ff6a9a748f197e2f7d0c9a25658c3a950aa1f4b0a1a00fff105fad8ce0 |
|
MD5 | 77865e7d15f56522058516ec9ed1f1ba |
|
BLAKE2b-256 | 05d838a99464d2e45da8ad99411673e5bc7e81fcca20eb034192a0855a3fa083 |
File details
Details for the file arithmetic_expressions-0.1-py3-none-any.whl
.
File metadata
- Download URL: arithmetic_expressions-0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.5.0-4-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ca6d6a087a790b64fdb642095b2e3ce0b34f6184f47f80c02dc81096288c12d |
|
MD5 | d81ccadff995fe26e4e760d667e039b0 |
|
BLAKE2b-256 | 09dcf94a61dde2799c6114fd6ae91de5fede9de98a9ad898927665370cf3c1fd |