Skip to main content

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

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arithmetic_expressions-0.1.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

arithmetic_expressions-0.1-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page