Skip to main content

jsonata2py

PyPI Python License: MIT

JSONata for Python — translated to Python source, not interpreted.

Each expression is parsed, optimised and translated into real Python code, compiled in memory, and handed back as a ready-to-call object. Evaluation is ~54x faster than the pure-Python reference interpreter, and ~2.7x-4.9x faster than both Rust-backed alternatives on this benchmark — including on JSON text in, JSON text out (see the benchmarks).

import jsonata2py as jsonata

expr = jsonata.compile("$sum(Order.Product.(Price * Quantity))")

expr.evaluate({
    "Order": {"Product": [
        {"Price": 10.0, "Quantity": 2},
        {"Price": 5.0, "Quantity": 4},
    ]}
})
# -> 40
  • Pure Python, no build step. One wheel, every platform; regex is the only dependency.
  • Complete. All 1,281 files of the official JSONata test suite pass.
  • Typed. Ships py.typed; the source is clean under mypy --strict and ruff.
  • Thread-safe and asyncio-safe. Compile once at startup, evaluate from anywhere.
  • Batteries included. Typed bindings, injectable Python functions, JSONata libraries, evaluation timeouts, and access to the generated source.

Contents

Port of jsonata-jvm-compiler (Java) — same pipeline, same design, a different host runtime.

Requirements

Requirement Version
Python 3.11+
regex 2023.0.0+ (Oniguruma-equivalent regex engine — used for /pattern/flags literals and the $match, $replace, $split, $contains functions)

Getting started

1. Install

pip install jsonata2py

2. Compile an expression

import jsonata2py as jsonata

expr = jsonata.compile("Account.Order.Product.Price * 1.2")

compile() runs the full pipeline once and returns a reusable, thread-safe object. Compile expressions at startup and reuse them for every request — do not call compile() on the hot path.

jsonata.compile() is a module-level convenience backed by a lazily-created, process-wide JsonataExpressionFactory. For repeated compilation in a hot path, or anything beyond a script, construct your own factory and reuse it:

factory = jsonata.JsonataExpressionFactory()
expr = factory.compile("Account.Order.Product.Price * 1.2")
exprs = factory.compile_all([
    "Account.Order.Product.Price * 1.2",
    "$sum(items.price)",
    'status = "active"',
])

compile_all exists for API parity with the Java library, where batching many expressions into one javac invocation was worth roughly 10x. There is no equivalent win here — Python's compile() builtin costs microseconds to low milliseconds per call regardless of batching — so compile_all is implemented as a plain loop and kept only so code written against both libraries compiles unchanged.

3. Evaluate against data

input_data = {
    "Account": {
        "Order": {
            "Product": {"Price": 50.0}
        }
    }
}

result = expr.evaluate(input_data)  # -> 60.0

