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.9.0.tar.gz (33.1 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.9.0-cp314-cp314t-win_arm64.whl (604.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

ojph-0.9.0-cp314-cp314t-win_amd64.whl (515.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

ojph-0.9.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

ojph-0.9.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

ojph-0.9.0-cp314-cp314t-macosx_14_0_arm64.whl (311.8 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

ojph-0.9.0-cp314-cp314t-macosx_13_0_x86_64.whl (384.6 kB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

ojph-0.9.0-cp314-cp314-win_arm64.whl (597.5 kB view details)

Uploaded CPython 3.14Windows ARM64

ojph-0.9.0-cp314-cp314-win_amd64.whl (507.4 kB view details)

Uploaded CPython 3.14Windows x86-64

ojph-0.9.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

ojph-0.9.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

ojph-0.9.0-cp314-cp314-macosx_14_0_arm64.whl (297.7 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

ojph-0.9.0-cp314-cp314-macosx_13_0_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

ojph-0.9.0-cp313-cp313-win_arm64.whl (577.5 kB view details)

Uploaded CPython 3.13Windows ARM64

ojph-0.9.0-cp313-cp313-win_amd64.whl (492.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ojph-0.9.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

ojph-0.9.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

ojph-0.9.0-cp313-cp313-macosx_14_0_arm64.whl (298.5 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

ojph-0.9.0-cp313-cp313-macosx_13_0_x86_64.whl (372.9 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

ojph-0.9.0-cp312-cp312-win_arm64.whl (577.5 kB view details)

Uploaded CPython 3.12Windows ARM64

ojph-0.9.0-cp312-cp312-win_amd64.whl (492.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ojph-0.9.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

ojph-0.9.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

ojph-0.9.0-cp312-cp312-macosx_14_0_arm64.whl (298.5 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ojph-0.9.0-cp312-cp312-macosx_13_0_x86_64.whl (372.8 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ojph-0.9.0.tar.gz
Algorithm Hash digest
SHA256 ad748a52e07052ea613451d98c78b8dcbb3f4192e5d42724b615d13322c051dc
MD5 4afb4cb8c920dd05f4924c8c14c69238
BLAKE2b-256 2fb4a44d268c44c90457b09bf554239ee92244afa4b4eac674ac060483907975

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0.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.9.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dcda96f80b4a6356d297a807d971c8fa599bc28d7593e0db0e4e3b56942d9a22
MD5 76d8e1104d102d4d4b59a4d15a9cd19a
BLAKE2b-256 764716b6a6beab546c443c8d7152fbe25f6e496a94046eb0b9803a54959f01d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 44c0b3e1313e0e33cba91424faf536e6faa492b823f60636221b332de43f5080
MD5 64026777adc071cd409dabe51b8f0577
BLAKE2b-256 801da84e8a5daa2c26ca170fff9c66e69fcdb0384e17549b94ae4447fc4df6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c986b56c3177262c4942630a1c01cacf48030c7f68dbd382063d44ff52e28425
MD5 76123363e8b359f32e0d5917fad7571a
BLAKE2b-256 8a1a2eb6fd5f7b3c28e1496972c1c26226e29c129bd032a643bf48326fd91a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c90d17cdba11ef6a2fb1c43ff5f90155557b9e4306448898dac797204a260c4
MD5 694f929633a0e9b737439fae09f8639a
BLAKE2b-256 5446f83fc0995717e7a245c183a3914c1d5377ab852bb2512b34382343caebb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c07dd888f220c0bf23ec5870eb4315d3ab135c769e00c55f6e53b760589c70ed
MD5 8316d25d212fd965f949e62b23f4e8d7
BLAKE2b-256 2386dd30a7f3af4e976c34b508db60ee16358d08e11a875f74ae6f7791f60f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 71e7bbb51d1466dbecd64e6b7a786477bdf28289d979be83c7835f8fb105bcdd
MD5 2c0e9ef8844ba9c0521b83b5b08a22ea
BLAKE2b-256 1f74bcd29972c796d4c3ba846f32fcba92ededba45da3454ca690a41af50e269

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9f17a0fd26b3dc32f1a7c4595b7aa905bce703d198b64e0baf997e8850c020d5
MD5 15d28b96912dd2851fe61491bbb630e3
BLAKE2b-256 4674a9c4f23e93bdeb49409a499984ac5ce4a960c6aabd25e74b9ebc77cee14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b4739340489bbd40db66ca92934c7f805013bf180ecc10b902d5a255e7e24533
MD5 123508ccb2e6da7b7d9f6611a8aeb2d3
BLAKE2b-256 de04e1977841a386e3498bd03790e6c208164dd2bf92a59ebb58c996587223e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 362bdfc61887980bfb77079d811664f028fee86a43afae66f08592f5f94c6c41
MD5 2604e4cfa517ce839df016957d3081e6
BLAKE2b-256 a6f57822b4957b47c9d0d92facd251eaa8151b3bd701dd29795b392d42151e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25cf12a101a94051d48ca937abfa6b7c294ad94c2c33a3eb7f25f333445f5850
MD5 8963598cef2bfbe503bd2bd494f38783
BLAKE2b-256 b033371cf6bf2925c7796eef3c82de457109a619f30be80943a3a5fa0b9c1f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

  • Download URL: ojph-0.9.0-cp314-cp314-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 297.7 kB
  • Tags: CPython 3.14, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 567f3f582bd5e122e7f5ce1d8dcea4d4aaf7e6b6107fdeff59680b5c14a986e2
MD5 342ed7283355dde1933ab2e7d9458301
BLAKE2b-256 a9326b88ff698a78552c67874da6cd1fba7e5fc915f104bcf93e49195807efd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8360312fddcf880c505e048351a7a04c37b7e2e609346425061c4c4e872a1371
MD5 a829cdea9d25670b0713c9bf857353c1
BLAKE2b-256 1f95311c4b94dea64bd350f1368c0d8f7f4414e4d7500250fdbb6fa25642a819

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 845fefb80237ee7ab68d92359679f70f3373dd4069d15f160d6a67efa2682282
MD5 adf61ad80918a87243bc1874239ad0c9
BLAKE2b-256 a24ee3a7286123eebb4544ddbff69f67b84c332a45bc01bb63a3c070ee305bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9393ca2fbc37f822ac57a44cab998291d156376994da05e2b9b82186cf100728
MD5 6246671793095aceb37b25cab49931e1
BLAKE2b-256 922a153a5eb4a3da4a0ac5167fa817d34fd5ce43055ef2007b1fd0d721e05cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae97c414e7db64ab1f843482c97091112f1705598894571973e8da5d452fb97
MD5 f2babbb5941fa77ea4ffa13911ff5aa3
BLAKE2b-256 8917214beb7adbf6dc11aff7b95e17fa6970c69ceff373f1771350a84b023b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 601b7a347f20234436374405502eee7d151c66fa7d3e4eb2f2f934a46d29b201
MD5 91bf39b7e7466a4e7889f2a0101812ac
BLAKE2b-256 f51be634225d49717042729e58f0c2c5443905816d98851b15884bdd99937151

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

  • Download URL: ojph-0.9.0-cp313-cp313-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 298.5 kB
  • Tags: CPython 3.13, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ecca9fbd5e7c131a3ffb18205a312dfdc9d787ba4e762760b85ed88f4a512b01
MD5 4789422ee08aa5f6043cbdb85213f3a7
BLAKE2b-256 e08b3f8503c6e7a52d2fd88a7a7bf6036de4d9a03d5f26aa2ee7e705942a543f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6f5077915af86adde22b7997f6bbb8b377d65824f146408942bd0f472f4766e1
MD5 45f93ebc77dd1cb10d361dfe013d3358
BLAKE2b-256 c7c6a043d0871ebc1023a816d9cf1212ba1f4184bc2ed524941eeb17be2864d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6427d728d844f457f262491d9a93863a4777804ff60665d599dd6bcc438aae5b
MD5 bb59c9709e6a46c49c192cd5f5ff9131
BLAKE2b-256 4ce233d2c65d2de3994d3504c0084bf61de7b10d1ca56b754a51741230c23868

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ojph-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e692a3f9f727691964593c19bdb82e0d54c431f211386d8e28d02f41798ef5f
MD5 4bdb53b576bb8dc27209060af7c6a072
BLAKE2b-256 110b0dcaf6f207277a158929b7d76707ef74fada73bdf388b43240cf0ccaa9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5918c83a7c7c19152093bcf730165f8de04fef6b5b02b8fb3408ae5c17d8c1f4
MD5 77b9e0e0f44265aff77b825ff13a73d0
BLAKE2b-256 da9067d135e3e05a41855e024b6cc691d505285dc776b8f1bdc7a2b79ff6f6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f69c525d2d7e209ec91286af40a2912d9979cb41eb1b6e5fbff83a826d7a26a1
MD5 8ec5471c0f2e48783077a9f508095c9e
BLAKE2b-256 c2c92419e675b4cf0271f39db3888367dab863f78d14d9124064a0cc7cc055fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

  • Download URL: ojph-0.9.0-cp312-cp312-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 298.5 kB
  • Tags: CPython 3.12, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 bf534e50fdddbbe8b5d2b50dc8f3cf0d8a3ce07338be728f26eab179cb700b76
MD5 431bfd30bf3c075bdfde40bf73f05089
BLAKE2b-256 a4707e083af67d915c5171849d2a9c2d0cf95075ff367e9b106bb4bafa46aa56

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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.9.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for ojph-0.9.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 66106c523681dd64a35a9ccaf4d766364b82d92b2ececb04671246369f80f0e1
MD5 a9b7c2595d49926dea13bee45edca3cb
BLAKE2b-256 f7c858983e3c4b693924f78cb4c07e1adc3c10a02dde44274f90c8a6a829e02e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ojph-0.9.0-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

0.10.1

25 files

0.10.0

25 files

0.9.1

25 files

This release

0.9.0 This release

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