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

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

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

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

Download URL omle_runtime-0.1.0rc6-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
2913d7ff74859da1a13b7db206a2b9e55edca4d0d5579cd4aabaf50dfd8f969e
BLAKE2b-256 checksum
How to use checksums
4a3a6195086efbbf88d577b3b240fe7b40c722289e57f856c89320f5a3a2459c
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.0rc6-cp314-cp314-macosx_11_0_arm64.whl

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

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

Download URL omle_runtime-0.1.0rc6-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
9fc3d0eee19c11fc00b7eaf319ded35bb9ef8de81eb655a5e955d260c7ce834e
BLAKE2b-256 checksum
How to use checksums
7d34594b52541d51b68781b75b607236a0c87cdb219a3ec2f409dffb23be8900
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.0rc6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc6-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
828f8f33b9eed9d9d617367a91d888b7078f099e012e03b93d513b829950de90
BLAKE2b-256 checksum
How to use checksums
40b425e1a641b1378764a13e6ce3360ca594d2189c8a0f5855d241265a009843
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.0rc6-cp313-cp313-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc6-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
bc0b0d7bc6ce83be55d4014abfc774b68c25e60db032a56ac41875520991dc8e
BLAKE2b-256 checksum
How to use checksums
780e960440361dc805040f26e6a2b87c04955a3831ae4dddd1fd9d24a360fc46
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.0rc6-cp312-cp312-win_amd64.whl

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

Download URL omle_runtime-0.1.0rc6-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
1e557cb75a44d75b1f4907af78d6f8ad32ac0d40f941c175dafb0e441d7aeae7
BLAKE2b-256 checksum
How to use checksums
a79c3dab709d50c6faa080da5099b3a815e0dd32ca0f7dfb021bf662adbcc0d3
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.0rc6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc6-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
59ff94c2214f00eb0e03f663197e72d71a69e82e34b340a5c9fa6bdef446015c
BLAKE2b-256 checksum
How to use checksums
210983270e565e26b63e35982f7f58882347273be29b3924a382acc51bceba33
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.0rc6-cp312-cp312-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc6-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
ffb5467cd6906568ac2d32f2565b8a2e12cc7b03929a0b1c46b14b8f15bdf5eb
BLAKE2b-256 checksum
How to use checksums
fdb01fc71bc5e17317e46cbebd735be082b44bcf054b758b09c1fd675e3e2ab1
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.0rc6-cp311-cp311-win_amd64.whl

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

Download URL omle_runtime-0.1.0rc6-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
1643a7f006e8cda6b63576a6756c54d42529aeede485e4aad9c363662e266336
BLAKE2b-256 checksum
How to use checksums
4443de10cc4c82af707b51973e519c6d976199521a85d9c9d7b1a33eb59aa81a
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.0rc6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc6-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
87d1f8d53a402f0066dcb68204a4fbdc00cda01fd0ab394e488b6d49b5f743b0
BLAKE2b-256 checksum
How to use checksums
3907efaf95e5b42e329c4d5aae839fcd0f2359f79e9d4de8c22ab3e7721006b9
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.0rc6-cp311-cp311-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc6-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
beb64d986d572fc53df96ee636f336728cef50a273eeda1595eda09daf014e57
BLAKE2b-256 checksum
How to use checksums
49dca0b3c50cc021d278b661d59b3e5b307bd138fa0924c67baf88f2b2b287d5
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.0rc6-cp310-cp310-win_amd64.whl

Download URL omle_runtime-0.1.0rc6-cp310-cp310-win_amd64.whl
Size 6.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2d3cdec9cf40c9394288388de94e000d6b4c6db284d0bf8f0e6f521fe106597c
BLAKE2b-256 checksum
How to use checksums
3072976bc428ef126a344251ab7833f3c3536cae710731f487c3686b225ee623
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.0rc6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL omle_runtime-0.1.0rc6-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
202f1bd622ecce12d0fc2804a97ad4f016271c983928dff72e65fd4d6cbe9907
BLAKE2b-256 checksum
How to use checksums
bfc5a9e8e1f94a1e8951a002796e38146210207e51665bcd65a999ec565bbe30
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.0rc6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL omle_runtime-0.1.0rc6-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
648f6052ba4f6d89d627efdc88e160c49ec586635931f377ba8f06f4a3279d69
BLAKE2b-256 checksum
How to use checksums
45b9819413782d0ac810bf3fbe863d5dbf4187e5e5fafab966075f0184117daa
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.0rc6-cp310-cp310-macosx_11_0_arm64.whl

Download URL omle_runtime-0.1.0rc6-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
25a43243ff834d21ae572bc3df5ef6f9bc8d2d8876cbb8492827eada0d131b1b
BLAKE2b-256 checksum
How to use checksums
72271a62c1e09254f8c1ca81b5b3427cacdb7f0117bc302a01abb184a6487261
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