Skip to main content

Evaluate infix math expresion in python with ease.

Project description

InfixParser

InfixParser is a Python binding for MathParser (https://github.com/KJ002/MathParser/). This module allows for a simple and quick evaluation of strings. It allows you to evaluate a string with security, you define the external variables!

Examples

Basic Eval

result: float = InfixParser.evaluate("1+1") # returns 2.0

Basic Eval (With Evaluator Class)

parser = InfixParser.Evaluator()

result: float = parser.eval("1+1") # returns 2.0

External Variable Eval

parser = InfixParser.Evaluator()

x: int = 20

parser.append_variable("x", x)

result: float = parser.eval("1+x") # returns 21.0

Updating External Variable Eval

parser = InfixParser.Evaluator()

x: int = 20

parser.append_variable("x", x)

result1: float = parser.eval("1+x") # returns 21.0

x: int = 10

parser.append_variable("x", x)

result2: float = parser.eval("1+x") # returns 11.0

Functions Eval

parser = InfixParser.Evaluator()

result: float = parser.eval("sin(1.5707963267948966)") # returns 1.0

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

InfixParser-3.1.2.tar.gz (7.3 kB view hashes)

Uploaded Source

Built Distributions

InfixParser-3.1.2-cp39-cp39-win_amd64.whl (82.8 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

InfixParser-3.1.2-cp35-cp35m-manylinux_2_24_x86_64.whl (95.8 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.24+ x86-64

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