Skip to main content

OpenJPH bindings

Requirements

These bindings link against OpenJPH and require a version containing PR #312 ("Removes direct access to COC segment marker"). That change was merged after the 0.30.1 release and, at the time of writing, is only available on OpenJPH main (unreleased). Building against OpenJPH 0.30.1 or earlier is not supported.

Free-threaded Python

ojph supports free-threaded (PEP 703) CPython 3.13t/3.14t: the extension declares that it does not need the GIL, so importing it leaves the GIL disabled. Wheels are published for cp314t, and the test suite runs on a free-threaded interpreter in CI.

The decode and encode hot paths already release the GIL, so a thread pool scales across cores on a free-threaded interpreter:

from concurrent.futures import ThreadPoolExecutor
from ojph.ojph_bindings import read_j2c_into

with ThreadPoolExecutor() as pool:
    pool.map(lambda t: read_j2c_into(t.data, t.out, t.level), tiles)

As with a file object, a single Codestream, infile or outfile object must not be shared between threads without external synchronisation. Give each thread its own; a compressed buffer that is only read can safely be shared.

Download files

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

Source Distribution

ojph-0.10.1.tar.gz (36.9 kB view details)

Uploaded Source

Built Distributions

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

ojph-0.10.1-cp314-cp314t-win_arm64.whl (575.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

ojph-0.10.1-cp314-cp314t-win_amd64.whl (455.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

ojph-0.10.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

ojph-0.10.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

ojph-0.10.1-cp314-cp314t-macosx_14_0_arm64.whl (276.6 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

ojph-0.10.1-cp314-cp314t-macosx_13_0_x86_64.whl (328.0 kB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

ojph-0.10.1-cp314-cp314-win_arm64.whl (573.5 kB view details)

Uploaded CPython 3.14Windows ARM64

ojph-0.10.1-cp314-cp314-win_amd64.whl (452.6 kB view details)

Uploaded CPython 3.14Windows x86-64

ojph-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

ojph-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

ojph-0.10.1-cp314-cp314-macosx_14_0_arm64.whl (270.9 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

ojph-0.10.1-cp314-cp314-macosx_13_0_x86_64.whl (324.3 kB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

ojph-0.10.1-cp313-cp313-win_arm64.whl (553.8 kB view details)

Uploaded CPython 3.13Windows ARM64

ojph-0.10.1-cp313-cp313-win_amd64.whl (439.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ojph-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

ojph-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

ojph-0.10.1-cp313-cp313-macosx_14_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

ojph-0.10.1-cp313-cp313-macosx_13_0_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

ojph-0.10.1-cp312-cp312-win_arm64.whl (554.0 kB view details)

Uploaded CPython 3.12Windows ARM64

ojph-0.10.1-cp312-cp312-win_amd64.whl (439.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ojph-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

ojph-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

ojph-0.10.1-cp312-cp312-macosx_14_0_arm64.whl (270.6 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ojph-0.10.1-cp312-cp312-macosx_13_0_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

File details

Details for the file ojph-0.10.1.tar.gz.

File metadata

  • Download URL: ojph-0.10.1.tar.gz
  • Upload date:
  • Size: 36.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1.tar.gz
Algorithm Hash digest
SHA256 e515f7df85a800610af31c04724f742899d879307532fe478ab11fc7aa91d87a
MD5 9c92fce413938ef04cafae0d27288c6e
BLAKE2b-256 e68b439417f5be79dbf6e5260d8f6c9d5dfca2d8a0e906bb83b0fac4b9ca6ab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1.tar.gz:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 575.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 63c527703af750a78f066434a3e191ae29b2d2a67060126e7116b96957948e6a
MD5 70dddbdd63dc2b4ca45c341c1f181584
BLAKE2b-256 a01d93ac1711babf1c14a96ae46e17f21c74de8ee4d3ed0cd8a0bc4850427709

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 455.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 63c891debbdf88273b96749d012010bbaac0ede1383c0c6c32c772d41060d4bf
MD5 af6d2477c0fa7e00820344eeeca6de81
BLAKE2b-256 4e464374bf8bae5a845447cbf6cc1ad1bbfede147443bb914931a9623f4417c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f18877ad291f5594068ef5b2138e7de5b4cc7601970e727b6faeff0f787e5681
MD5 7928840c5bf2e06a6aa7b56ccac8775c
BLAKE2b-256 7b5afbd11e0372b9bd27387daff333ee3602d05fbccced87ba69cd4c9ae96612

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9b2e0d69d137bf7ea79ff998007f02831a6900776e6167535af9ad876192083
MD5 4634bf92c51f29aa6ff166688804dfc7
BLAKE2b-256 133d0b621017c2f3eba2bd5a4b53a84563ba9f1f9aa16c77f4a49e83e222ba76

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 60d99f3d56596818cd0409ff044782c31eafa336f4119fffb8a9ac7e3ef3fc84
MD5 f5942bd9a6a2506c06a32738808f89e3
BLAKE2b-256 c2fd3769855432d979f79274a63498edb221692191116596d796a5486e99549b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 41b776bab9db4f4f0447ad718502d71731062d9d3612e5bfce08a14571e59087
MD5 43ab3ee47269a3663b28f7599907a880
BLAKE2b-256 f54865d745c8b17bb90df57992210f2bc3c16a7dc0b4aca0302e00a9c2f9bee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314t-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 573.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 429a7935923e3cb24b94bd2567d2787dd50529d15b359411c32e16866f92332e
MD5 2a2917035fffcd5522632c0761418aa1
BLAKE2b-256 6942a0299ae5cd42366e9d9ee2bd95cb20829d4db89eea678ba7bbb0716f32d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 452.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7bd62d1c2b46e22decb94112b980c9a09219085a63aaf4dd946556013a3865e4
MD5 38a61ce48aa6772c9f0d9a4d6fd409ac
BLAKE2b-256 c77fdf145771485860b096167d2cb3b927b5b72bea55d68d864bb071b7c01fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21dcf157786a76e1ab4db0732cd25087df3b4e5547fa41ac323d967520844aa7
MD5 7a4b6bacdf8a1222afe6f22c74013ff7
BLAKE2b-256 5bd30293c2a6f983f50faf4a06433c2c09941bc75826d2c3abf01bcd4e343fc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0c83462adf14b1b1c27d285c0d95c9e693716a4a2af965e4a33598cf09354e2
MD5 f58f0257c1a93efaf039ecddc44943a1
BLAKE2b-256 85eb214ca058e4facc172a59ecd3fb7df796a178f921211576c06e4591700a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1db7d09ab5bb04ed1d6ea5ab45199633a9f1c00ee26b2366aeadb6b19186dc4f
MD5 34f9746d57fc467c464a8cb0b5cea099
BLAKE2b-256 908f0d95d6261dd2cf62f20e744a92ddcebdf9d2b272db6df8266790657a1cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d673c64625d8ef0cca53ba184658474d64f986f05004a42c3054c81d60a54a96
MD5 47f09117a46c71149a0ef50f0de94ba3
BLAKE2b-256 9695850702d932117bb6c54d7375ccedc8e72f805c2b57e813e3740294468d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 553.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5d06ec7e5499937cbe19c622795ae6d25869d6e3bb7f183e60b9939ea0497d37
MD5 0efc76ae2fe01ad21e11ca12846df2b5
BLAKE2b-256 b8765f97f49036aff37f05a6834626b7258a4ea57e28327a7619b6c963d7dec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 439.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37d38b21c1fe77efd587a7db751384808d16b3162bbe258d7a7f5a4d2693ee7e
MD5 0be0a540c9279ccec75ceceac93c45f5
BLAKE2b-256 83d2f9c6ab549c6076f90406f39e9bf18086d60ec3519a10132b9f9882349cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f0a72c5dd2c8fe1bedf3082a492bb66450b80d659c980f5781f47cdcde18d0d
MD5 6f7c5393ca534ea83c677a077f60e036
BLAKE2b-256 255c524d927c14567553148a43cc943cf95f0efde43345cda3b29b2b2f06a41e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47bf1c25f5980b043e547f18fd55f4ebd6ab279b683c67deb983da451049b302
MD5 4a36c289463e87d17999dab7241eaaab
BLAKE2b-256 29e097ec9efcade848b7d5bf15525df72fe485e7a29f7297da3755fac757908e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3d315e80931365ded6049187cc5b74c27877de24c9ff7281e9d590ab200205b8
MD5 af4f86a4160c4fdf6d31496dfd3b4593
BLAKE2b-256 3d8adcdf95bb40e691c7206d320dfd96bb3622bdad1b88a5e876936d1a5329b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c568ee7476126b073c4321c1adfc2de418e409838d2208e34869ba1fe98e48e1
MD5 1aa27b8777f89e29480e441bdf6da6d1
BLAKE2b-256 f749beb5d872953f9b77e6c4bb0d78617836da6db5889b7f955de23a4c9f9c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 554.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2873039baae3ee91774eaf66939cb1a00daac6c5104977409694e8deb380bdd9
MD5 b86184bda5888db7508d93f56050f296
BLAKE2b-256 af676c49cd531b105574675ef4250ba0f1aaa0b439c96ee153cb291366904c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ojph-0.10.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 439.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52419d6e608e6262271f3cf8146587d6c56e63de9d9a870a27fe6c3ddcd3f59e
MD5 259517230b74b2761cee00427b43807f
BLAKE2b-256 ccdce01c657d89371ba02cd7ccb2fd06e944cc03df30392f431f5b59d55f172e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92bba13781a1cd8351c0830e0cd970e05845448a4d3ae33d7053cfdfe33d6c1d
MD5 4a3973c86ccfb9f43c6e2a7b22f1c4a7
BLAKE2b-256 ca599c2bbf85471e69a7ced2ea814694ef8b2d3cc54ab24bcff76ff5c93f8fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48ea7f78623738dfbc159d2ba0e8b84d80e517fa1c43302fd79f2eec13c3a1b0
MD5 8181b32bf00198ddc9f07bb8d6235a88
BLAKE2b-256 3eb81e7d1e956442cd8aaac306011fea2719953fea7626c6d037921132fa5424

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ee80fbcad97ab1d14b593eef524f4043fe809eb9071c76caef44c94287e8acdb
MD5 49b542443cb526a7e6a023a069dbbeff
BLAKE2b-256 e2397df845bef1f26671add311c6700a38d88d16f03e66893d09b2e72671edcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

File details

Details for the file ojph-0.10.1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.10.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e26856f6c802e9e92dd94e8b5dea07d1827b0875e31b29631027c49f6cd9fc0b
MD5 9297a2253a9ab6b36ac1cc3c44e9e6ee
BLAKE2b-256 ff3d02f048a6f8c2378235e81fa3dcc02001501fee7dbbcf9a68de3f34b7080f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.10.1-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on ramonaoptics/ojph

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

Release history Release notifications | RSS feed

0.10.2

25 files

This release

0.10.1 This release

25 files

0.10.0

25 files

0.9.1

25 files

0.9.0

25 files

0.8.1

25 files

0.8.0

25 files

0.7.0

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.1

1 file

0.5.0

1 file

0.4.6

1 file

0.4.5

1 file

0.4.4

1 file

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.1

1 file

0.3.0

1 file

0.2.0

1 file

0.1.1

1 file

0.1.0

1 file

0.0.2

1 file

0.0.1

1 file

Supported by

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