Skip to main content

A Python wrapper for openjpeg, with a focus on use as a plugin for for pylibjpeg

Project description

Build Status codecov PyPI version Python versions

pylibjpeg-openjpeg

A Python 3.6+ wrapper for openjpeg, with a focus on use as a plugin for pylibjpeg.

Linux, OSX and Windows are all supported.

Installation

Dependencies

NumPy

Installing the current release

python -m pip install -U pylibjpeg-openjpeg

Installing the development version

Make sure Python, Git and CMake are installed. For Windows, you also need to install Microsoft's C++ Build Tools.

git clone --recurse-submodules https://github.com/scaramallion/pylibjpeg-openjpeg
python -m pip install pylibjpeg-openjpeg

Supported JPEG Formats

Decoding

ISO/IEC Standard ITU Equivalent JPEG Format
15444-1 T.800 JPEG 2000

Encoding

Encoding of JPEG 2000 images is not currently supported

Transfer Syntaxes

UID Description
1.2.840.10008.1.2.4.90 JPEG 2000 Image Compression (Lossless Only)
1.2.840.10008.1.2.4.91 JPEG 2000 Image Compression

Usage

With pylibjpeg and pydicom

from pydicom import dcmread
from pydicom.data import get_testdata_file

import pylibjpeg

ds = dcmread(get_testdata_file('JPEG2000.dcm'))
arr = ds.pixel_array

Standalone JPEG decoding

You can also decode JPEG 2000 images to a numpy ndarray:

from openjpeg import decode

with open('filename.j2k', 'rb') as f:
    # Returns a numpy array
    arr = decode(f)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pylibjpeg_openjpeg-1.0.1-cp38-cp38-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8Windows x86-64

pylibjpeg_openjpeg-1.0.1-cp38-cp38-win32.whl (3.0 MB view details)

Uploaded CPython 3.8Windows x86

pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_i686.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8

pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.8

pylibjpeg_openjpeg-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win32.whl (3.0 MB view details)

Uploaded CPython 3.7mWindows x86

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_i686.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7m

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.7m

pylibjpeg_openjpeg-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win32.whl (3.0 MB view details)

