Skip to main content

ONNX runtime python binding

Project description

ortpy

A thin Python language binding for the ONNX Runtime library on it's C APIs. Unlike the official onnxruntime package, which bundles the full runtime implementation in a heavy Python wheel. This gives you the flexibility to manage the runtime libraries yourself.

Installation

pip install ortpy[with-lib]

The with-lib extra bundles the ONNX Runtime shared libraries. If you manage the runtime libraries yourself, install without the extra:

pip install ortpy

Quick Start

import ortpy as ort
import numpy as np

# Create a session
session_options = ort.SessionOptions()
session = ort.Session("model.onnx", session_options)

# Inspect inputs and outputs
for name, info in session.get_input_info().items():
    print(f"Input '{name}': shape={info.shape}, dtype={info.dtype}")

for name, info in session.get_output_info().items():
    print(f"Output '{name}': shape={info.shape}, dtype={info.dtype}")

# Run inference
inputs = {"input": np.random.randn(1, 3, 224, 224).astype(np.float32)}
outputs = session.run(inputs)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ortpy-1.23b1-cp314-cp314-win_arm64.whl (127.4 kB view details)

Uploaded CPython 3.14Windows ARM64

ortpy-1.23b1-cp314-cp314-win_amd64.whl (136.7 kB view details)

Uploaded CPython 3.14Windows x86-64

ortpy-1.23b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ortpy-1.23b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

ortpy-1.23b1-cp314-cp314-macosx_14_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

ortpy-1.23b1-cp313-cp313-win_arm64.whl (123.4 kB view details)

Uploaded CPython 3.13Windows ARM64

