A high-performance computer algebra system for Python
Project description
Alkahest
A high-performance computer algebra system for Python built for both humans and agents. Symbolic operations run orders of magnitude faster than SymPy and can run on modern accelerated hardware. Every computation produces a derivation log; a meaningful subset can export Lean 4 proofs for independent verification.
Stack: Rust kernel → FLINT/Arb (polynomials, ball arithmetic) → egglog (e-graph simplification) → MLIR/LLVM (native and GPU codegen) → PyO3 → Python
Install
Prerequisites
- Rust stable ≥ 1.76 and nightly (for sanitizer/bench builds):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh rustup toolchain install nightly
- LLVM 15:
apt install llvm-15 libllvm15 llvm-15-dev/brew install llvm@15 - FLINT ≥ 2.9 (includes GMP and MPFR):
apt install libflint-dev/brew install flint
Build
pip install maturin
maturin develop --release
Optional Cargo features: parallel (sharded pool + parallel F4), egraph (egglog backend), jit (LLVM JIT), groebner (Gröbner solver + Diophantine + homotopy), cuda (NVPTX codegen).
Quick start
import alkahest
from alkahest import ExprPool, diff, simplify, integrate, compile_expr, sin, exp
pool = ExprPool()
x = pool.symbol("x")
# Differentiation with derivation log
result = diff(sin(x ** 2), x)
print(result.value) # 2*x*cos(x^2)
print(result.steps) # list of rewrite steps
# Integration
r = integrate(exp(x), x)
print(r.value) # exp(x)
# Simplification
s = simplify(x + pool.integer(0))
print(s.value) # x
# JIT-compile to native code
f = compile_expr(x ** 2 + pool.integer(1), [x])
print(f([3.0])) # 10.0
Explicit polynomial representations
from alkahest import ExprPool, UniPoly, MultiPoly, RationalFunction
pool = ExprPool()
x = pool.symbol("x")
y = pool.symbol("y")
# FLINT-backed univariate polynomial
p = UniPoly.from_symbolic(x ** 3 + pool.integer(-2) * x + pool.integer(1), x)
print(p.degree()) # 3
print(p.coefficients()) # [1, -2, 0, 1]
# GCD
a = UniPoly.from_symbolic(x ** 2 + pool.integer(-1), x)
b = UniPoly.from_symbolic(x + pool.integer(-1), x)
print(a.gcd(b)) # x - 1
# Factorization over ℤ (FLINT — Zassenhaus / van Hoeij)
fac = a.factor_z()
print(int(fac.unit), fac.factor_list()) # unit and list of (UniPoly, exponent)
# Dense univariate mod p (Berlekamp / Cantor–Zassenhaus via FLINT nmod)
fp = alkahest.factor_univariate_mod_p([1, 0, 1], 2) # x^2+1 over GF(2)
print(fp.factor_list())
# Rational function with automatic GCD normalization
rf = RationalFunction.from_symbolic(x ** 2 + pool.integer(-1), x + pool.integer(-1), [x])
print(rf) # x + 1
# Sparse multivariate polynomial
mp = MultiPoly.from_symbolic(x ** 2 * y + x * y ** 2, [x, y])
print(mp.total_degree()) # 3
Symbolic summation (Gosper / recurrences)
Indefinite and definite sums for terms whose shift ratio F(k+1)/F(k) is rational in k—typically polynomials multiplied by gamma of a linear expression in k. General multivariate Zeilberger automation is partial; use verify_wz_pair(F, G, n, k) to check a discrete telescoping certificate after simplification.
import alkahest
pool = alkahest.ExprPool()
k = pool.symbol("k")
n = pool.symbol("n")
term = alkahest.simplify(k * alkahest.gamma(k + pool.integer(1))).value
print(alkahest.sum_indefinite(term, k).value)
print(alkahest.sum_definite(term, k, pool.integer(0), n).value)
fib = alkahest.solve_linear_recurrence_homogeneous(
n, [(-1, 1), (-1, 1), (1, 1)], [pool.integer(0), pool.integer(1)]
)
Difference equations / rsolve
Linear recurrences in one sequence with constant coefficients and a polynomial right-hand side (in the recurrence index n). Write shifts as pool.func("f", [n + integer]), pass the equation as a single expression that simplifies to zero, and optional initials as {n: value} to fix the C0, C1, … symbols.
import alkahest
pool = alkahest.ExprPool()
n = pool.symbol("n")
f = lambda *a: pool.func("f", list(a))
# f(n) - f(n-1) - 1 == 0 → general solution n + C0
eq = alkahest.simplify(f(n) - f(n + pool.integer(-1)) - pool.integer(1)).value
print(alkahest.rsolve(eq, n, "f", None))
# Fibonacci with f(0)=0, f(1)=1
fib_eq = alkahest.simplify(
f(n) - f(n + pool.integer(-1)) - f(n + pool.integer(-2))
).value
print(alkahest.rsolve(fib_eq, n, "f", {0: pool.integer(0), 1: pool.integer(1)}))
Non-homogeneous order > 2 and sequences with polynomial coefficients in n are not implemented yet (see RsolveError / E-RSOLVE-*).
Symbolic products (∏)
product_definite(term, k, lo, hi) closes (\prod_{i=\texttt{lo}}^{\texttt{hi}} \texttt{term}(i)) (inclusive) when term simplifies to ℚ(k) whose numerator/denominator factor into ℤ-linear polynomials — the implementation expands each linear factor (\alpha k+\beta) with (\Gamma) shifts (\Gamma(\texttt{hi}+\beta/\alpha+1)/\Gamma(\texttt{lo}+\beta/\alpha)) and collects (\alpha^{(\texttt{hi}-\texttt{lo}+1)\cdot e}). product_indefinite returns a Γ/power witness Z(k) with simplify-stable ratio Z(k+1)/Z(k)=term. Product(term, (k, lo, hi)).doit() matches SymPy ergonomics (DerivedResult; use .value). Irreducible quadratics in k, extra symbols besides k, and non-integer powers are rejected (ProductError / E-PROD-*).
import alkahest
pool = alkahest.ExprPool()
k, n = pool.symbol("k"), pool.symbol("n")
P = alkahest.Product(k, (k, pool.integer(1), n))
print(alkahest.simplify(P.doit().value).value)
kp2 = k ** 2
term = alkahest.simplify(
((k + pool.integer(-1)) * (k + pool.integer(1))) / kp2
).value # (k²-1)/k²
print(alkahest.simplify(
alkahest.product_definite(term, k, pool.integer(2), n).value
).value)
Diophantine equations
Two integer unknowns, equation as a single polynomial = 0: linear families a·x + b·y + c = 0, sum of two squares x² + y² = n (finitely many tuples), and unit Pell x² - D·y² = 1 (fundamental solution (x₀, y₀) via the continued-fraction period of √D). Requires the groebner feature in the native build. API: diophantine(equation, [x, y]) → DiophantineSolution with .kind (parametric_linear, finite, pell_fundamental, no_solution) and typed fields.
import alkahest
pool = alkahest.ExprPool()
x, y = pool.symbol("x"), pool.symbol("y")
sol = alkahest.diophantine(pool.integer(3) * x + pool.integer(5) * y - pool.integer(1), [x, y])
assert sol.kind == "parametric_linear"
pell = alkahest.diophantine(x**2 - pool.integer(2) * y**2 - pool.integer(1), [x, y])
assert pell.kind == "pell_fundamental" and int(str(pell.fundamental[0])) == 3
Quadratics with an x·y cross-term, unequal ellipse coefficients, or generalized Pell right-hand sides ≠ 1 are not implemented yet (DiophantineError / E-DIOPH-*).
Integer number theory
Submodule alkahest.number_theory: isprime, factorint, nextprime, totient, jacobi_symbol, nthroot_mod (prime modulus; k=2 or \gcd(k,p−1)=1), discrete_log (linear scan for moderate primes), plus quadratic DirichletChi on odd square-free conductors. Implemented via FLINT fmpz in the Rust kernel; raises NumberTheoryError (E-NT-*) on invalid input.
from alkahest import NumberTheoryError
from alkahest.number_theory import discrete_log, factorint, isprime, nthroot_mod
assert isprime(2**127 - 1)
assert factorint(2**32 - 1)[65537] == 1
assert discrete_log(13, 3, 17) == 4
assert pow(nthroot_mod(144, 2, 401), 2, 401) == 144 % 401
Noncommutative algebra
Symbols can opt out of multiplicative commutativity: pool.symbol("A", "real", commutative=False). Then A * B and B * A are distinct expressions, and sorting of Mul factors is disabled. The egglog backend automatically falls back to the rule-based simplifier when such symbols appear.
Pauli matrices (names sx, sy, sz) and a minimal orthogonal Clifford pair (cliff_e1, cliff_e2) have built-in rewrite tables; combine default rules with alkahest.simplify_pauli or alkahest.simplify_clifford_orthogonal. See examples/noncommutative.py.
Truncated series / Laurent tail
series(expr, var, point, order) builds a symbolic truncation about (var − point) and appends a BigO(⋯) remainder. Smooth functions use repeated differentiation; simple poles such as 1/x at zero take the rational Laurent path. Series.expr is the pooled sum-plus-order expression; ExprPool.big_o(inner) constructs standalone order bounds.
import alkahest
pool = alkahest.ExprPool()
x = pool.symbol("x")
s_cos = alkahest.series(alkahest.cos(x), x, pool.integer(0), 6)
s_inv = alkahest.series(x ** (-1), x, pool.integer(0), 4)
print(s_cos.expr)
Rigorous interval arithmetic
from alkahest import ExprPool, ArbBall, interval_eval, sin
pool = ExprPool()
x = pool.symbol("x")
result = interval_eval(sin(x), {x: ArbBall(1.0, 1e-10)})
print(result) # guaranteed enclosure of sin(1 ± 1e-10)
String expressions
import alkahest
pool = alkahest.ExprPool()
x = pool.symbol("x")
# Parse a string into a symbolic expression
e = alkahest.parse("x^2 + 2*x + 1", pool, {"x": x})
print(e) # (x^2 + (x * 2)) + 1
# Round-trip: parse then pretty-print
expr = alkahest.parse("sin(x)^2 + cos(x)^2", pool, {"x": x})
print(alkahest.latex(expr)) # \sin\!\left(x\right)^2 + \cos\!\left(x\right)^2
print(alkahest.unicode_str(expr)) # sin(x)² + cos(x)²
Lattice reduction and approximate integer relations
Exact LLL reduction on integer bases lives under alkahest.lattice; for floating constants (as float or decimal strings) guess_relation searches for small integer coefficient vectors whose dot product has tiny residual relative to the working precision:
from alkahest import guess_relation
from alkahest import lattice
basis = lattice.lll_reduce_rows([[2, 15], [1, 21]])
rel = guess_relation(["1", "2", "3"], precision_bits=256)
The relation finder is an augmented-lattice + LLL heuristic, not Ferguson–Bailey PSLQ; treat results as exploratory unless verified independently.
Regular chains / triangular decomposition
Lex-order Gröbner bases yield triangular sets used by the polynomial solver. The triangularize(equations, vars) API returns one or more RegularChain objects (polynomials as GbPoly tiles), splitting along factored bottom univariates when applicable. The built-in solve() routine retries backsolving from an extracted chain when the full basis is not directly triangular enough.
import alkahest
pool = alkahest.ExprPool()
x = pool.symbol("x")
y = pool.symbol("y")
eq1 = x**2 + y**2 - pool.integer(1)
eq2 = y - x
chains = alkahest.triangularize([eq1, eq2], [x, y])
assert len(chains) >= 1
Primary decomposition
Lex-order Gröbner data is used to split ideals via saturations (I : x_i^∞ with (I + (x_i))) and, in the zero-dimensional case, factoring a univariate polynomial in the first Lex variable. primary_decomposition(polys, vars) returns PrimaryComponent objects with .primary() and .associated_prime() Gröbner bases; radical(polys, vars) returns a basis for √I.
import alkahest
pool = alkahest.ExprPool()
x, y, z = pool.symbol("x"), pool.symbol("y"), pool.symbol("z")
comps = alkahest.primary_decomposition([x * y, x * z], [x, y, z])
assert len(comps) == 2
r = alkahest.radical([x**2, x * y], [x, y])
assert r.contains(x)
Differential algebra / Rosenfeld–Gröbner
Polynomial DAEs in implicit form g_i(t, y, y') = 0 can be analysed by prolongation (formal time derivatives of each equation, with the same derivative-state extension rule as Pantelides) and ordinary Gröbner bases over the jet variables. Inconsistent systems yield the unit ideal. Use rosenfeld_groebner(dae, order=..., max_prolong_rounds=...); when Pantelides exhausts its index cap, dae_index_reduce(dae) falls back to this pass.
import alkahest
pool = alkahest.ExprPool()
t = pool.symbol("t")
y = pool.symbol("y")
dy = pool.symbol("dy/dt")
dae = alkahest.DAE.new([dy - y, dy - y - pool.integer(1)], [y], [dy], t)
r = alkahest.rosenfeld_groebner(dae, max_prolong_rounds=2)
assert r.consistent is False
Numerical algebraic geometry / homotopy continuation
Square polynomial systems can be solved numerically with a total-degree homotopy in ℂⁿ ((1-t)·γ·G + t·F), Newton polish on real projections, a conservative Smale-style α heuristic, and ArbBall enclosures attached to each coordinate. Use solve(eqs, vars, method="homotopy") for a list of dict solutions (Expr keys → float). For residuals, certification flags, and enclosures, call solve_numerical(...), which returns CertifiedSolution objects (.coordinates, .smale_certified, .to_dict(), .enclosures(), …).
Ideals whose finite root count in ℂⁿ is strictly below the Bézout bound (often called deficient — e.g. the Katsura family) typically need a polyhedral / mixed-volume start system; only the Bézout start (∏ deg F_i paths) is implemented here.
import alkahest
p = alkahest.ExprPool()
x, y = p.symbol("x"), p.symbol("y")
neg1 = p.integer(-1)
sols = alkahest.solve([x**2 + neg1, y**2 + neg1], [x, y], method="homotopy")
cs = alkahest.solve_numerical([x**2 + neg1], [x])[0]
print(cs.coordinates, cs.smale_certified, cs.enclosures())
Composable transformations
import alkahest
@alkahest.trace
def f(x):
return alkahest.sin(x ** 2)
df = alkahest.grad(f) # symbolic gradient
df_fast = alkahest.jit(df) # compiled gradient
Directory layout
alkahest/
├── alkahest-core/ # Rust kernel
│ ├── src/
│ │ ├── kernel/ # hash-consed expression DAG, ExprPool
│ │ ├── algebra/ # noncommutative Pauli / Clifford rules
│ │ ├── poly/ # UniPoly, MultiPoly, RationalFunction
│ │ ├── simplify/ # e-graph simplification (egglog)
│ │ ├── diff/ # symbolic differentiation
│ │ ├── integrate/ # symbolic integration
│ │ ├── calculus/ # series / limits
│ │ ├── jit/ # LLVM JIT and interpreter
│ │ ├── ball/ # Arb ball arithmetic
│ │ ├── ode/ # ODE analysis
│ │ ├── dae/ # DAE analysis and index reduction
│ │ ├── diffalg/ # Rosenfeld–Gröbner / differential elimination (groebner)
│ │ ├── solver/ # polynomial solving: Gröbner triangular, regular chains, homotopy
│ │ ├── lean/ # Lean 4 proof certificate export
│ │ └── primitive/ # primitive registration system
│ └── benches/ # criterion benchmarks
├── alkahest-mlir/ # MLIR dialect and lowering passes
├── alkahest-py/ # PyO3 bindings (Rust side)
├── python/alkahest/ # Python package
│ ├── _transform.py # trace, grad, jit decorators
│ ├── _pytree.py # JAX-style pytree flattening
│ ├── _context.py # context manager and defaults
│ └── experimental/ # unstable API surface
├── examples/ # runnable Python examples
├── tests/ # Python test suite (pytest + hypothesis)
├── benchmarks/ # Python benchmarks and competitor comparisons
├── fuzz/ # AFL++ fuzz targets
├── docs/ # mdBook and Sphinx documentation
├── alkahest-skill/ # Skill for AI to use alkahest
├── agent-benchmark/ # benchmark for comparing AI use of alkahest vs other CAS
└── scripts/ # CI helpers (API freeze check, error codes)
Expression representations
| Type | Description |
|---|---|
Expr |
Generic hash-consed symbolic expression |
UniPoly |
Dense univariate polynomial (FLINT-backed) |
MultiPoly |
Sparse multivariate polynomial over ℤ |
RationalFunction |
Quotient of polynomials with GCD normalization |
ArbBall |
Real interval with rigorous error bounds (Arb) |
Representation types are explicit — no silent performance cliffs. Conversion between them is always an opt-in call (UniPoly.from_symbolic(...), etc.).
Result objects
Every top-level operation returns a DerivedResult with:
.value— the result expression.steps— derivation log (list of rewrite rules applied).certificate— Lean 4 proof term, when available
Documentation and further reading
- Documentation site — full API reference and user guide
ROADMAP.md— planned milestonesCONTRIBUTING.md— Rust vs Python layer guideTESTING.md— property-based testing, fuzzing, sanitizers, CI tiersBENCHMARKS.md— criterion and Python benchmark suitesexamples/— runnable end-to-end examplesLICENSE— Apache 2.0 license
Stability
Alkahest follows semantic versioning from 1.0. The stable surface is everything re-exported from alkahest_core::stable (Rust) and alkahest.__all__ (Python). Experimental APIs live under alkahest_core::experimental and alkahest.experimental and may change in minor releases.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alkahest-2.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
299d770c5fa731ff291bbf73517ac63ea424a916cf152b6f6afa6d3342382d66
|
|
| MD5 |
78a5b46d777c69b01cfc276794836148
|
|
| BLAKE2b-256 |
0f934f9b195e9bd662577181b8d5f6a28058115169b57e7a364d62fa337cbd83
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp313-cp313-win_amd64.whl -
Subject digest:
299d770c5fa731ff291bbf73517ac63ea424a916cf152b6f6afa6d3342382d66 - Sigstore transparency entry: 1454031905
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a212f9df3d6af5f62f68a3b286b6db75623329229c83e69523360679599bdb98
|
|
| MD5 |
420e57df99daaf745158577834f67bf8
|
|
| BLAKE2b-256 |
a6a335ada75ccc7aefb372684d2d998c5222a8db4e5ca011f937e26254b62d88
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
a212f9df3d6af5f62f68a3b286b6db75623329229c83e69523360679599bdb98 - Sigstore transparency entry: 1454033504
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f414b2aa874d63179e816f6579417b051439520ebdb64d834847f5ce8701299
|
|
| MD5 |
a8af3f90e0beadafe7fa8d417e7ac4c4
|
|
| BLAKE2b-256 |
31fc13361a59cad1e5430158f56f4e9b6abc1aede1de696c6ecd87eaa32def9b
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
4f414b2aa874d63179e816f6579417b051439520ebdb64d834847f5ce8701299 - Sigstore transparency entry: 1454033631
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4dae677983e6fa6363e932885503288de0bdef84002b5cb3443bcdaa775659b
|
|
| MD5 |
9618655d8f9abcc512f41756957c88ef
|
|
| BLAKE2b-256 |
414c616ec1b9f5ceb1d80399b8ef87ce5389370ba69ad40ec7a1b9fc55b5010f
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp312-cp312-win_amd64.whl -
Subject digest:
e4dae677983e6fa6363e932885503288de0bdef84002b5cb3443bcdaa775659b - Sigstore transparency entry: 1454032231
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8db69ffdf9a0b9acb672289e19bd0681b239f5e94b3538c5f2afb21e1e7000a
|
|
| MD5 |
470395c5571bf12cbc4a60fe563b048a
|
|
| BLAKE2b-256 |
7c44fd4f6213b88c15a6da706f85e3afb2272cdcf9b555f9f7cfed835ec763f8
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
c8db69ffdf9a0b9acb672289e19bd0681b239f5e94b3538c5f2afb21e1e7000a - Sigstore transparency entry: 1454032718
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38fc6c2f90b2c464890c63d58e569eb1247b31ee17d84c823a29ef31737e904c
|
|
| MD5 |
4aa6165d4be314c948e8089b36969671
|
|
| BLAKE2b-256 |
3dd2b37b10330e0c594012246d3855e736e0a28bdee63bbbdc66e2fe603b5512
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
38fc6c2f90b2c464890c63d58e569eb1247b31ee17d84c823a29ef31737e904c - Sigstore transparency entry: 1454033250
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
314a088c6881f58de2bef880ed3e92c0aae838a8cbc5ffdc13edf24726e3564e
|
|
| MD5 |
d1bd58b867bcbda2143b479eaea10279
|
|
| BLAKE2b-256 |
06ee7f97eca3b2685a9e071a574621e771c51f080be79fe0a75b99f77c68d6a1
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp311-cp311-win_amd64.whl -
Subject digest:
314a088c6881f58de2bef880ed3e92c0aae838a8cbc5ffdc13edf24726e3564e - Sigstore transparency entry: 1454033051
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc5b59938a18144f9c2c05f68a790fdd97c35bddcb4b410f5da94efbbce91605
|
|
| MD5 |
083a9b06441e55f98a261f3010bdb705
|
|
| BLAKE2b-256 |
5a7702f40ee497e5118bcac1422f1f24b5ff2ac6a6824cd4a9fa5bba1ae69719
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
fc5b59938a18144f9c2c05f68a790fdd97c35bddcb4b410f5da94efbbce91605 - Sigstore transparency entry: 1454032362
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b0fe7defb9397e0bd0f6072da8875fca12e177da612cd4b5dfef8b5c56430b
|
|
| MD5 |
77e66bcec3c36e122f867604d20d24dc
|
|
| BLAKE2b-256 |
4a2040b5f016952a5073c934cda283d68a425ac80b0e55166756abd884fb207b
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
c5b0fe7defb9397e0bd0f6072da8875fca12e177da612cd4b5dfef8b5c56430b - Sigstore transparency entry: 1454032054
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f66896bb6a6c669952fd6089bef8236b30720d4c8d6d9f815c50246d7e126bcb
|
|
| MD5 |
1f6a877d9bd13f1827c2b4eb95131473
|
|
| BLAKE2b-256 |
59c1b862528f9a5903774472cc5da25dc34710f409ac8450bc92b551de03ec61
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp310-cp310-win_amd64.whl -
Subject digest:
f66896bb6a6c669952fd6089bef8236b30720d4c8d6d9f815c50246d7e126bcb - Sigstore transparency entry: 1454032489
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500a545fefa6ab98e595c0257959a899826eb2154303cdcd30908cfe082ffdc7
|
|
| MD5 |
65b93c5d8d32dbe6d94d20a6b803df2c
|
|
| BLAKE2b-256 |
8b958cd59045f7915c226422d9fbbee139b3a4a114babaa703b43711ea6022c8
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
500a545fefa6ab98e595c0257959a899826eb2154303cdcd30908cfe082ffdc7 - Sigstore transparency entry: 1454032934
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a702cfa4e58a277e2baf18b41977df17263fa4edd5e063743849308f2a2d5138
|
|
| MD5 |
ca30b3421be7619da117b9541b14acce
|
|
| BLAKE2b-256 |
4f183e811b03e70cb17752f97ec67f2c4334064344940e28360d5caf57e6a556
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
a702cfa4e58a277e2baf18b41977df17263fa4edd5e063743849308f2a2d5138 - Sigstore transparency entry: 1454031742
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 27.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eed8dcf00a094448a02604c24d17b689eaaac492c44efa777b741a0b5412e12e
|
|
| MD5 |
63f1e5b845819c844a2c058a262ddb90
|
|
| BLAKE2b-256 |
46b62ce91007a101ebfcac2d401ad4681fbd5412cb5a178d87a9df7f3ed464e2
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp39-cp39-win_amd64.whl -
Subject digest:
eed8dcf00a094448a02604c24d17b689eaaac492c44efa777b741a0b5412e12e - Sigstore transparency entry: 1454033168
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e43094e968237bea29c87c37de845c3df536ccfe80c2ff9933867e8130155e2
|
|
| MD5 |
f291ab15b74070eeff435aa0e1bd3c5c
|
|
| BLAKE2b-256 |
82ed104f6682544882be0a9b89c090cbe7237223736038430fdfe9d1aa113d03
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
2e43094e968237bea29c87c37de845c3df536ccfe80c2ff9933867e8130155e2 - Sigstore transparency entry: 1454033381
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file alkahest-2.0.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: alkahest-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c61f4e37fc67527ad41323da1ccdc440c3ab0b09be375ceee26e9009ed5d0f05
|
|
| MD5 |
db1ff7c65d3fd8c07e39bc9a5581e5df
|
|
| BLAKE2b-256 |
1dbb9f9e5c0ae3a7621e839656fdf25cc318211b2c72ca7ae9509b5ef72a0c43
|
Provenance
The following attestation bundles were made for alkahest-2.0.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on AregGevorgyan/alkahest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
alkahest-2.0.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
c61f4e37fc67527ad41323da1ccdc440c3ab0b09be375ceee26e9009ed5d0f05 - Sigstore transparency entry: 1454032836
- Sigstore integration time:
-
Permalink:
AregGevorgyan/alkahest@719ae6f4bba734469ff02b21338962c486c76381 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/AregGevorgyan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@719ae6f4bba734469ff02b21338962c486c76381 -
Trigger Event:
push
-
Statement type: