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.0rc7

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.0rc7
File
omle_runtime-0.1.0rc7-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
omle_runtime-0.1.0rc7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
omle_runtime-0.1.0rc7-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.0rc7-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc7-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
omle_runtime-0.1.0rc7-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.0rc7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
omle_runtime-0.1.0rc7-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc7-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
omle_runtime-0.1.0rc7-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.0rc7-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.0rc7-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc7-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
omle_runtime-0.1.0rc7-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.0rc7-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.0rc7-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
omle_runtime-0.1.0rc7-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
omle_runtime-0.1.0rc7-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.0rc7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
omle_runtime-0.1.0rc7-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.0rc7-cp314-cp314-win_amd64.whl

Download URL omle_runtime-0.1.0rc7-cp314-cp314-win_amd64.whl
Size 6.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
dc42031a605b1adbf6a209b97365baa17695c8c01566324ad2430d8fb9f4c2b8
BLAKE2b-256 checksum
How to use checksums
8aece4adf7898970813e681a00c02a55e5b030b472f4d52a2dce4edaf53b6b81
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.0rc7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc7-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
c5753c29efe1c73fb78de52d7e6b4894b1c01ec17f762600c01351066f6c9abc
BLAKE2b-256 checksum
How to use checksums
e2a1beea1d5f731fe05c443c4a0ad9cfa21595fcb496b50186950b05d62b215a
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.0rc7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc7-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
a833631c5fb2032b2b6a23f99d1fd04c4aaf82d4d03f09ff3b4c618e7bab0b5a
BLAKE2b-256 checksum
How to use checksums
ea0ab83315814772bb8253beb5f27b0daa47b7db385d54dfeba97d7f29f49cea
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.0rc7-cp314-cp314-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc7-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
a49fd81e5a4ab04f4ffaedb39bf1588f476e6e93381b6fd4f16801e9465cb75f
BLAKE2b-256 checksum
How to use checksums
b109f84ae370b7067bd5b8b5c713ea9d12d1cb61400575901bf0267c7c604563
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.0rc7-cp313-cp313-win_amd64.whl

Download URL omle_runtime-0.1.0rc7-cp313-cp313-win_amd64.whl
Size 6.2 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
249bb8be1273ba4f02a91b782bd35db3ce9a0dd461aed352f9b058227c2458f9
BLAKE2b-256 checksum
How to use checksums
1976f803acf7530a9c888fcdbe373c950fa1d510538770b42c533072a352c250
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.0rc7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc7-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
ebafc2e9b457c116b9e86815632ec46540806aec57da5855e8a291ff076fa4c6
BLAKE2b-256 checksum
How to use checksums
58d3c0b16e195163c34b1b62aa67c9ab40a47da85a0f252f47242dbaebaa4b3c
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.0rc7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc7-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
7947a51e2978cf9598c9b2bdba06dc1da6d71fc0fd5467a1f3aab7f9229ad2df
BLAKE2b-256 checksum
How to use checksums
0f20d7471cd3deca6e0320b84bab3949b255a0a83cd3c2bed1342f7e7f339ace
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.0rc7-cp313-cp313-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc7-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
fc787dd06c79497290c77ef94d7ba2711606af3f03754ff8772b33b81913aaa5
BLAKE2b-256 checksum
How to use checksums
1f0a1505c3fbcc7404ca3ded05fca663a3af5808e8894c5f1b398161c58fdc56
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.0rc7-cp312-cp312-win_amd64.whl

Download URL omle_runtime-0.1.0rc7-cp312-cp312-win_amd64.whl
Size 6.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c7522a2130f32e4ff18b60d71cdd5cb2345f69bdcfd99b55b764965a3a0a7573
BLAKE2b-256 checksum
How to use checksums
6bbed2e75794c8ce57bf740bb117b298c195466baab9e6c40adb8868123ceb9c
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.0rc7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc7-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
dd061c665b4a23a656dd26a6c5717937aee2f1e7ccfc3d18a6143771171201ee
BLAKE2b-256 checksum
How to use checksums
3b9e7f2265d01c9f71df51c1fd8a8aeae911f984347ed2d6b10ae9140a475a68
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.0rc7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc7-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
130a0830def5f9bd8bf0255d7cb9c24d3ef81c4832b2b0100b8e39a9f0753591
BLAKE2b-256 checksum
How to use checksums
cb9ac7d02903805b77c4b52f351ae314c59c4a2eb88808926c2faeeb29bcef19
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.0rc7-cp312-cp312-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc7-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
ed7ca410e62df53db83784c559535ee36da6dc0b4599ef289e927734fd66c130
BLAKE2b-256 checksum
How to use checksums
91766092577d62510c774557bde673bc5cb494733b1b0cc9a3869c449b50cc6b
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.0rc7-cp311-cp311-win_amd64.whl

Download URL omle_runtime-0.1.0rc7-cp311-cp311-win_amd64.whl
Size 6.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0ae47fb3c2e72609bf6ddac46b50ff97a2fa5b1b509ec7bb1642e14906333ef8
BLAKE2b-256 checksum
How to use checksums
7863ab276dc66e23174d78828a089b53683a43694ba7d3d6a71e1c42a7736aa6
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.0rc7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc7-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
1c497113a8254c3978b87a0125b75f317abb3a37280b82521b3605ec3ebba840
BLAKE2b-256 checksum
How to use checksums
705bef07342271c688c49dface9c5216fd1ffbe7f83c26ba7e9309b2e2f98424
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.0rc7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc7-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
e9b6c7b26710958a850cadf1e32563a7be25b7724d6ba3b9d85dd9aff338e76a
BLAKE2b-256 checksum
How to use checksums
75ebde1c0b57c137119c5b319c972f04e7fc676a6faeb2a3922b9dba3febd13f
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.0rc7-cp311-cp311-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc7-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
f38bfb488245642c1c7ce94c212e5b129fe276cc4b998f8befc6396c6689c19c
BLAKE2b-256 checksum
How to use checksums
b05999742b668bf804a931167f792919482f93c77b4b0a0b2359d30110b6c471
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.0rc7-cp310-cp310-win_amd64.whl

Download URL omle_runtime-0.1.0rc7-cp310-cp310-win_amd64.whl
Size 6.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6e6f36b285742f50a7bc318ee23adb514bf3d1a81e2f623768f843d56451e262
BLAKE2b-256 checksum
How to use checksums
77595ab93aaff4a73637f09d00d239aeeb5b5a3580a1dced4d1207636162e932
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.0rc7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc7-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
e09a26e1e500387723348232e58282d4f352f5d16c43e7367846705d2d068ecb
BLAKE2b-256 checksum
How to use checksums
9cd42042c8f0ac37175f16a82463cd09cd0691a0bfd406bee23ac321b4551256
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.0rc7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc7-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
6df0340aa8fdbb2dce9b06c1e6db5fd575bc5bb5d3fd1ce1e384adb144666015
BLAKE2b-256 checksum
How to use checksums
9dc9b51c60650f9219f183b8c3dbbd31445c89f2468ecbd6d7c5cd95a6783ab8
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.0rc7-cp310-cp310-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc7-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
6a833b062ba52d8f516c3bb27c4b7a5195118ac8bf12ad415f3c19fc1eae936f
BLAKE2b-256 checksum
How to use checksums
03977583e6d94825b8c963cb801cc3f5ae4ebf5d65f4f361c4a4bb09db5edee2
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