ortpy-1.23b1-cp313-cp313-win_amd64.whl (132.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ortpy-1.23b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ortpy-1.23b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

ortpy-1.23b1-cp313-cp313-macosx_14_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

ortpy-1.23b1-cp312-cp312-win_arm64.whl (123.5 kB view details)

Uploaded CPython 3.12Windows ARM64

ortpy-1.23b1-cp312-cp312-win_amd64.whl (132.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ortpy-1.23b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ortpy-1.23b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

ortpy-1.23b1-cp312-cp312-macosx_14_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ortpy-1.23b1-cp311-cp311-win_arm64.whl (124.0 kB view details)

Uploaded CPython 3.11Windows ARM64

ortpy-1.23b1-cp311-cp311-win_amd64.whl (132.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ortpy-1.23b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ortpy-1.23b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

ortpy-1.23b1-cp311-cp311-macosx_14_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

ortpy-1.23b1-cp310-cp310-win_amd64.whl (132.3 kB view details)

Uploaded CPython 3.10Windows x86-64

ortpy-1.23b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ortpy-1.23b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

ortpy-1.23b1-cp310-cp310-macosx_14_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file ortpy-1.23b1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 127.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ce4156ecd07c30497e7d55c40b88ddea6ae23083dfb36b3c963390781a4f7239
MD5 28a512e61a065679ed1e6ca503a4eb06
BLAKE2b-256 dee7d4881a83b504f0e56aa13a8b4e00ab7ad305b1d972dd7dae957bbde59fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp314-cp314-win_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 136.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a67e96b48ef453ae06c36331a7235829e587797d9a835ed99def47b69e7f7d8
MD5 7b90acfbdbdfd8b4c5b0d28c30573818
BLAKE2b-256 5437812d3458bc78f4bea48b831bee13864fa503633a3720612a010890a7e054

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1484c93b9163bf45360d8b1e06485cd3c0ff4b84c3f7fa3bdf3ce77e10a3299d
MD5 aabc80855552c29ab88f82ce1e5f2898
BLAKE2b-256 162e5831845ae74a4fa3106f5092b418cbafd9a84465c0f23ef0bac4785c0c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f3c7b46b42f921ea8a1b1bc2fc8cffe972c4103caf4dfe0f3e623f6ea1f0cc6
MD5 24a25607050f3cbbb4f9a673d3497454
BLAKE2b-256 f8fc6486ecb9c1a93be134d735c3e05cc8b7b24fb597a5968bcf792b1b6f5875

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1cf95f7fa7558f60f5bdfcd2cda0ab779807c027b23e33e193622fb9f5690859
MD5 bc60d3f1b2aaa50d0b218a1f2b53fc6c
BLAKE2b-256 8c5b1d098a6c31493f9375b781858b78b1f8a43ea9bb83175ab4cb1525d25c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 123.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2f07a164bde7f446ac3ddde588345bf50ee6e1cae9d3d2571f3a9c9ccc49b04f
MD5 1ee6c845fbcc7419f2fe3dfc5d024beb
BLAKE2b-256 5c8b77f1b813acb57b5b03b2333ef80f279160271e39eb552a361e44c587ce8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp313-cp313-win_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 132.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4582d37e7fc2fd6f394f744427ad8b919492c5e3bbfbe3784c4b01c8227c8b7
MD5 c5d335db64592f0feb5443abbaabbb53
BLAKE2b-256 76c80a30cfaaac9f41b2f3cbf0da0d91339f8f980cf3f1dbe0d20235c787eeb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb5e71e441baf38bbf8b50cce6269ef0556f91c7fa83a6e48133a1c6159483e2
MD5 f7628e54858f611de602d7266079b6fb
BLAKE2b-256 d3484e9162fd5020f05a76b048c883bb0120296cbb57f53604c9b9b2af78a263

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c028541cf8acdfbfc5b944ce3647db645d1e017a15139dea4171f0510bcd6df
MD5 20f4df08626aeb0745d7e6d99d47c4e1
BLAKE2b-256 abec30fd6c235d3ff6179dc07fac9382090f2a36b2deb7d4d141285d61110d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e19f94fbbd757f4330f2a2f20e4072591fe1c165361a2ddbb1bc0573ba18c3fa
MD5 aaeb175218f2f369072b2bc67efecb3a
BLAKE2b-256 54d0ebe9409be09ad6726439be1af632ccae9e8b467cf5ae898009eccfe181f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 123.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d051e55b1b64b2aa07c600c876b3c61a3b2de23c8d5f49e61c3aae6b59a1622a
MD5 33c0c1c8eb20d490dfc1cce6c258a9c3
BLAKE2b-256 4c6b13d15742876ff98e7fc03263ebd2b1cc6b4b3b2196876fc4b2438abc90d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp312-cp312-win_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 132.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 feda03142fc0e1bebf3f323c2fbaabcf45bbcd0fc51f2ce3751cb7cc6d9e9cd2
MD5 efede5c043243aed1643e33a7e677c2a
BLAKE2b-256 8284697f632a8b565f2f65fd6e9a329431fb1aab38e6a411e97c7396fef9f9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92d1e949493a9e860e384cc034c01dccef0ab47f5e5aa49c8dec0e3352b5f293
MD5 8a45a7687b4cda819aa9b03195c27d17
BLAKE2b-256 e92a1b19501d3a3c200e91cfb496b3eb4943974fe1d814cdda390f26069eb746

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5070227de7c2f61f6d2f40bcde209489b08b521f3b1a026401b19d539766df74
MD5 8c971ec1fe0939e7582e10097ca89eb3
BLAKE2b-256 07ec3a6dce5fc87bfa091eacb8c787b56587d6c607dae3f0e2d58d7a134f68dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 085fff0bb813e3428b5029dae9d674828d02164b5b2f0bc664e3dc436988fe5f
MD5 e199d4832213d4a80c1ac7c1e0a63347
BLAKE2b-256 c43c0c5589377724425d3e7df5eb8557a8f01ea2247aefa9357fe8c3c552ce8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 124.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9e850ce65e16b58678302be169fd45577e1c888a978788545c7d7aa5332ada85
MD5 6b071b78052e68fa42734367bb9d4ef7
BLAKE2b-256 e68aa3d463f15ee6f2d06e6e30ee4a5fb7f0967052dec1d6e9864bb2b44f1f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp311-cp311-win_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 132.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80761774ecfa931c36703d301c9c68b5cd7303a516f714d61e1033d349aea685
MD5 7ba662bc4b8bfc39c4008d0bc315e892
BLAKE2b-256 41f4d84f398d17d0b9fac3d6f7ab8248d689cec0fbc19065eca64705ec952cb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb73e47d883f333d02dd344a8860588001051a10a8a45aec1d285cf5aba5c96d
MD5 ed1dc12a26d2d945a5861fb617f4a484
BLAKE2b-256 b00249642f7898e6ede92b55d99395dd196392690da1baffcb30a46a65abe6f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f1f261b01481da82bcce911d4aa05c9b024e5a3d3eee886fe27f9a537b35c71
MD5 378d8f93e8f0831aeace958845d714b8
BLAKE2b-256 ba8abaf43a76c011550805d8d7be16d28b147bd3a5baaa825df9c2a6d5033952

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8177e041f2652cf7bdcb2e6ae983dd6c8f7efed001f190ac8c6501157f5f23e3
MD5 984f7457e495d413db5418e83af270be
BLAKE2b-256 ce2c3f4bd4f423b7b7c8a5f33fd447c2d47394c21e665dbe466a2098672c5bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ortpy-1.23b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 132.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ortpy-1.23b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82fa01dc36ea60fb5dd7c5ae78d5e8defd0631e7d680f4f08d0d4c904f380bab
MD5 e800282477a40d913fa4d8195cdd1fed
BLAKE2b-256 5554afdbe6745ce0e15a6d2cb5635d80bb6d35d559029fc12fb2698119bb7f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d384841ec87ba2d4d3ccc438c9759e1607b9206bf45fd95627f241fc38f35cd
MD5 8692cd91a51a91ca3eaa31d01696109c
BLAKE2b-256 d5abbc95dade9842b350ca2aa8389df0f1d244d727991a14f89c29407d28b757

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1702662c5976fb98ffc387720c46ccaf59d2b38a722b99e39cf12bec90d0362c
MD5 7c24b03db28ef96f1ad2b41bff95b761
BLAKE2b-256 4f8980db5e893390755d836f724bf5e7f78bcefb32d6dbd4fec5e5b101887d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ortpy-1.23b1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ortpy-1.23b1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2944115bd85de2298ba5eb194c34f3291bd8a0a3f6fcc85931d18cc0a092d54f
MD5 84b71adc31c63a40380cb4afb225b826
BLAKE2b-256 8610651c1497bc3b6c6c353fe187349ba1ed075aeeba3f19017d498aad2f69e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortpy-1.23b1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on chemwolf6922/onnxruntime.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page