Skip to main content

Pygritia: Lazy Symbolic Evaluation

Project description

Pygritia

Pygritia is a symbolic expression library.

It can

  • create symbolic expressions with one or more symbols
  • resolve symbolic expressions by substituting values to symbols
  • partially resolve symbolic expression

Example:

from pygritia import symbol, evaluate, update

this = symbol('this')
that = symbol('that')
arr = [1, 2, 3]
print(5 / this + 2 * 6)  # 5 / this + 12
print(evaluate(5 / this + 2 * 6, this=2))  # 14.5
print(evaluate(this[that], this=arr)) # [1, 2, 3][that]
update(this[that], 42, this=arr, that=1)
print(arr)  # [1, 42, 3]

Documentation of all public functions can be found in pygritia

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

pygritia-0.1.0.tar.gz (58.7 kB view hashes)

Uploaded Source

Built Distribution

pygritia-0.1.0-py3-none-any.whl (9.2 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