Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

omle-runtime

Fast inference for classical ML models, with a scikit-learn-style API.

omle-runtime loads .omle models and scores them through a native C++ runtime with pybind11 bindings. Wheels are self-contained — protobuf and Abseil are linked in statically, so there is nothing to install alongside.

import numpy as np
import omle_runtime as omr

model = omr.load("model.omle", n_threads=4)   # thread-safe
X = np.random.randn(1000, 10).astype(np.float32)

scores = model.predict(X)         # (n_samples,)
proba  = model.predict_proba(X)   # (n_samples, n_outputs)

Model implements the scikit-learn estimator interface (predict, predict_proba, fit, get_params, set_params, n_features_in_, feature_names_in_), so it can be the final step of a Pipeline:

from sklearn.pipeline import Pipeline
from sklearn.preprocessing import StandardScaler

pipe = Pipeline([("scaler", StandardScaler()), ("model", model)])
pipe.predict(X)

For repeated scoring on a thread, create a session once and reuse it:

session = model.create_session()   # one per thread
scores = session.predict(X)
  • omle — the model IR and converters
  • omle-spark — PySpark transformer

License

Apache-2.0

Release files for omle-runtime 0.1.0rc9

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

Built distributions (wheels)

Table of built distributions (wheels) for omle-runtime 0.1.0rc9
File
omle_runtime-0.1.0rc9-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
omle_runtime-0.1.0rc9-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc9-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
omle_runtime-0.1.0rc9-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc9-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
omle_runtime-0.1.0rc9-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc9-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
omle_runtime-0.1.0rc9-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc9-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
omle_runtime-0.1.0rc9-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 134.6 MB

Release files / omle_runtime-0.1.0rc9-cp314-cp314-win_amd64.whl

Download URL omle_runtime-0.1.0rc9-cp314-cp314-win_amd64.whl
Size 6.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
74ba0a31471d0bdec8b445cfe1851f338b6bf0c183b064a24be1e98fda4caf67
BLAKE2b-256 checksum
How to use checksums
baf6d79568a49f9cb2450bb81079b390c876ea87b19692e1cb5d5d34a27a3957
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 8.3 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a181dc82c3adbd7647f61a2ec89414dcfc77a1af59e72731da854aa1e355b0d2
BLAKE2b-256 checksum
How to use checksums
fc6d973768006eb43fdd577b53757d9226e197154b20720954da5635190bce13
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 7.8 MB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1959bd316350069a3f110d7adc197760cd5553806da87823eecaea0e695e365c
BLAKE2b-256 checksum
How to use checksums
2fa9d01d7463be21fb9112026de8e28ffade6b273f211e0637b7cb92724ef05a
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp314-cp314-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc9-cp314-cp314-macosx_11_0_arm64.whl
Size 4.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2704c6263d3fb6d230cd51dcb89dbe082cce93d621c6f29f15459ca3e1772616
BLAKE2b-256 checksum
How to use checksums
e45b51ec90c13225439287217002dfcbbc241e07a50fbb3fff8e05680add5e6a
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp313-cp313-win_amd64.whl

Download URL omle_runtime-0.1.0rc9-cp313-cp313-win_amd64.whl
Size 6.2 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5b2269cdf112bbb3e57b28d65cff8f2dde6b2591f4c00f161e6df78967267266
BLAKE2b-256 checksum
How to use checksums
eb4e6961e7efc8c67fdf729c93d7b257181a9bf1091b074df99b98d27cb6a861
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 8.3 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4f0563fe2c1ea0f89d132a4a2a2e9b31552261a3001674ac73ac8102c115c072
BLAKE2b-256 checksum
How to use checksums
201ddfde199284c0204be199059148ac1778f96ee4de26a2acc46b389aa19afe
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 7.8 MB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fae8a8d1f463e338c44d22455826a947a0292c0b2766a0372d4bf9cfebf01399
BLAKE2b-256 checksum
How to use checksums
e6ab9cdf40f9dc753aeec4ff68cf074fca1f4da156b09fc202429a66c31c9fb8
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp313-cp313-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc9-cp313-cp313-macosx_11_0_arm64.whl
Size 4.6 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a84c9ca0d413b89b762d35f4c308a9854ea40d29095d5d5644a5f58cb0956e5e
BLAKE2b-256 checksum
How to use checksums
7b8c0e87526a13b6ff5646d668e7d332f4c56b6ac674b42eeca27c39822665f4
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp312-cp312-win_amd64.whl

Download URL omle_runtime-0.1.0rc9-cp312-cp312-win_amd64.whl
Size 6.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
230f571a559dfa7be182675dbfc00fc3561ab332e89bf76cf7ab9877731129d7
BLAKE2b-256 checksum
How to use checksums
4a0abe88a4b6df9bb51898494cf8456c549e2ce95382484648403cc35b09fa70
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 8.3 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
07cbad6a3fbda34f22fde3affc4661ac8acc22afaf035908023a4249f38d1721
BLAKE2b-256 checksum
How to use checksums
f63a4730cc49475ed6f7c2cd0366140db3864ddd142891029f135948caac558b
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 7.8 MB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
03b71d1457d5e179d56b92feeb489ecba68bf67ad39f9360153a8ae6f942888c
BLAKE2b-256 checksum
How to use checksums
05114637c95e5d66bbf62b9e761a70b176514d0e89efa540eb84006ebd2c13f5
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp312-cp312-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc9-cp312-cp312-macosx_11_0_arm64.whl
Size 4.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d49357cc480dc7ccf7f83e72c380ea6c116fff337ae40ff465a1bf662301e598
BLAKE2b-256 checksum
How to use checksums
e740829a3ddd38fb410b6b4be40b2c49ef378bad689a2f51fc219a247122e7d1
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp311-cp311-win_amd64.whl

Download URL omle_runtime-0.1.0rc9-cp311-cp311-win_amd64.whl
Size 6.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
55c7b22ead045578416da4013f04fc103e05e677a3fa88d08482823e18c0a253
BLAKE2b-256 checksum
How to use checksums
e18a4501c87100bb6af880181e2db0e860ef85c6307c474e43520b51df3be3dc
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 8.3 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c3245915822b4edda01f10cd1b5fa366a0d9cec6056492161a1410ac2d6feef8
BLAKE2b-256 checksum
How to use checksums
d7d76b376c30d7958564b971003d0401a598fd468e5a9c358e016213559ddada
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 7.8 MB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0cb86e00b9764d3b20e1b7098fac81328085d9d239833ec12406a3a89148420b
BLAKE2b-256 checksum
How to use checksums
144386ea60484d3768f030e733f393a80892bc66b3a12beffdbedd1267902ef7
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp311-cp311-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc9-cp311-cp311-macosx_11_0_arm64.whl
Size 4.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
09a6bc5d424f254279bafbe0365a94fb07d6fd01578c812ab5292b36083c4c5c
BLAKE2b-256 checksum
How to use checksums
44d6aa6e34013f03f290855a216f8a5ba8b2ee917bffa46c024fddf2b172de2c
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp310-cp310-win_amd64.whl

Download URL omle_runtime-0.1.0rc9-cp310-cp310-win_amd64.whl
Size 6.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
941ad9b03f97a258a058572bd622a31532f00d67bb767089f4623f7f26f49475
BLAKE2b-256 checksum
How to use checksums
f58ecbbc932b6ef0717db2b595ec10c15c67ab4b287f59a7a9ac655b6c4a993d
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 8.3 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6292fa4c884481389a77599d341ff30e130c084c0bf073cc78cb226df871b401
BLAKE2b-256 checksum
How to use checksums
26f173ae0e2796e2d1835d80eed0b126ee4fb6b73bd664f3ad96db420e6d1d42
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 7.8 MB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6d987eefe8df1b0516e6ba8766987cd320f90c8b97a6258ffc391b844ab93c04
BLAKE2b-256 checksum
How to use checksums
bdd94c5ae557c644aa17d6c48976073a6baf265b739c85b2e01ba436cb27112b
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 20, 2026.

Transparency log

Release files / omle_runtime-0.1.0rc9-cp310-cp310-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc9-cp310-cp310-macosx_11_0_arm64.whl
Size 4.6 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3303ccdddb4a5e9255b744d9eed0d7b2845b1dd5d3873d16972d11795350fe02
BLAKE2b-256 checksum
How to use checksums
ddb04282ac6e8de2afcd7dc491289203c395b1b7d44438e3c2f6095e15dd636a
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 20, 2026.

Transparency log
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