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.0.tar.gz (36.3 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.0-cp314-cp314t-win_arm64.whl (632.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

ojph-0.10.0-cp314-cp314t-win_amd64.whl (515.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

ojph-0.10.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

ojph-0.10.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

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

ojph-0.10.0-cp314-cp314t-macosx_14_0_arm64.whl (345.4 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

ojph-0.10.0-cp314-cp314t-macosx_13_0_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

ojph-0.10.0-cp314-cp314-win_arm64.whl (627.6 kB view details)

Uploaded CPython 3.14Windows ARM64

ojph-0.10.0-cp314-cp314-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.14Windows x86-64

ojph-0.10.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

ojph-0.10.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

ojph-0.10.0-cp314-cp314-macosx_14_0_arm64.whl (326.5 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

ojph-0.10.0-cp314-cp314-macosx_13_0_x86_64.whl (383.0 kB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

ojph-0.10.0-cp313-cp313-win_arm64.whl (606.4 kB view details)

Uploaded CPython 3.13Windows ARM64

ojph-0.10.0-cp313-cp313-win_amd64.whl (500.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ojph-0.10.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

ojph-0.10.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

ojph-0.10.0-cp313-cp313-macosx_14_0_arm64.whl (327.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

ojph-0.10.0-cp313-cp313-macosx_13_0_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

ojph-0.10.0-cp312-cp312-win_arm64.whl (606.4 kB view details)

Uploaded CPython 3.12Windows ARM64

ojph-0.10.0-cp312-cp312-win_amd64.whl (500.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ojph-0.10.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

ojph-0.10.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

ojph-0.10.0-cp312-cp312-macosx_14_0_arm64.whl (327.2 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ojph-0.10.0-cp312-cp312-macosx_13_0_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

File details

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

File metadata

  • Download URL: ojph-0.10.0.tar.gz
  • Upload date:
  • Size: 36.3 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.0.tar.gz
Algorithm Hash digest
SHA256 bab1ca6175f904e012410ab49bda98b213a5701c1bcfd8212f4b50274441ef72
MD5 96ecb093a5137652e9d7356119e296ba
BLAKE2b-256 4e3805c5430672e148f15eb0bfd64461235231f50ff20e19ab71be8e7bf37344

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 632.7 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3b28a13465a3526414b82a3cd75282220ab7bb49fd3ed950f36b3eaff0b0659a
MD5 c45646901b9caad497eca9708b3bcde9
BLAKE2b-256 1502e946cb18a36fedbf48abb92477e26b56238f34664802edc022e8fc31b26e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 515.5 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e402b2df00b1ec6010582d22625fa7f3b8de45b87e3f35dc21f696ef2124660f
MD5 efc27b6b71ba9dc0ef02a2a0501c63d0
BLAKE2b-256 9178fcacb156ef85f00f2781150211517bfd8970148c5ae0da1f227c0ded40b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 688a49a51f6f5317231323f870b46b4a55905547f28a2f2fafa570cbf0c971c8
MD5 7fd64123476d8535dcbfffaae402a571
BLAKE2b-256 bb9d371a2d249e1f772ac7b6f8bfdb156d46d9e0e28fce14cca71e92069da557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 080d602741fe2e6b5c1bb020c4cefc5300c09459183a5917f37c006139e4a06c
MD5 d5e9cc3c54244a047194b8d6f82c05b3
BLAKE2b-256 42f2023403c04f147e0c77101c0b1bdbf645a07ea69dbae76717564c0eb5ec32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a27ebda35dc99178dc1b86678b301943a9ee9201310de918ed43f9d28b5a01c3
MD5 eb518bc03dcd03d5d3336668e266bb29
BLAKE2b-256 af452e838291e64bcce17cad92d1d7dbf5940dedce370063fa1a521769ce21cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 87fd620e538685839d53401d4a8753457b02a1b5279fa94b12e951186f42ebd9
MD5 8b39eb93e6f482b63f30314a90ac71de
BLAKE2b-256 64a3a3f7ec6fe62ab43e02d65966db787151ba2e5766c1bcac490903b56d24af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 627.6 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f771e3cf8e4f929635cac4d6d853ae1e97a24dd977c422c61af79454b79188bd
MD5 9783e8e1e11fa87d4aa41fde3afb1f4d
BLAKE2b-256 17bd023108dc66f758064978dcdd93933105b5743261eeb4aec3a9d11d459db6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.0 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f09b4e4f5ffbf0656d82166f11a85e86c78e9ee5fde82ad6042bbe5167358764
MD5 91d20ec24810a98568132f567e87622b
BLAKE2b-256 6d6cb69508a507626ea5da425737dbf1c3777adde95e342c83e85c03e461ecd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbd84b117f793bc8f91e596e30887b4e8dadbe062b88a2cb4a4d0301cfa94c80
MD5 d7c60e0e3dee105825a5cd2b707a1891
BLAKE2b-256 681de4a58089d5ee6c6772771771c9e60a829ba41481856c5dd96ef255b0b249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a2a838bbde6698e4fee66f11e29ac5aed6d7b887090df972699a6e6fef4e2a7
MD5 6c87b8de26d41c575c958e14a05e4bca
BLAKE2b-256 1c6d1cdd552c0442be749298c620382d87cb7f9a25663c8947b807afd2eafd39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1b634eeb6b59c9009c48001066f83645953a5e764e0e7c6e23bd4683ae53145d
MD5 25d53557ef273aa2680d1e9721bbe641
BLAKE2b-256 5f9c963cf86e6c9206ac5d3c59c5bab1416f4139bed09cab528c0aadfd4cf7d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9eed6120657bbb7df41db66ed0204088a84217ba0f7e5d13690ad4e3693f8345
MD5 8fd921ef51d644c886fcd0889465a180
BLAKE2b-256 39d6031d4a0502d65773a84bf97312653527ee92a28488dc503cac7cb518bfeb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 606.4 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b8b76892e36614cffa4e023153d19ab6ed8ae1a92fa4d02da8f4d8bbe2be9b60
MD5 5352d3f72e4bbdddd17b673f2a7a1cf2
BLAKE2b-256 3206b4af4b4e5469a16173113cc9a09394803a052b78ad7bf7faa3f69ca58c70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 500.2 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 262eea806e01b691d7a2a7d595c5f69f66ad7250daa6bdae2825635c85e0b161
MD5 8b5afecd2b0556aa00a3ca5b5c144fbc
BLAKE2b-256 7c81da6cbefa8a1ee68bd90478ab5af69327841c9d9d5a8c8a04dda0bb11140e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f95e3583a4e34385e1b2b5a977acfb3963feea7b3d3d4c9ae3593305f077bbcb
MD5 f87e3ce3d1ca30e82a9188439f5420d8
BLAKE2b-256 f8636e54223cfbd6c5e723b561953d29aa2ba4a4643407bf0a9d1701305c7d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cedcdb112d5e362c2e84479d6f3783decb2952c909e989668fe23535059e26a
MD5 6334b2e3a1bfa4811c659768d178fb1a
BLAKE2b-256 ba652d5a95b9b0d338c24a38d25486a63b60a6ccb6d0f44766073db5a27a3e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6f80563e60673bc198a92783e73371d0a853722ee9b94e7a4fc29401181b8385
MD5 49706452214ae43935a98a7e0c34ffaf
BLAKE2b-256 68e93bc89d6c75b99570e19879d4a1e56f11ca3cd092467c6f22592ac3f1f205

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 232be1369a84c662280103ec916717a8fc13a492a5507338a950c84ec11d3787
MD5 5d1e186eee9e60aa1ee80750fb9819f7
BLAKE2b-256 d2c316b99f2b18e7c827eff93ed8fb4fd19c99adc96650074c412d894cbc68f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 606.4 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d56fd2b2b58f7a542ae12dabe909034b6cf2792754f40a47bea180d8158aee3c
MD5 9b62885563927a0307503fbbb02e2627
BLAKE2b-256 8a0766102f31a3798bca9c0bae7c8422e08bf15ffb95abcd27b5c7a2321db073

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 500.2 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4faa50c5eb9faf402168efb813d31ee974a6814c0ab5f8da92147fe25090be4
MD5 89885ae4ea95067da250758aeed3773a
BLAKE2b-256 e8f7b18c0c0b1b0f95be5630dba462f6910661fa32acbb0aa7593cc7baba6751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 902ad470b4de8da0647d1f6d41d2f7add7fc988238abc387b506b79b1ab14793
MD5 946b58876546e93f0da42f4f1e46fc12
BLAKE2b-256 8cc97a6332180c46f9b254e91cd3d9a75d9561c7608cdc0a950f901f16ce4800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b5667cf470604fbd41a2f9fc0535ace6add334cf34a2830a1c4cf843382d57a
MD5 6025824340963c29dd7d3eb93c4f3c14
BLAKE2b-256 f7e833d84e90fe5c7bcb9cf4a0d9c42365b2e923da783e065188398b23d2dd03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 26be42765fc036f23c414d0f0912014407711a0fa6b0e0b9638cd43215634fe6
MD5 d4536324b8efdad9568a1830ab76613b
BLAKE2b-256 b80e553a899639a686a820a7ded1c4621aa0613833ad12915f0f4cf0fbc89e9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 aa3a0f0c1c5cad05361f7898307bfdcefd8fe2d825739580ce1cecde7de4fe85
MD5 ecacb830c731701d0c4f36782ead139b
BLAKE2b-256 ec4bca1e287b8a1eef5d043a2e78157980f56f9c481f1446cedd198293a8c69e

See more details on using hashes here.

Provenance

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

This release

0.10.0 This release

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