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)

Models can be saved with pickle or joblib. The saved object includes the .omle model bytes, so loading it does not require the original file. Loading recreates the native model with the original thread settings.

import joblib

joblib.dump(model, "model.joblib")
model = joblib.load("model.joblib")

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

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

Total release size: 134.7 MB

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

Download URL omle_runtime-0.1.0rc10-cp314-cp314-win_amd64.whl
Size 6.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
31d3c28f62e4655118e50c8b0fe3833582049feafd3100f0780eb2dbc82f3033
BLAKE2b-256 checksum
How to use checksums
8a294a8a3538c33f434f0e4ba6eab8054234588761a17631ac6987d326c9c7cc
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
f5bf0d9225fcf232f413b7d973b0c09bf7ec8a1ca5cb0358b2e6eef8514a65e6
BLAKE2b-256 checksum
How to use checksums
8485bca1a7f99be020de336e87cede8c0ab2037e19a37245f732fd2cee4de6fa
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
ec2ac57f535808832f8b011364a44885e16e35f31197bf28fdd88ddf67e9fc1b
BLAKE2b-256 checksum
How to use checksums
38083d381881963bc9b21844b5bb0d9752b2a5e1544dd4f87c2825b882e44f53
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
2382202b13c7a4df49d4998a867e8e18e2e1ea08b218d99fe33e39f9bb3d179b
BLAKE2b-256 checksum
How to use checksums
e22963319694d1f8ef377aeea3f7d0d426d3c02171c6cc05190433d5066183c6
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-cp313-cp313-win_amd64.whl
Size 6.2 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
23b5007fdd3fcf4b38f8dc3056d224861778cde25aeca01b0e2c267498755009
BLAKE2b-256 checksum
How to use checksums
c7784f2eba0f7b59f40258f2ee1546706334ae9bf98e876b824de513221255ff
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
5930ebe8047e09cb51546e363fbfb3ddeed42e9a8dd8c109024c088a634c64b6
BLAKE2b-256 checksum
How to use checksums
f2b0588a09af482300632930b0f8d8ae978a982003a360730cfabfe116f6be86
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
dee53bd7042968e424276b69ddde550fbbb29a1f6a94d55e35e9321794b041e4
BLAKE2b-256 checksum
How to use checksums
0eb6eb9dcb78812d7e5d6dd78beddee9370d70ce8ece8f56ea3215a62d525da1
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
13708f3d9ec5c02597e602c8c0908094e7f554b7f06b3202ffde2eab4475ce3a
BLAKE2b-256 checksum
How to use checksums
bc44e36b922115f1f82a64e021d811405c26a04609d0fe1fe7d73fb390cecbd3
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-cp312-cp312-win_amd64.whl
Size 6.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ff0dbafd11231f9cdb2ab3856a5532d60eb7e751c6e82a9f8cac38c582d9a122
BLAKE2b-256 checksum
How to use checksums
eb16a6696fa050c83d65b4a64e21b7c18f8ed061af2809baa9466a28140f6ce7
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
6e484b1e6653619072ac2a5525160749b60d51c9301885ff77d846c30452f848
BLAKE2b-256 checksum
How to use checksums
dcf8a6fa30ed97454a02fae75d356b3bc560777e887c27bb3d7be8f4a7941b5f
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
d8319a8e49a53508fd49ecd0b0ec217ebc53b04a95a99e60e96afa297a849ead
BLAKE2b-256 checksum
How to use checksums
3f0693bb914df8b9c081f36a22ca9ec4359b2bc1e54c03d9d32563fc62534b05
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
82be9a092fef67c0693508823f4d5e00088b9817c54ea4dcf90979fc2cbe2310
BLAKE2b-256 checksum
How to use checksums
19522b8bef5b5fc6a34b5f507f0d14f3f67b0d09416b0d6db15bbfc897c341d4
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-cp311-cp311-win_amd64.whl
Size 6.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
16802c3bf20559783a519c516cddd63f80e71b05062fe4a71b543948013318bf
BLAKE2b-256 checksum
How to use checksums
ccc43759c69a2391af21cfe790a19cfd5f07f706a4270b353d1f54ce447fc2ab
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
874cfe973478cf0997d563e69731be507812f6e9a40e02e48f8321448ebf91e6
BLAKE2b-256 checksum
How to use checksums
0b3dced22257fa36639f2a626da3c40468bb920be6afa1339c26ae072760ef35
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
4cda83feb4c49e3574b8712e62ede206732b643343ac68af1e99de1c21d6423b
BLAKE2b-256 checksum
How to use checksums
516603419c2f94964f722d97fbfadc8eaa95c6dd95b5a9da9a470f6c1aadc178
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
ca11a1bfe57a83f4e4bdc0bb6cd75a2f97fd6afd889e05d8c5dbe065966c5710
BLAKE2b-256 checksum
How to use checksums
6a9800aa9411cfd0d4e26f308a36a36ebb2e4b51bf7550b55fe5541bc75b76f3
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-cp310-cp310-win_amd64.whl
Size 6.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
968ba251379c7817343d0223e1981f13b6a9d0cbf0c5fbabac79ce0971c73e0f
BLAKE2b-256 checksum
How to use checksums
009b27f4d8449d693b13bc9327c44f88dadbcbe88cbc08c861b9b6f51523d59c
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
78df9dab4de423f1e5b11870771eaf2cba2ca1836d4bd01f8abb744b81ffcb52
BLAKE2b-256 checksum
How to use checksums
2afce5fbd03384aff319a27fc7863deaa405b76092f36ac00500e8a0095fe3bf
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
1cb0592b6a96813493a0663fb9d550bfd2bac4da17bebaa0ed9e7ff97bd1e6b8
BLAKE2b-256 checksum
How to use checksums
9a02a48d907f2ffa1f3ebcecfba7bc75212757cfb386c0b4315fe681c8f174c1
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 24, 2026.

Transparency log

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

Download URL omle_runtime-0.1.0rc10-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
acce819ced575a748fa7352f2c12f309282e2309cf6a5e19e5c83c49b018a354
BLAKE2b-256 checksum
How to use checksums
1a48b23e414d4c5635e9bdbe337b1f2b40305a53397789b352fdd0657766ef70
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 24, 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