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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

ojph-0.9.1-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.1-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.1-cp314-cp314t-macosx_14_0_arm64.whl (311.9 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ x86-64

ojph-0.9.1-cp314-cp314-win_arm64.whl (597.6 kB view details)

Uploaded CPython 3.14Windows ARM64

ojph-0.9.1-cp314-cp314-win_amd64.whl (507.5 kB view details)

Uploaded CPython 3.14Windows x86-64

ojph-0.9.1-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.1-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.1-cp314-cp314-macosx_14_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

ojph-0.9.1-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.1-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.1-cp313-cp313-macosx_14_0_arm64.whl (298.5 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ x86-64

ojph-0.9.1-cp312-cp312-win_arm64.whl (577.6 kB view details)

Uploaded CPython 3.12Windows ARM64

ojph-0.9.1-cp312-cp312-win_amd64.whl (492.4 kB view details)

Uploaded CPython 3.12Windows x86-64

ojph-0.9.1-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.1-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.1-cp312-cp312-macosx_14_0_arm64.whl (298.5 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ojph-0.9.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for ojph-0.9.1.tar.gz
Algorithm Hash digest
SHA256 7603bf8385dd2af4cddaa917d303e3c39782930625672a328efd2d385febacbf
MD5 25de4a5a53c501de9be9ce677392abf3
BLAKE2b-256 fcdda7d5a822d29a4267ddd6f7c1747386ed487d810ab46f72e4944e11ab05bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2c870a299f11bab0a4e0e774b425feabde7c66bcffce56aea71faa0a715b8f40
MD5 b2e587ba0aa94c544c13a4113781413b
BLAKE2b-256 6529c88b52d2072a38fa1ac56b98c10594b749965e2903e98a80bda9a3bd37d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fe5a35bf5292a83c4f77dec30a0b31bc8dfe43f3c2f04cfae9de27b9e44359e9
MD5 cc1ad540f80708a1639d8c865c54dba3
BLAKE2b-256 31d888bb9adc8fb5ccb8f526b97a1e033f9d6f1ade60e1177fd797ca3d21daed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83f65234db33970922b65a870ad093d9e1330c0077b1698d1eeab7d7a8819356
MD5 b2e89e083f03cc1c68532efe9d21b418
BLAKE2b-256 2419c97dae172c570f131dfa714424492d00d275fbb25a63fcec1cc81e806106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e259b8954543a777493dc751beaef45bfb37d40f42beb360c3ea9f4b2e9cb75f
MD5 ad8fc398a47d30541191783985344bb6
BLAKE2b-256 c292824f247159b7700a16d0febe4021260bce43d5440eb2f704d100ef9c1dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0867ba29a22a1ef7ffaf65fa1a2b47c52008ee85836054c2a3bbc70ac8d9156a
MD5 c1326c0703f9c2c4d2ed41d0ce6ff85d
BLAKE2b-256 85d298bcc72edad5e91a19df5ebc2307dafda26f5c52bccafe4a514f62c81833

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b2ea5b6f0b2dfd63bf43caf55d2702a58385adf653839a2af384605be868fe3e
MD5 01c5f7bd49530631ab341d9ab716fd43
BLAKE2b-256 a382ff36e57ef921f9346cbca4de73adfa573a18fa2d444043d82a2fd88702e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 597.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.9.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cc67580b62f0e49bbb890362c1132e536b89bb71589fa6f18c33ac3790337902
MD5 889918d41279bc949c6ba0debf5e4852
BLAKE2b-256 87ed884fce5e7bcdabcfcd1165927f03720523e8031b5a8e3cda53373366332f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 507.5 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.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7cd749428e294f87e187f8c1e9a4c25c7e551ed8969fbf1b3ccef431fb6a8515
MD5 07b5da1129c0f0214a355941a3cc24e7
BLAKE2b-256 9663fef1e7648724398eaef5dff57ba046fa4c40b0e69049fc4891f07d1b0c38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb71c447254f8cc1ab71fa404b0fb17898256b5f8e56c349c18f89e5409e5827
MD5 f61b78010968ddbb9d509ef7836e9cfd
BLAKE2b-256 077561299453a1f76127c086b7b2c835b62223b0fd10521586a6847c850f27a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 356245be9f8e2e7d3d23a81f84b73da653b4e90760fc3d917e744245e1ee701c
MD5 741443480bb6c14f6268eb580f73cb13
BLAKE2b-256 71dee7af4da3b01af0b73fe0413200cb2e398be27fe473a7e91d16df2fdcffe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2a3701dce279df3bba792483402379996113c343e26f33659ec0e6360ab9a338
MD5 cdcccb0ea0043f09f677877d7ec4e55e
BLAKE2b-256 d17511d2cd1dacd81ff1f83b9c203b832673169ede77d88a2de472b38186f652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 58a8942a1a69fb0cf133fbb894cf1a031b3a1559c8a8fa618bf1b4d1911951cb
MD5 989b4d276f89278d935855c367b67b4e
BLAKE2b-256 d88bc02e95105308eca4580f26e1f5574d0989823383c822e865167dd209b739

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a17cb1d29d5e6b0e1de401082dbe538918f19b4279f97f6fcf0cc8c8e88dc151
MD5 10fdb69739c7c5784f99d6c242e4e61a
BLAKE2b-256 73eee438dc128a05c4d0ad4b389ea8079811df45582faaf9a309ca15da277e0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for ojph-0.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a1196aeb65067aa972e94c3b9eaa6d925cbe83f49421c347d6a6028af5bb4d62
MD5 9f0e00a853467dc586dcba3d02de3ea6
BLAKE2b-256 1543d704e6e098e13aadc43bb52ab126fd62d0dd12a643cc00f3be6dabc18a56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 476c41048b65d495bbfdb4f605757d098a25a16e497e3c580c2ad95b5775c7e0
MD5 6254617364706471dc6ac0e47eb6f096
BLAKE2b-256 5c20725e57ba00d2f0eb0e4389d81efc09fcc0bd657ce3a3ba9d232a5ec73612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b694480733bb3f35b5755b1d3a0c188345a5024be4a390418501c3f515354c50
MD5 b7e777880b969964add1a827b62136c1
BLAKE2b-256 e51d762284446d3e083a8b916815250832b056e4e8c2c50864196b8f068d9e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f479feb872e911a1c00f1e52eee5a61235f9e37bd8b7a3fc54c3206d7bc68b63
MD5 6473efaa649f37c16469070759d699db
BLAKE2b-256 5889da346e998cae79b9f42550924c32a7f643ebe8e5a5f5777e3621afd31a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 265346dbda72d75dbcc3fb91a6050e2d0e842b37b93cef3d92f3cbd8915bcd9a
MD5 1dbebc18198b65afc9afe4f6f5048276
BLAKE2b-256 8d616e1a9b245f6bc9709cc13812ece13bce6282c6e5924d9eba7b47fd94ad93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 577.6 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.9.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0f0cc344224cd0325adaac39b9dc28cec06c5a5ed07a46a83fe6492b4c49c7e9
MD5 9f85907853cc5dcf217ceb5632db9235
BLAKE2b-256 bad72bf99daaa1453e862ac406354b2da0b5149873f07aa2a69e2241f7f1ffdc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 492.4 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.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f871cf8d7e7bba4d1ea8ce752fff73e2bcf1a215493fdb9d705830d478caf738
MD5 cc3f652476e7fbc2dd5b51491a1d4226
BLAKE2b-256 c4f709a19dfdf62a59aae700fd2a4cc0ab59fc141d5414bad0e4657e62ecabc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a0be90af970b6c3cf29d8496fb7549da30c1cc5429697a814b45cf5b1624240
MD5 5ea96a58eac6e8ed6d25e453bcb0aed3
BLAKE2b-256 564e86021fd317bb66ae147b2444f168f3611230921d645f23baa82b819eec03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1184593a22ac820648d0b12e1e579da8bd479ebdd0ff3d71a1d818e51957395
MD5 675d85ee5dc20e0ab38abd69f227e0b5
BLAKE2b-256 4e433335f0d9006a4ff6ebe934de6daaaacb4850c8a458639df720f13ad9d963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 99dd92d2867a4ef2e89cdc3ef89bee1cc622d99aef0d8f3340c1de498289f4bd
MD5 5c0829e3f858a0d3cf0b9b099fcbdde5
BLAKE2b-256 e06e2c2b00f96b9cbb13390dafee1d52c1f9add2fd64757976787712765ce856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.9.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ea7766d743df6123b34c98b5e56a76d96014920b7910e8a43a8b01b6513c1590
MD5 b0ce34d98004dd2a69592e39830ed6e9
BLAKE2b-256 c854fe9fa4b5fbd78ddc466170b388a108742c3efdadfb9fec703517a1b11e5a

See more details on using hashes here.

Provenance

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

0.10.1

25 files

0.10.0

25 files

This release

0.9.1 This release

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