Uploaded CPython 3.6mWindows x86

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_i686.whl (3.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6m

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.6m

pylibjpeg_openjpeg-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a34e378fa41194b137539ebfe33b772d31d6e039ea2f7cf0e0a8c4626acfd7f
MD5 d4cce846d3815b52a8f146c5440f23af
BLAKE2b-256 5e1b8941d95202d6f7bf097583565c1a966f66d6e743f5202155e9667dd0a76c

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 01254e6f818c0c3f03e15644f8233cfa26b6885e10bc9e756c48fa370e3b289f
MD5 55f2f662ba1e4c8ae3a5317d3e2568ca
BLAKE2b-256 0c5642dd7554dd7ac37ee686cd49d04b30238c4b2ab92895c0765ed99d7be5be

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 853fc99ecfae952c1f68d02774c30307069c6dbe7f753683ad8bd17421de3ea6
MD5 48fe8b4a42c3f93bf435d8b47baaa8e1
BLAKE2b-256 5c0df1eaef9064578a99a744f5002a266c82db0cf4edaa3ed60e84d25c2bcb5e

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9dc7cf83357c3f1ca587d5b06e23ac74e606801b15bac16fdf5b5e6afe1a764d
MD5 2c4931d49fc69a4613a57b59752b814f
BLAKE2b-256 94ea3001416e356729a05faad767c2125a23aaa3159e74c1f0b7d418a7628f36

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a8e0af5568f5967843631a469177f792571b43431a8eb7e4c59f08f3ac5f341
MD5 a5eb7223dbbeed78d39cbd01cb98c209
BLAKE2b-256 2e242334e2e4a94de96d6c7b72f6c8078121c1ffd90864d82ed9cdc90bffe552

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e7a256c58b7c79a699099dcd7b05f280a36fcdec2bfae27d84ee852de99902d
MD5 3cd0e2f02b45d8091a30fa1c57fbbaa6
BLAKE2b-256 8b15f58aeb01aebd3e63cacda28d45a8c2be8dd58e707244ddcded6e59ebaf68

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e05c15208138c9a4bb4051a996ad77fefdbf02580ab2a19fd6f6a01ceb90b9d
MD5 1b0d765487c01909d7ebf8deb06a441d
BLAKE2b-256 541d8435b974f490e4851afb78ef115573f0f24cb671af7b1c643839da6427ce

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 adda0144b569e4f9a44d64adea5315126c2b26559759842a9494a61d772b0e60
MD5 d8c3ff711418dd88e4dca8da84fdfa8c
BLAKE2b-256 3d4836346247246f41b28816d74a61da2a7b3f169d14e8ff364b16afbdcaae06

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d947eb23fafba56776a5145ae8fe875301ddeac7c5ada29c5ee48b6988de0cb
MD5 a038a27783862b5813cafc3ef1c36845
BLAKE2b-256 3c6856fb35b58553f0c2512f61bcbbdb91fde286a1bb3b1bb4d5c013316f67e2

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b607f2f29c0eecfbd387354d9c6ea236e2818a3aba5d50dfa630cfc000527d67
MD5 115bf08b86cebfb3bcb9234037eee7a2
BLAKE2b-256 c76c96c5933ecde80d5dcb37d3952d40d29bf4fce641d9fe5532a947c865fa8d

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc0320d556f3bd29463a021cb325f74d1946c145d18d3216bdfa57ddf39b8e29
MD5 fab70311ea2c99b309df5ab159e362f8
BLAKE2b-256 972e7b27053055333ba9a696c591d5985de86879f25fbb9a286b1e7c0ca26b6c

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ddd5b02dd7ed8dd6651af0b63b75e49e7c6cc13ce1c0eab154e8a602c408617
MD5 440a060fe00ae9c3650be2b5323bf516
BLAKE2b-256 224f2cfd3bcbb63314c87d65dd4352f95cfc6a61f76c2768ec928847bbea5f93

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1d42eadeaa6ccbad019e2ccf1bf1ca8e4711652e31870706466ef1e6c908671
MD5 a8abdad1626c09e73b7708bdea5c5c67
BLAKE2b-256 17d361cb63547dce2152284fe1faae0283846c3891d9a489f221d9343d98cc4f

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25819aea506826ecce57a95f4cc80d7acdbc9783be9b5bae033cfb2792af0720
MD5 2fe5b9ba35eb8753d8033883189ad0fa
BLAKE2b-256 20f09187150d39533297cd137618892b9ef291738a7f7ea6679363654b75ac1b

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 51e17abece11ed05b4c1e3dc097b672804ce10adfe1ef2da6a8dd4045234a1d4
MD5 df470ce9be32804b655d0db01b6b5dae
BLAKE2b-256 baf33ef3a7601a71ed0951eda70926eb075133772de27f1619532bc0eae07dab

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b29431290d550621703d606e1da577e9f8e407a75b81d014fd6d8e73ff78addc
MD5 9d41aa85f7fc5b8e4b91f26607375c5e
BLAKE2b-256 58888b0f194f05ddbcc5fdec829dafa21aacfdcc5a8b811214629f46350debbf

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b13024b8db188a4fa31be0b27b7f704d115369ce49e7edc1debb1238a433625a
MD5 95d2871f233395de331e34163b18c221
BLAKE2b-256 cfae21ce161073aba668575c2b53963091d43ccc12a13a411d693b751ffe2aaf

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b48385b91f8d294422507fe11de0cecb6ab8f82f5bd5fb9270c48c37de2bcc64
MD5 e359777dbc1abf75aae3abce746cf273
BLAKE2b-256 b36fde8bd72f273f1661583ce28d1efb557665a5c3a40ee4f1e6f7923e8371a5

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ccc3d658371ad8ec73cf0297857b30585498e6e1f17fd6bf624baec23fe3f28a
MD5 f579349b64c2f0fb21ba2c9e5bb7295f
BLAKE2b-256 578aa1b35e24e7627b1895d94196962c867d842529e1bb02facbdb238cffd060

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 42c18b79a3565e0dd8a5ac01ecba51f61483b2f3cca5731b7a37bfe862757883
MD5 2d5b9d73f65fcf0cb8a06ef82d0bca41
BLAKE2b-256 2156564ce752f600c48c475c827734efcc7227c05f08d1c09568d7cce91c5831

See more details on using hashes here.

File details

Details for the file pylibjpeg_openjpeg-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pylibjpeg_openjpeg-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pylibjpeg_openjpeg-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f7808a23bc9cf159461795142beef0f57572b6087acc9d6c7368713a0b8d78a
MD5 302c7cb9b1988fa7b099e5f9afefb208
BLAKE2b-256 d77c3bccd9eacaf85d3442ffbeab3ed28cd11c477c302ab9da74ead424609a84

See more details on using hashes here.

Supported by

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