Skip to main content

Mahonia is a domain specific language (DSL) for defining, evaluating, saving, and serializing binary expressions.

Project description

Mahonia

Mahonia is a domain specific language (DSL) for defining, evaluating, saving, and serializing binary expressions within a Python interpreter.

Test codecov Publish Python 🐍 distribution 📦 to PyPI

Motivation

Say that you are writing an application that conducts some assembly line testing at a manufacturing facility. While the primary requirement is to flag those units that do not meet expectations, a secondary requirement is to record what, why, and how a test has failed.

First, define what is being measured - the "context".

from typing import NamedTuple

from mahonia import Approximately, PlusMinus, Predicate, Var

class Measurements(NamedTuple):
	voltage: float

Next, for each "variable" of the context, we declare a matching Mahonia Var type.

voltage = Var[float, Measurements]("voltage")

Now we can write an expression. This expression defines a named predicate that will evaluate to True if the evaluated voltage is within 0.05 of 5.0.

expr = Predicate(
	"Voltage OK",
	Approximately(
		voltage, PlusMinus("Nominal", 5.0, plus_minus=0.05)
	)
)

Then we'll take the measurement and bind it:

from my_app import get_voltage

voltage_check = expr.bind(MyContext(voltage=get_voltage()))

This creates an immutable expression that Mahonia calls a BoundExpr. We can evaluate it as many times as we like:

voltage_check.unwrap() # True
voltage_check.unwrap() # True

We can inspect the evaluation context:

print(voltage_check.ctx) # Measurements(voltage=5.03)

As well as serialize it for the logs:

str(voltage_check) # or voltage_check.to_string()
# If it was success, for example:
# Voltage OK: True (voltage:5.03 ≈ Nominal:5.0 ± 0.05 -> True)
# Or a fail:
# Voltage OK: False (voltage:4.90 ≈ Nominal:5.0 ± 0.05 -> False)

LaTeX Support

Mahonia expressions can be converted to LaTeX mathematical notation:

from mahonia.latex import latex

# Convert expressions to LaTeX
latex(voltage)  # 'voltage'
latex(expr.expr)  # 'voltage \\approx Nominal \\pm 0.05'

For comprehensive examples of LaTeX output for all supported expression types, see tests/latex_examples.md.

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

mahonia-0.5.0.tar.gz (156.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mahonia-0.5.0-py3-none-any.whl (36.5 kB view details)

Uploaded Python 3

File details

Details for the file mahonia-0.5.0.tar.gz.

File metadata

  • Download URL: mahonia-0.5.0.tar.gz
  • Upload date:
  • Size: 156.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mahonia-0.5.0.tar.gz
Algorithm Hash digest
SHA256 ab4883c2539f96e0f175ae598cb687b8839f8083c23f5978908583b07cfe325d
MD5 b052aae91dbbfdac5089470673d3da6b
BLAKE2b-256 086623d40881e42050b14c5896ed2fbd5e70fe97713da22e77c083a175901b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for mahonia-0.5.0.tar.gz:

Publisher: test.yaml on JPHutchins/mahonia

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mahonia-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: mahonia-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mahonia-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 94caf6ca80d89611c1b8bd7ce7b22ab8421e8d2d8f14328927c60653c795e060
MD5 9fa8a0f4b6eabb8f196037a4060f8af5
BLAKE2b-256 1af9382ff802ef6e808fd1e5f9922f17f1f5ed7f933b7dc255a1b06c2216a930

See more details on using hashes here.

Provenance

The following attestation bundles were made for mahonia-0.5.0-py3-none-any.whl:

Publisher: test.yaml on JPHutchins/mahonia

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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