evaluate() accepts and returns plain Python values: dict, list, str, int, float, bool, None (JSON null), or jsonata.MISSING (JSONata's undefined — never conflated with None). The same CompiledExpression instance can be evaluated concurrently from multiple threads.

Exception types

Exception When raised
JsonataCompilationError compile() — the expression is syntactically invalid or (rarely) the generated code fails to compile
JsonataEvaluationError evaluate() — the expression cannot be applied to the given input (type mismatch, division by zero, etc.)
try:
    expr = factory.compile(expression)
    result = expr.evaluate(data)
except jsonata.JsonataCompilationError as e:
    ...  # bad expression -- e.error_code, e.message, e.__cause__ carries a ParseError with source position
except jsonata.JsonataEvaluationError as e:
    ...  # bad input or runtime error -- e.error_code is a JSONata error code like "T2001"

JSONata language features

The library implements all JSONata language features, functions as first-class values included: a function can be stored in a variable, put in an array or object, passed to and returned from another function, and carried across the binding boundary in either direction — see Functions as values.

Bindings

Bindings let you inject named values and Python functions into an expression at runtime. Inside the expression they are referenced as $name (values) or called as $name(args...) (functions).

Per-evaluation bindings

Pass a JsonataBindings instance as the second argument to evaluate() to supply values or functions for a single call:

expr = factory.compile("$taxRate * subtotal")

bindings = jsonata.JsonataBindings().bind_value("taxRate", 0.2)

result = expr.evaluate({"subtotal": 500}, bindings)  # -> 100.0

Per-evaluation bindings are not stored on the expression instance and do not affect other calls.

Permanent bindings

Use assign() and register_function() to attach bindings permanently to an expression instance. They apply to every subsequent evaluate() call.

expr = factory.compile("$round2($taxRate * subtotal)")

# Permanent value
expr.assign("taxRate", 0.2)

# Permanent function
@jsonata.bound_function("<n:n>")
def round2(n: float) -> float:
    return round(n, 2)

expr.register_function("round2", round2)

r1 = expr.evaluate({"subtotal": 100})  # -> 20.0
r2 = expr.evaluate({"subtotal": 333})  # -> 66.6

Permanent bindings are isolated per instance — assigning to one CompiledExpression does not affect any other.

Precedence

When both a permanent binding and a per-evaluation binding exist for the same name, the per-evaluation binding wins.

Functions as values

A bound function is not only callable — $name on its own is a function value, so it can be passed to a higher-order built-in, piped through ~>, or handed to another bound function:

bindings = jsonata.JsonataBindings().bind_function("double", doubler)

factory.compile("$map([1,2,3], $double)").evaluate(data, bindings)  # -> [2, 4, 6]
factory.compile("5 ~> $double").evaluate(data, bindings)            # -> 10
factory.compile("$type($double)").evaluate(data, bindings)          # -> "function"

This is what makes a library export usable as an argument as well as a call target, since exports are supplied through register_function.

The reverse also holds: a function value can be bound with bind_value and called by name. jsonata2py.runtime.lambdas.lambda_node builds one from a Python callable, with the number of parameters it takes:

from jsonata2py.runtime.lambdas import lambda_node

times_ten = lambda_node(lambda x: x * 10, 1)

bindings = jsonata.JsonataBindings().bind_value("f", times_ten)

factory.compile("$f(3)").evaluate(data, bindings)          # -> 30
factory.compile("$map([1,2], $f)").evaluate(data, bindings)  # -> [10, 20]

Both maps are consulted, and the one that matches the position wins: $name in value position prefers a value binding, $name(...) at a call site prefers a function binding.

Arity. How many arguments reach a bound function used as a value is decided by its declared signature — <nn:b> makes a two-argument function, so $sort([2,3,1], $desc) receives a comparator pair and $map supplies the index. A signature that does not pin the arity down (absent, unparseable, or variadic) yields a one-argument function value. This is the same limitation hand-written JSONata lambdas have: a packed argument tuple is an array, and so is a single array argument. Declare a fixed arity to receive several arguments.

Implementing a bound function

Two ways to bind a Python function:

The bound_function decorator — plain positional arguments, the signature declares the arity:

@jsonata.bound_function("<n:n>")
def round2(n: float) -> float:
    return round(n, 2)

A JsonataBoundFunction-shaped object — for cases needing access to the raw JsonataFunctionArguments (out-of-range access returns jsonata.MISSING rather than raising):

class Adder:
    def get_function_signature(self) -> str | None:
        return "<nn:n>"

    def apply(self, args: jsonata.JsonataFunctionArguments):
        return args.get(0) + args.get(1)

Either form may raise JsonataEvaluationError from apply/the function body.

Function signature syntax

The signature has the form <params:return> where params is a sequence of type symbols and return is a single type symbol.

Simple types

Symbol Type
b Boolean
n number
s string
l null

Complex types

Symbol Type
a array
o object
f function
j any JSON type — equivalent to (bnsloa)
u Boolean, number, string, or null — equivalent to (bnsl)
x any type at all, functions included — equivalent to (bnsloaf)
(sao) union: string, array, or object

Parametrised types: a<s> (array of strings), a<x> (array of any type), f<n:n> (a function from number to number). A parametrised f requires a function, but the argument function's own parameter and return types are not checked — jsonata-js does not check them either.

An argument declared f that is not a function is rejected with T0410. Note that j is documented by the JSONata spec as excluding functions but does not reject one here; declare f when you require a function.

Option modifiers appended to a type symbol:

Modifier Meaning
+ One or more arguments of this type (variadic)
? Optional argument
- Use the context value ("focus") if the argument is missing

Example: $length has signature <s-:n> — accepts a string (using context as focus if omitted) and returns a number.

JSONata libraries

The bindings above are written in Python: a bound function per function, an assign per value, repeated for every expression that needs them. A library is the same set of bindings written in JSONata instead — once, in one file — and applied to any expression that needs it.

A library is nothing more than a definition expression: ordinary JSONata that binds names and returns the names to export.

(
  $vatRate := 0.2;
  $round2  := function($n){ $round($n, 2) };
  $gross   := function($net){ $round2($net * (1 + $vatRate)) };
  $format  := function($n){ "£" & $string($round2($n)) };

  ["gross", "format", "vatRate"]
)

That is a complete, valid JSONata expression. Evaluate it in any JSONata engine and it returns ["gross", "format", "vatRate"] — the export list is the expression's result, not a parameter passed from Python. So a definition file can be linted, tested and run by tools that know nothing about this library, and it states its own interface: nothing outside it decides what it provides.

billing = factory.compile_library(definition)

billing.functions   # dict[str, JsonataBoundFunction] -- gross, format
billing.constants    # dict[str, Any]                  -- vatRate

Each exported name lands in one dict or the other according to what it evaluated to — the definition never says which is which. Names it binds but does not export ($round2 here) stay private, while remaining reachable from the exported functions.

Providing bindings from a library

use_library applies a whole library, functions and constants together, so the caller never has to know which name is which. On the expression it is permanent, for the lifetime of that instance:

invoice = factory.compile("lines.$gross(amount) ~> $sum() ~> $format()")

invoice.use_library(billing)

or per evaluation, when different calls need different libraries:

bindings = jsonata.JsonataBindings().use_library(billing)

invoice.evaluate(data, bindings)

It returns the same JsonataBindings, so libraries and one-off bindings compose in a single expression:

bindings = (
    jsonata.JsonataBindings()
    .use_library(billing)
    .use_library(formatting)
    .bind_value("today", today)
)

Applying two libraries that export the same name leaves the later one in place, exactly as re-binding a name always does.

Either way the expression sees $gross(...), $format(...) and $vatRate exactly as if they had been written in Python — the precedence rules above apply unchanged, so a per-evaluation binding still wins over a library one registered permanently.

Applying a library to every expression in an application is one line each:

for expr in factory.compile_all(expressions):
    expr.use_library(billing)

What a definition can contain

Anything JSONata can express. Exported functions may be recursive, mutually recursive, closures over private helpers, λ-notation, functions returned by other functions, ~> chains, or partial applications:

(
  $pi := 3.1415926535897932384626;

  /* private helpers — not exported, still reachable */
  $product   := function($a, $b) { $a * $b };
  $factorial := function($n) { $n = 0 ? 1 : $reduce([1..$n], $product) };

  $sin := function($x){ $cos($x - $pi/2) };
  $cos := function($x){
    $x > $pi ? $cos($x - 2 * $pi) : $x < -$pi ? $cos($x + 2 * $pi) :
      $sum([0..12].($power(-1, $) * $power($x, 2*$) / $factorial(2*$)))
  };

  ["sin", "cos", "pi"]
)

Constants are values, not expressions: the definition runs once, when the library is compiled, so $total := $sum([1..10]) exports the number 55. Functions, by contrast, run whenever they are called.

The export list is itself an expression — ["sin", "cos"] is the usual form, a single "sin" works, and so does a list computed at definition time. A definition that forgets its export list ends on its last binding and therefore returns a function; that is rejected with must return an array of function names.

Exported functions can also be called straight from Python, with no expression involved:

gross = billing.functions["gross"]
result = gross.apply(jsonata.JsonataFunctionArguments([100]))

Signatures

Each exported function reports a JSONata signature:

Definition Reported signature
$twice := function($x)<n:n>{ $x * 2 } <n:n> — the declared one
$volume := function($l, $w, $h){ ... } <j?j?j?:j> — synthesised, all-optional
$normalize := $uppercase ~> $trim none — arity known only at call time

The synthesised form is deliberately permissive: JSONata lets a lambda be called with fewer arguments than it declares (the rest are undefined), and j applies no coercion — so an exported function accepts exactly what the same function accepts inside JSONata. Ask for something stricter with a signature override:

lib = factory.compile_library(
    definition,
    jsonata.JsonataLibraryOptions().with_signature("$gross", "<n:n>"),
)

# "<n:n>" coerces at the boundary: $gross("100") works

Lifetime and options

A library owns one generated module, so build it once at startup and keep it — the same advice as compile(). Exported functions are thread-safe and may be called concurrently.

JsonataLibrary supports the with statement; close() retires the exported functions (calling one afterwards raises JsonataEvaluationError), which is only worth doing when the lifetime should be explicit. Constants keep working — they are ordinary values. Letting the library become unreachable releases everything.

JsonataLibraryOptions also carries the document the definition is evaluated against (with_input, for a definition that reads from data) and the bindings visible while it runs (with_bindings).

A definition must be self-contained

Every name a definition uses has to come from somewhere it controls: a name it binds itself, a JSONata built-in, or a name handed to it at build time. Anything else is rejected when the library is compiled:

($withVat := function($net){ $net * (1 + $vatRate) }; ["withVat"])

-> JsonataCompilationError: The definition expression uses $vatRate, which it does not bind
   and which is not a JSONata built-in. Bind it in the definition, or supply it through
   JsonataLibraryOptions.bindings.

The alternative — resolving $vatRate against whatever happens to be bound where $withVat is called — would make a library's behaviour depend on its caller, and would make a typo ($rat for $rate) indistinguishable from a deliberate hook. Failing at build time names both the problem and the fix.

To parameterise a library, supply the values when you build it:

lib = factory.compile_library(
    definition,
    jsonata.JsonataLibraryOptions().with_bindings(
        jsonata.JsonataBindings().bind_value("vatRate", rate)
    ),
)

Those names are then in scope for the definition, and are captured by the functions it exports.

Lambda parameters, bindings inside nested blocks, forward references between siblings (mutual recursion), and path bindings (@$v, #$i) all count as bound — only genuinely unresolvable names are reported.

One further semantic worth knowing: the caller's evaluation is reused. Called from inside an expression, an exported function shares that evaluation's recursion budget (100 nested calls) and its set_timeout deadline.

Advanced usage

Evaluation timeout

Call set_timeout(timeout_ms) on an expression instance to cap how long a single evaluate() call may run. If the deadline is exceeded, a JsonataEvaluationError with error code U1001 is raised.

expr = factory.compile("...")
expr.set_timeout(500)  # 500 ms wall-clock limit per evaluate() call

try:
    result = expr.evaluate(data)
except jsonata.JsonataEvaluationError as e:
    if e.error_code == "U1001":
        ...  # evaluation exceeded 500 ms

Pass 0 to remove the timeout. The timeout applies to all future evaluate() calls on the instance; concurrent calls on the same instance each track their own independent deadline (per-evaluation state lives in a contextvars.ContextVar, not shared mutable state — see Thread safety). Setting a timeout has no measurable overhead on evaluations that complete before the deadline.

Inspecting the source expression

expr = factory.compile("$sum(items.price)")
print(expr.source_jsonata)  # -> "$sum(items.price)"

Accessing the generated Python source

factory.translate() runs the pipeline up to source generation without compiling it — useful for debugging or inspection. The output format is unstable across versions.

python_source = factory.translate("price * qty")
print(python_source)

Loading pre-generated Python source

If you have previously generated and saved a source string, load it directly without re-parsing:

from jsonata2py.loader.loader import ExpressionLoader

loader = ExpressionLoader()
entry_point, source_jsonata = loader.load(python_source)

Performance

jsonata2py translates each expression to Python source once, then evaluates that compiled code many times. Compilation costs more than the alternatives; evaluation costs less. Everything below follows from that trade.

Measured against the other PyPI implementations

Same expression, same input document, same acceptance check — all four produce identical, verified-correct output. The workload is the analytical benchmark the Java sibling project uses: variable bindings, nested navigation, array filtering, $sum, $count, $average, $max, $min, $distinct, string operations, arithmetic and a conditional.

jsonata2py jsonatapy jsonata-rs jsonata-python
Implementation translator, pure Python native, Rust/PyO3 native, Rust/PyO3 interpreter, pure Python
Evaluation (dictdict) 106 µs 285 µs 517 µs † 5 797 µs
Relative baseline 2.69x slower 4.88x slower † 54.7x slower
Throughput 9 434/s 3 509/s 1 934/s † 173/s
Cold compilation 10.8 ms 0.25 ms 1.11 ms † 8.0 ms
Wheels on PyPI pure Python (any platform) 16, incl. Windows 5 — no Windows wheel pure Python (any platform)

Versions measured: jsonata2py 0.1.2, jsonatapy 2.2.7, jsonata-rs 0.1.4, jsonata-python 0.7.0 — each the latest PyPI release at the time. Figures are the pooled median of two 2026-09-05 runs, re-measured across four sessions.

Read this table with a ±10% error bar. The two libraries that never changed drift that much between sessions (jsonatapy 250-285 µs, jsonata-python 5 344-5 797 µs), and that drift is the yardstick: differences smaller than it are not differences.

Compilation is slower than it was, and that is a deliberate cost. Sequence-scan fusion generates a specialised loop per group, growing this expression's module from ~17 KB to ~29 KB — most of the extra 3 ms is CPython compiling it. The trade is a one-time ~3 ms against ~30 µs per evaluation, so it repays after ~100 evaluations and is free thereafter, since compiled expressions are cached. If you compile constantly and evaluate rarely, see the break-even table.

jsonata-rs and jsonata-python both install a top-level jsonata module and cannot coexist in one environment, so the jsonata-rs column (here and below) is carried over from an earlier session on the same machine with its ratios recomputed. That makes its 4.88x a floor rather than an estimate — scaled by the drift the unchanged libraries show, the like-for-like figure is ~5.5x. It is the row to re-measure in a shared environment rather than to read closely.

Why a pure-Python library beats two native ones here

"Pure Python beats Rust" should not be taken at face value; two effects stack up.

The compiled Python code is genuinely fast. Translation removes per-node visitor dispatch, per-element callback frames and repeated type re-checking — see Where the speed comes from. A CPython function call costs ~85 ns and cannot be inlined away, so an interpreter's per-node overhead is irreducible; generated straight-line code never pays it.

A native extension must move your data across the FFI boundary. Every evaluate() converts the input dict into the extension's own representation and converts the result back — a cost that scales with data size, not expression complexity. jsonata2py generates code that reads the objects you already hold, and converts nothing.

That second effect is why the margin widens with document size. On $sum(items.value), a deliberately trivial expression:

$sum(items.value) n=10 n=100 n=1 000 n=10 000
jsonata2py 2.0 µs 10.2 µs 94 µs 917 µs
jsonatapy 2.6 µs 16.6 µs 157 µs 1 627 µs
jsonata-rs † 6.0 µs 41.0 µs 373 µs 4 753 µs
jsonata-python 69.3 µs 480 µs 4 699 µs 53 508 µs

jsonata2py leads at every size, and its lead over jsonatapy grows from 1.30x at n=10 to 1.77x at n=10 000 — the marshalling tax becoming visible. The trend is the durable part; the endpoint is not. This row drifts ~25% between sessions (more than the main table's 4-10%), so trust the ordering and the direction, not the ratio at any one size. Sequence-scan fusion does not affect it: a lone $sum has no sibling operations to fuse with, and a paired A/B moves it by less than 1%.

Even on the comparison most favourable to jsonatapy — its evaluate_json(), which takes and returns JSON text and never materialises a Python object graph — jsonata2py doing json.loadsevaluatejson.dumps is 172 µs against its 284 µs, still 1.65x ahead.

The honest summary is narrower than "faster than Rust": jsonata2py is fastest when you evaluate a compiled expression against Python objects you already hold, which is the common case for an embedded JSONata library. A native library still wins when you compile constantly and evaluate rarely — its compile step is 43x cheaper.

When compilation pays for itself

Compilation is a one-time cost; evaluation repeats. Dividing the extra compile time by the per-evaluation saving gives the break-even on this workload:

Compared with Extra compile cost Saved per evaluation Break-even
jsonatapy +10.55 ms 179 µs ~59 evaluations
jsonata-rs +9.69 ms 411 µs ~24 evaluations
jsonata-python +2.8 ms 5 691 µs the first evaluation

Compile once at startup, evaluate on the hot path, and compilation stops mattering after a few dozen calls. Compile inside a request handler and you pay it every time. Note that jsonata2py no longer compiles faster than the reference interpreter — one evaluation more than repays the difference, but "cheaper on both axes" is not a claim this table supports.

Repeat compilation of the same text

Compiling the same expression text again is far cheaper than the table suggests, in two tiers. While an earlier CompiledExpression for that text is still reachable, a repeat compile() reuses its entry point and costs ~0.8 µs. Once that has been collected, the factory still holds the compiled code object, and re-executing it into a fresh module namespace costs ~15 µs (~30 µs in a process with a large live heap) rather than re-running the pipeline — 360-720x cheaper than the 10.8 ms full compile.

Neither tier can leak: the first holds only a weak reference to the entry point, and the second holds a code object referencing neither a module namespace nor a CompiledExpression, so generated modules stay collectible (tests/test_memory.py asserts this). The code-object tier is bounded by generated-source bytes rather than entry count.

This does not relax the "don't call compile() on the hot path" guidance: text the cache has never seen, or has already evicted, still pays full price.

Where the speed comes from

Compile-time work that a tree-walking interpreter repeats on every evaluation: per-node visitor dispatch and type-check chains disappear; a JSONata variable becomes a Python local; a built-in call resolves directly to the runtime function the translator already chose; and/or are emitted as Python's own short-circuiting operators rather than helper calls taking a closure per operand; sorting uses a native key-sort instead of a cmp_to_key comparator; and fused aggregate paths ($count(x[field = "value"]), $sum(x.field)) run as a single loop with no intermediate list.

Runtime work removed in the same spirit — CPython cannot inline a small function, so the fix is to not call one:

  • Fused aggregate and count helpers are monomorphized per value kind, so a per-element comparison is a branch in one loop rather than a closure. sum(1 for ...) became a plain for, because PEP 709 inlines comprehensions but not generator expressions.
  • eq/ne settle scalar comparisons inline instead of delegating to the recursive deep-equality walk.
  • $distinct deduplicates scalars through a set per JSONata kind and buckets composites by a structural hash, replacing an O(n²) pairwise scan.
  • Delegating built-ins no longer re-execute an import per call, and the timeout guard no longer does a ContextVar lookup per callback-taking helper.

Sequence-scan fusion is the largest single win since, and attacks a cost none of the above touches. Analytical JSONata binds a sequence once and interrogates it repeatedly:

$employees := company.departments.employees;
$totalPayroll := $sum($employees.salary);
$avgSalary    := $average($employees.salary);
$topSalary    := $max($employees.salary);
$seniorCount  := $count($employees[level = "senior"]);

Each of those is one allocation-free loop — but they are twelve separate loops over the same elements, reading salary four times each and level five times. The unit of waste is the field read, not the loop. translator/scan_fusion.py groups a block's operations per bound sequence and emits one helper that reads each distinct field once, feeding every accumulator from that read: 551 field reads per evaluation down to 320, and 1 955 function calls down to 1 253.

Two design notes, because both are places the obvious approach is wrong:

  • It plans, it does not rewrite. Operations are collected only from positions the block evaluates unconditionally — a whitelist, never a blacklist. Hoisting an aggregate out of an untaken branch would run it on data the expression never looks at.
  • Unusual data falls back rather than being re-implemented. The generated loop handles only the arm every real document takes — a field holding a plain int or float. Anything else flags the slot, and the use site redoes that one operation with the original helper at its original position.

Alongside it, $seq[field = <literal>] compiles to a monomorphized filter_field_eq call instead of a per-element callback, and an object built from literal keys the translator has proved distinct skips object_of's per-key duplicate check.

On the comparison with the Java sibling. Its headline is ~40x over JSONata4Java and this port measures ~54x over jsonata-python, but the ratios divide by different interpreters and are not comparable. The Java number comes from JIT-compiled bytecode replacing an AST walker; CPython has no JIT, so generated Python source runs on the very same interpreter. The win here is entirely the removal of per-node and per-element overhead — worth about as much, proportionally, as the JVM's machine code.

Unlike the Java library, batching many compile() calls into compile_all is not a meaningful win here — see Compile an expression.

Reproducing these numbers

pytest tests/benchmarks -m benchmark

Measured on an Intel Core i7-1185G7 @ 3.00 GHz (4 cores), Windows 11, CPython 3.14.3. Methodology, because cross-library benchmarks are easy to get wrong:

  • Trials are interleaved (round-robin, repeated) so machine drift affects every library equally, and the reported figure is the median of the pooled samples.
  • The two unchanged libraries are the instrument check. When they move together, the run is measuring the machine, not the libraries — one 2026-09-05 run was discarded on exactly that signal, every row 40-50% high because the CPU was still clocked at 1.8 GHz of its 3.0 GHz nominal after a full test suite.
  • Compile and evaluation rounds are never mixed. Discarded modules from cold-compile rounds create GC pressure that lands on whichever allocation-heavy library is measured next — that alone once made jsonata-python look 2.5x slower than it is.
  • jsonata2py's compile cache is deliberately defeated for the compile row (a fresh factory plus a unique inert comment), so it is a genuine cold compile against libraries that have no cache at all.
  • jsonata-rs and jsonata-python were measured in separate virtualenvs, for the reason above, with jsonata2py present in both as the normalising anchor.
  • Gains are taken as a paired A/B — two source trees, one per arm, alternating in separate processes within a single session — because a gain attributed against a number from an earlier session is not attributable at all.

Timings are not portable between machines. Regressions against your own baseline are gated by an opt-in check: pytest tests/benchmarks -m perfgate --perf-record to record, then -m perfgate to enforce. Baselines are not committed.

Choosing between jsonata2py and the alternatives

Use jsonata2py when you evaluate the same expression many times against Python objects. That is where the design pays: compile once at startup, then every evaluation runs generated Python code directly over the dicts and lists you already have, with no marshalling and no AST walk. Concretely, it is the right default if you hold a compiled expression on a service, a worker, or a pipeline stage and call it per request, per row, or per message — and especially if you want no native dependency, no build toolchain, and one wheel that installs everywhere. It is also the only one of the four with typed bindings, injectable Python functions, JSONata libraries, an evaluation timeout, and full mypy --strict coverage, so it fits best when JSONata is a first-class part of your application rather than an occasional utility call.

Prefer jsonatapy for short-lived work where compilation dominates: its cold compile is ~43x cheaper, so under ~59 evaluations of a given expression it comes out ahead. That is the one workload shape where it clearly wins — a CLI, a lambda, or anything that compiles an expression, uses it a handful of times, and exits. It also ships Windows wheels and has the broadest wheel coverage of the native options.

Two reasons to reach for it that this README used to give no longer hold: its text-in/text-out evaluate_json() is no longer faster than jsonata2py doing json.loadsevaluatejson.dumps (284 µs against 172 µs), and it is no longer faster on simple expressions over small documents either — see the scaling table.

Prefer jsonata-rs if you specifically want its Rust implementation of the jsonata-java reference semantics and you are on Linux or macOS. Be aware of two practical constraints: it publishes no Windows wheel, so Windows users need a Rust toolchain to install it at all; and it installs a top-level module named jsonata — the same name jsonata-python uses — so the two silently overwrite each other and cannot coexist in one environment. On this workload it measured ~4.9x slower than jsonata2py.

Prefer jsonata-python when you want the closest thing to the reference implementation and performance genuinely does not matter — a one-off script, a test fixture, a CLI that evaluates an expression once and exits. It is a pure-Python AST interpreter, which makes it easy to read and debug, but it evaluates ~54x slower than jsonata2py here. It does now compile ~2.8 ms faster — the one axis on which it leads — and a single evaluation is enough to give that back, so there is still no workload shape where it is the faster choice overall.

Thread safety

A JsonataExpressionFactory instance and all CompiledExpression instances it produces are fully thread-safe. evaluate() is stateless — each call reads the input independently and returns a new value without modifying any shared state. Per-evaluation state (bindings overlay, timeout deadline, call depth) lives in a contextvars.ContextVar, which is also what makes evaluation correct across asyncio tasks, not just OS threads: each task runs in its own copied context.

# Compile once at startup
total_price = factory.compile("$sum(items.(price * qty))")

# Call concurrently from any number of threads
import concurrent.futures
with concurrent.futures.ThreadPoolExecutor(max_workers=16) as pool:
    pool.submit(total_price.evaluate, request_data)

Architecture overview

expression string
       |
       v
  Parser.parse()                  -> AstNode (frozen dataclass hierarchy)
       |
       v
  optimize()                      -> AstNode (constant-folded, simplified)
       |
       v
  Translator.translate()          -> Python 3.11+ source string
       |
       v
  ExpressionLoader.load()         -> CompiledExpression (compiled, in-memory)
       |
       v
  expr.evaluate(data)             -> a plain Python value

JsonataExpressionFactory.compile() runs this entire pipeline in a single call.

Package structure

Module Contents
jsonata2py Public API: compile, compile_all, CompiledExpression, JsonataExpressionFactory, JsonataBindings, JsonataBoundFunction, JsonataFunctionArguments, bound_function, JsonataLibrary, JsonataLibraryOptions, JsonataError and its subclasses, MISSING
jsonata2py.parser Parser, lexer, tokens, AST node dataclasses
jsonata2py.optimizer optimize
jsonata2py.translator Translator and the code-generation helpers it uses
jsonata2py.runtime Runtime support: core, context (the ContextVar-based evaluation state), lambdas, sequences, signature, values, plus strings/, numeric/, datetime/ built-in packages
jsonata2py.loader ExpressionLoader

Sibling implementations

The same parse → optimise → translate → compile pipeline exists for three host runtimes:

Runtime Project Host code it generates Speedup vs. that runtime's reference interpreter
JVM jsonata-jvm-compiler (Java 21) — docs · Maven Central · source Java source, compiled in-memory by javac ~56× vs JSONata4Java
JavaScript jsonata2jsdocs · npm · source a JS function, loaded with new Function ~53×–60× vs jsonata
Python jsonata2py (this project) — docs · PyPI · source Python source, compiled by the host compile() ~54× vs jsonata-python

The JVM implementation is the original, and is the compiler behind valem.run's reactive computation engine.

License

MIT — see LICENSE.

Release files for jsonata2py 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for jsonata2py 0.1.2
File Size Uploaded
jsonata2py-0.1.2.tar.gz 407.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for jsonata2py 0.1.2
File Interpreter ABI Platform
jsonata2py-0.1.2-py3-none-any.whl Python 3 none any Details

Total release size: 671.4 kB

Release files / jsonata2py-0.1.2.tar.gz

Download URL jsonata2py-0.1.2.tar.gz
Size 407.3 kB
Tags Source
SHA-256 checksum
How to use checksums
e39e4a8d71e87e9514ba0daa367734aec92d7a82b460abd19381202c2ac20a70
BLAKE2b-256 checksum
How to use checksums
94a66b6b653a9dc30cfd4f3b06762408de003500ea72f5e7f85978df12aa971c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 5, 2026.

Transparency log

Release files / jsonata2py-0.1.2-py3-none-any.whl

Download URL jsonata2py-0.1.2-py3-none-any.whl
Size 264.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
173e55ecf1c656e4773b74991a1fe4810e1baee4b96425d14761249f0d59e939
BLAKE2b-256 checksum
How to use checksums
e3b2bfc5097f11740b378ed0a3a380f4352715536e837b82dda5cf8870a68c9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 5, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.2 This release

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page