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.2.tar.gz (37.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.2-cp314-cp314t-win_arm64.whl (568.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

ojph-0.10.2-cp314-cp314t-win_amd64.whl (461.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ojph-0.10.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

ojph-0.10.2-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.2-cp314-cp314t-macosx_14_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

ojph-0.10.2-cp314-cp314t-macosx_13_0_x86_64.whl (413.9 kB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

ojph-0.10.2-cp314-cp314-win_arm64.whl (565.6 kB view details)

Uploaded CPython 3.14Windows ARM64

ojph-0.10.2-cp314-cp314-win_amd64.whl (458.4 kB view details)

Uploaded CPython 3.14Windows x86-64

ojph-0.10.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

ojph-0.10.2-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.2-cp314-cp314-macosx_14_0_arm64.whl (265.7 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

ojph-0.10.2-cp314-cp314-macosx_13_0_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

ojph-0.10.2-cp313-cp313-win_arm64.whl (547.0 kB view details)

Uploaded CPython 3.13Windows ARM64

ojph-0.10.2-cp313-cp313-win_amd64.whl (445.0 kB view details)

Uploaded CPython 3.13Windows x86-64

ojph-0.10.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

ojph-0.10.2-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.2-cp313-cp313-macosx_14_0_arm64.whl (265.5 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

ojph-0.10.2-cp313-cp313-macosx_13_0_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

ojph-0.10.2-cp312-cp312-win_arm64.whl (547.0 kB view details)

Uploaded CPython 3.12Windows ARM64

ojph-0.10.2-cp312-cp312-win_amd64.whl (445.0 kB view details)

Uploaded CPython 3.12Windows x86-64

ojph-0.10.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

ojph-0.10.2-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.2-cp312-cp312-macosx_14_0_arm64.whl (265.3 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

ojph-0.10.2-cp312-cp312-macosx_13_0_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

File details

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

File metadata

  • Download URL: ojph-0.10.2.tar.gz
  • Upload date:
  • Size: 37.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.2.tar.gz
Algorithm Hash digest
SHA256 c31d832461eb00e8171891cbe8e9932bbf3db367e355838f200542aadfbbf40b
MD5 d6add25b2fee28aee541850f8a0afc0e
BLAKE2b-256 711e7548cf90531afae66738afce9726821ae21a91a4d92940df279e12f05182

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 568.0 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0a178b75c916c3aa41d66e782cb2baf2253b313b3675e552124a498cec98a731
MD5 8f8c1c152088807eb9d2dd185311091c
BLAKE2b-256 d859a8ecf350a43f18e72f36fc47178a897b695472d0eef93b267321c1214311

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 461.2 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd5d3c0d3f45d8391823cc4a396b545c913b830484b5be0ec5576eae333321cb
MD5 a937aec2025fdb819ec7b04173657606
BLAKE2b-256 54ef643fd93e45bbf90a9ce38ca6c22f393dd57d4e6981da59a828ea065211b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a6a8b5976ce39bac404f8e44d409cbdea901ec47e7171572d06fb04e8fb25cf
MD5 e9f2c649bf4a060ef61447ff6a66b8ce
BLAKE2b-256 77439efb948a617bfd643169c8cbd9a56fb9581ba1347966fc9246426f17ee71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fe2a96b4b83daf2cc840b9a2784423cd07b60e8ce4f366d88f420dd8f04d14a
MD5 bd3d3ccbd3b4c8995928f6848672d5f8
BLAKE2b-256 ae3615be0808ecfa53d19e083a47888b7308d9fd6bad6029a4c546cc23aa6fb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 eed9fe76b9937682f02532f858646697e2bd994e41cebc5ae82b2053d2fd1358
MD5 52ebec8e527f4f74af5a0a0d3cd9b1e6
BLAKE2b-256 ee80aba4ff9849d6613f821ba91ceb89d94667e48ed3ea8edfb6cb0a3ec8a1c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 547a361872accfe46089ba6343beaf15c28d784f772715537b5ad10bda37766b
MD5 51368ffede7884378e457edd18c8f824
BLAKE2b-256 0a86aacc8c756a87c2aacd67f39a4e6450cb71881dc3ec1d664dcd94f0262d3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 565.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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bc3ef25aeb89ddc4ed813d518c00209516ec99e38c95bf6bf178099a2c61e50
MD5 2bc84e88b55a36678993f92ba433b35c
BLAKE2b-256 5963e94b10b4366ea7a5e6da9361fd52a31a09b618c37b08adc87d32f93e3f4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 458.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14aa1ab44f1d81d0ff330d06a7d30e6128c2bb85ac852f43857b86a23551c52d
MD5 fd75b9d03ca14ef7145b760ed2461955
BLAKE2b-256 eb57ffcaa2803d4a10d065a008864801249b7c40f9c92ec3b8c288cffb9eb89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80fafc7cfd457781d26511cf47826e5210ce59101627aeda79691ebbac023d29
MD5 293f72357e6fd7c888008f6bc2549fed
BLAKE2b-256 727d50d9c672734a92cbdd1e88bc6ed054b43337c29b79fe33e71b83619663d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b6cd3a6ee152d9e6accf8c13b68a15ec92830acb0f804be3109302fefaa3b86
MD5 47d88e4ac3855ab23f66932a35820321
BLAKE2b-256 ff1ccd4c15bc7a01d80e380aba1618e20360349a44432dea01dc0d3badb9a635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e790651f61374561ace65d2b983771ea8b2c3d94eb74924741961e112d4e4393
MD5 543ffb248733ae2990963588890711a6
BLAKE2b-256 b46295f4f407a370a4f890baaa18017c74c1bf8c2d17c147319b5e5f2836f14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b1f29a6c52fc9053ab0103f9189fba0a0fd5707ed9a64017e349ab8279b5c107
MD5 49f392c763e877bf14101dd511a94fa9
BLAKE2b-256 5a5b39c4d13db6e48e2c579610dbe2d8476505c8c10c5814359d3f75eded94f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 547.0 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cb88b576accf5e405a5ce4fa363f4cfc376a2714a3a12796989be88aa45db865
MD5 90a4ced63730b1e1c5168d7287cc9fe5
BLAKE2b-256 2a58d71942315d70279dce3c89c2eb4268447e6c593c710158825ca15e6aa36d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 445.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c74a52667c909aa1f2a3dfaa38144c63f082011439fdafd90813170cc093f9f
MD5 8926ed07fcd06d5ae0820d5c5dae5eb7
BLAKE2b-256 8877499f2ad1345f5e90b2e8a53f0ca9d40e5614a2f813de5acb922ac2b0b9c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db4712fde1ef6e372ea82657776869c954626bee7d7d6c26e558e0e3460bd7c9
MD5 35fabbc86d3f31139d1f9187f989aca5
BLAKE2b-256 d74eab22960c4d7da897c860dbdae2957250fe3bd0534af34eaa7fa8066e21a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6abfa24704d76c74eb55057c8783ad35d2165b30b18ce65d6e141f2cb600881
MD5 79480857155bffd16be9881a808854ce
BLAKE2b-256 e230f877efe25486589e95333e87dc86f7f21ff09854dca7a8f04d82fc04e44b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 433778ac0e5918ddc8331845b1e56d5fc6e954a2361fd6cfea77f24bba7a832e
MD5 f548ffea4965e689b0127251e3eb4487
BLAKE2b-256 63a60159d33f18d83cc1b044abe4e3d44f0463db4ac1623fd0c1e28249b8557f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fd5c60c5fc612568478c224e425eaac0865af1dd4176e9a9bae9873d513d92fd
MD5 495183c02a5856fb2cab61b0fd47c12d
BLAKE2b-256 738554c3870f8e08da2cdc0b336bec6c0c4c2c1aae8b811def8d41854b9625d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 547.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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e411bd0b2a47d113eacf72e5401be14caf055be82cebf5a75afeb4ec59e31eba
MD5 f947ce782954d4e8488be9521ebda99f
BLAKE2b-256 c647b8cb415472eb799a682b38ab6925e5e09204597b5c9fa48fc64b27b5604e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ojph-0.10.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 445.0 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 313dcbba271cda1acc306b644657ba7c5a83a659d6c6a31b39a64b719cee85eb
MD5 2e62922d5b91cb5b4a4d6522b8f283ec
BLAKE2b-256 bf2f0afd16d7c2c39950f6a1897d20563d9862475bcbef0645a9ac03d642e0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 823f8d5092f191638d2a14181ac6469d7636842a221a2137e76a482d8a30eb1b
MD5 214fd83b9c8f515fd017077270181bc8
BLAKE2b-256 1757e77b5399b9a0a3302f7fed95153ae4197ff360aa0d6b3d11b50df4238105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 329a996912f0ccb4dc2d5f2f7c53c33846eb65dda79c15fa0000b8284e0d341c
MD5 edb0f3ee54a1a82126545970714d16a5
BLAKE2b-256 5ea2d8079690274826fa01b6fc499adb423b194a4a765bb4c6949afc1bff73c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 eba810d4aa0f87c2ba0dde60880a0bccb41044598e63a563690196cb747e7e1b
MD5 dc3baf1191d418842b7f31c785cc9128
BLAKE2b-256 6108bec6b66f1666b567fb93e47be560c85b82165aea15141e37d7182c7e99c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ojph-0.10.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 39ed95f68e38d148cc9fc30315a5c5e4fa9db12b654b48ddd803c5bdc77ce875
MD5 6393ab2a5f148ef0025d223b199ed6a5
BLAKE2b-256 ecabc71abc06a2dc1080624e1d5e20460cb38ccb0660ce75878fb590736123ff

See more details on using hashes here.

Provenance

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

This release

0.10.2 This release

25 files

0.10.1

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