pyjpegls


Namepyjpegls JSON
Version 1.3.0 PyPI version JSON
download
home_page
SummaryJPEG-LS for Python via CharLS C++ Library
upload_time2024-02-18 06:44:38
maintainer
docs_urlNone
authorpydicom contributors
requires_python>=3.8
licenseMIT
keywords python jpeg
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# pyjpegls

> **Note**  
> This is a fork of the [original CharPyLS repository](https://github.com/Who8MyLunch/CharPyLS) created
> to be able to add fixes and adaptions, as that repo is not maintained anymore. The rest
> of this file is unchanged from the original readme. 

## JPEG-LS for Python via CharLS C++ Library

I wrote this interface to enable easy access to the awesome [JPEG-LS](http://en.wikipedia.org/wiki/Lossless_JPEG) lossless image compression algorithm from within my Python application.  I had no need to read/write anyone else's JPEG-LS image files, but rather I needed to compress some data structures internal to my application.  This data was similar in nature to greyscale imagery such that it was an easy choice to leverage the existing CharLS C++ library I found on [codeplex.com](http://www.codeplex.com).  I did eventually incorporate some basic file I/O functionality for my unit tests, and that's why I list Pillow below as a dependency.

I have tested this code on Windows 7 x64, Windows 8 x64, and Ubuntu x64.  Note, even though this package has the odd name "CharPyLS", you will import it into your module as "jpeg_ls".  Here is a quick example of using this tool to compress an image to a buffer in memory.  For more details, check out the examples included within the source code.

~~~~python
    # Read in an image from an existing PNG file.
    fname_img = 'test/image.png'
    data_image = data_io.read_PIL(fname_img)

    # Compress image data to a sequence of bytes.
    data_buffer = jpeg_ls.encode(data_image)

    # Sizes.
    size_png = os.path.getsize(fname_img)
    print('Size of RGB 8-bit image data:  {:n}'.format(len(data_image.tostring())))
    print('Size of PNG encoded data file: {:n}'.format(size_png))
    print('Size of JPEG-LS encoded data:  {:n}'.format(len(data_buffer)))

    # Decompress.
    data_image_b = jpeg_ls.decode(data_buffer)

    # Compare.
    is_same = (data_image == data_image_b).all()
    print('Restored data is identical to original: {:s}'.format(str(is_same)))
~~~~

The output generated by the above example should look like the following:

    Size of RGB 8-bit image data:  5038848
    Size of PNG encoded data file: 2409950
    Size of JPEG-LS encoded data:  2088357
    Restored data is identical to original: True

## About JPEG-LS

  - From [Wikipedia article](http://en.wikipedia.org/wiki/Lossless_JPEG): JPEG-LS (ISO-14495-1/ITU-T.87) is an accepted lossless image compression standard derived from the [Hewlett Packard LOCO algorithm](http://www.hpl.hp.com/loco).
  - From [CharLS codeplex site](http://charls.codeplex.com): CharLS is an optimized implementation of the JPEG-LS standard for lossless and near-lossless image compression. JPEG-LS is a low-complexity standard that matches JPEG 2000 compression ratios. In terms of speed, CharLS outperforms open source and commercial JPEG LS implementations.

## Dependencies

- Numpy
- Cython (only for building and installing, not for everyday use)
- Pillow (friendly fork of PIL, used here for file I/O with the example and during unit tests)
- CharLS (source included as subfolder)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyjpegls",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "python, jpeg",
    "author": "pydicom contributors",
    "author_email": "\"Pierre V. Villeneuve\" <pierre.villeneuve@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/00/fe/2d7155f1841f2712e7e50764d909aa40e45ac1a5a0d6ddd565a35ff8d833/pyjpegls-1.3.0.tar.gz",
    "platform": null,
    "description": "\n# pyjpegls\n\n> **Note**  \n> This is a fork of the [original CharPyLS repository](https://github.com/Who8MyLunch/CharPyLS) created\n> to be able to add fixes and adaptions, as that repo is not maintained anymore. The rest\n> of this file is unchanged from the original readme. \n\n## JPEG-LS for Python via CharLS C++ Library\n\nI wrote this interface to enable easy access to the awesome [JPEG-LS](http://en.wikipedia.org/wiki/Lossless_JPEG) lossless image compression algorithm from within my Python application.  I had no need to read/write anyone else's JPEG-LS image files, but rather I needed to compress some data structures internal to my application.  This data was similar in nature to greyscale imagery such that it was an easy choice to leverage the existing CharLS C++ library I found on [codeplex.com](http://www.codeplex.com).  I did eventually incorporate some basic file I/O functionality for my unit tests, and that's why I list Pillow below as a dependency.\n\nI have tested this code on Windows 7 x64, Windows 8 x64, and Ubuntu x64.  Note, even though this package has the odd name \"CharPyLS\", you will import it into your module as \"jpeg_ls\".  Here is a quick example of using this tool to compress an image to a buffer in memory.  For more details, check out the examples included within the source code.\n\n~~~~python\n    # Read in an image from an existing PNG file.\n    fname_img = 'test/image.png'\n    data_image = data_io.read_PIL(fname_img)\n\n    # Compress image data to a sequence of bytes.\n    data_buffer = jpeg_ls.encode(data_image)\n\n    # Sizes.\n    size_png = os.path.getsize(fname_img)\n    print('Size of RGB 8-bit image data:  {:n}'.format(len(data_image.tostring())))\n    print('Size of PNG encoded data file: {:n}'.format(size_png))\n    print('Size of JPEG-LS encoded data:  {:n}'.format(len(data_buffer)))\n\n    # Decompress.\n    data_image_b = jpeg_ls.decode(data_buffer)\n\n    # Compare.\n    is_same = (data_image == data_image_b).all()\n    print('Restored data is identical to original: {:s}'.format(str(is_same)))\n~~~~\n\nThe output generated by the above example should look like the following:\n\n    Size of RGB 8-bit image data:  5038848\n    Size of PNG encoded data file: 2409950\n    Size of JPEG-LS encoded data:  2088357\n    Restored data is identical to original: True\n\n## About JPEG-LS\n\n  - From [Wikipedia article](http://en.wikipedia.org/wiki/Lossless_JPEG): JPEG-LS (ISO-14495-1/ITU-T.87) is an accepted lossless image compression standard derived from the [Hewlett Packard LOCO algorithm](http://www.hpl.hp.com/loco).\n  - From [CharLS codeplex site](http://charls.codeplex.com): CharLS is an optimized implementation of the JPEG-LS standard for lossless and near-lossless image compression. JPEG-LS is a low-complexity standard that matches JPEG 2000 compression ratios. In terms of speed, CharLS outperforms open source and commercial JPEG LS implementations.\n\n## Dependencies\n\n- Numpy\n- Cython (only for building and installing, not for everyday use)\n- Pillow (friendly fork of PIL, used here for file I/O with the example and during unit tests)\n- CharLS (source included as subfolder)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "JPEG-LS for Python via CharLS C++ Library",
    "version": "1.3.0",
    "project_urls": {
        "documentation": "https://pydicom.github.io/pydicom",
        "download": "https://github.com/pydicom/pyjpegls/archive/master.zip",
        "homepage": "https://github.com/pydicom/pyjpegls",
        "repository": "https://github.com/pydicom/pyjpegls"
    },
    "split_keywords": [
        "python",
        " jpeg"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06541bbf97e574fcfaa27e82a14c303d06562d62be42e5d7bc1dddaaa04b1ecf",
                "md5": "2c7b894647247402a4db1a4e0f425591",
                "sha256": "5cba06952b8c3a9cae4427334806874d2dd2e45cbafc507186d049ecac0b5edf"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c7b894647247402a4db1a4e0f425591",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1258711,
            "upload_time": "2024-02-18T06:43:51",
            "upload_time_iso_8601": "2024-02-18T06:43:51.046545Z",
            "url": "https://files.pythonhosted.org/packages/06/54/1bbf97e574fcfaa27e82a14c303d06562d62be42e5d7bc1dddaaa04b1ecf/pyjpegls-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de6a4d8539470358e6f1088889e1ff5396410f50b69119bb76abfe88c3d975f1",
                "md5": "5f5bf60778ffb35cf9ba5f48e0eef378",
                "sha256": "37bb33d3fd6089a902609c2e54a2dc2492cf78dcec9de90a07e6a0f8dcc4a184"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f5bf60778ffb35cf9ba5f48e0eef378",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1258993,
            "upload_time": "2024-02-18T06:43:53",
            "upload_time_iso_8601": "2024-02-18T06:43:53.044366Z",
            "url": "https://files.pythonhosted.org/packages/de/6a/4d8539470358e6f1088889e1ff5396410f50b69119bb76abfe88c3d975f1/pyjpegls-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5437d08ed04e3dedd06106d54bf571cafa51c48339afe548d15f37293183c13",
                "md5": "4f00b6afc94c638610c620d0049d2a9c",
                "sha256": "c185c103757b4d2fcd4e589618ea308b5caed98d9559717fa9377a3c210feba1"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f00b6afc94c638610c620d0049d2a9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2708901,
            "upload_time": "2024-02-18T06:43:55",
            "upload_time_iso_8601": "2024-02-18T06:43:55.088783Z",
            "url": "https://files.pythonhosted.org/packages/b5/43/7d08ed04e3dedd06106d54bf571cafa51c48339afe548d15f37293183c13/pyjpegls-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4249de85ca074a92d7a825ffc9edb12f4caaa68f46c7db65603c77be20714a97",
                "md5": "a3d0119e5a8ba60c57a0c1f603c9815c",
                "sha256": "82c9ed4fa0ad840f69afc0c2045b8e95f5802ad6c4c1cbbc1f388fe16b497479"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3d0119e5a8ba60c57a0c1f603c9815c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2714036,
            "upload_time": "2024-02-18T06:43:57",
            "upload_time_iso_8601": "2024-02-18T06:43:57.355200Z",
            "url": "https://files.pythonhosted.org/packages/42/49/de85ca074a92d7a825ffc9edb12f4caaa68f46c7db65603c77be20714a97/pyjpegls-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "071997b5a369cf9d260c74fc08f1f71d3d392c36dd739ba6791d8124017caa4f",
                "md5": "c8c20bed3cb51e1a64241b9320f6f7be",
                "sha256": "336a736a36c56ffb7a2d9200ef3050f2a0e7b8795cadac979c1eb27bce859db9"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8c20bed3cb51e1a64241b9320f6f7be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1227337,
            "upload_time": "2024-02-18T06:43:59",
            "upload_time_iso_8601": "2024-02-18T06:43:59.698722Z",
            "url": "https://files.pythonhosted.org/packages/07/19/97b5a369cf9d260c74fc08f1f71d3d392c36dd739ba6791d8124017caa4f/pyjpegls-1.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33607a66d6f23865c01a258e383a2ee1a1b393bd684ccf8426bf7432e73ae1ba",
                "md5": "bf99b77e95846d6dd31f409b0a59328a",
                "sha256": "0f40e641279578c472501a87198e0784f886cad510c508a0b6079d17bfae2ef7"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf99b77e95846d6dd31f409b0a59328a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1258774,
            "upload_time": "2024-02-18T06:44:01",
            "upload_time_iso_8601": "2024-02-18T06:44:01.539464Z",
            "url": "https://files.pythonhosted.org/packages/33/60/7a66d6f23865c01a258e383a2ee1a1b393bd684ccf8426bf7432e73ae1ba/pyjpegls-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c6c66bc838420b1e76e0f65fbccb98a7a859c7c27eea8816e28893d534f1433",
                "md5": "82a5ae9e342e060f20e3d5a6082a8965",
                "sha256": "74a5e2ade42971d280cd98c166652cb3e5f96092c173cc5aae4bc1cc28d5e256"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82a5ae9e342e060f20e3d5a6082a8965",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1258939,
            "upload_time": "2024-02-18T06:44:02",
            "upload_time_iso_8601": "2024-02-18T06:44:02.897796Z",
            "url": "https://files.pythonhosted.org/packages/0c/6c/66bc838420b1e76e0f65fbccb98a7a859c7c27eea8816e28893d534f1433/pyjpegls-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3a8c108163d742a0339e9a58569d178f9dc66c556c3e8ced4b5ea61f0120c7d",
                "md5": "df58585cc70eaf5238453f2d158ac30a",
                "sha256": "1d0eb90540f733ef0ffba3f9848ebbbe5385c4a39c4587034cb3fa7351764127"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df58585cc70eaf5238453f2d158ac30a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2738041,
            "upload_time": "2024-02-18T06:44:04",
            "upload_time_iso_8601": "2024-02-18T06:44:04.436791Z",
            "url": "https://files.pythonhosted.org/packages/a3/a8/c108163d742a0339e9a58569d178f9dc66c556c3e8ced4b5ea61f0120c7d/pyjpegls-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2b783e02d367961d232bc7137e17185f90d1d4ffca0c9573b1d958d6681f944",
                "md5": "e6d2d1670d3a134aece6d99b09d89d75",
                "sha256": "bb77abf84fd6d31310cb625d592d01027a6832dc84c4c096cfbc5548b4b916b6"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6d2d1670d3a134aece6d99b09d89d75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2745412,
            "upload_time": "2024-02-18T06:44:06",
            "upload_time_iso_8601": "2024-02-18T06:44:06.389930Z",
            "url": "https://files.pythonhosted.org/packages/d2/b7/83e02d367961d232bc7137e17185f90d1d4ffca0c9573b1d958d6681f944/pyjpegls-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8a854ab74b107d0d9b09b0f87ca08b19867c7705bf4603ab086d48bfa380335",
                "md5": "59cbb05ae513721fbb55a4c0d9b6cc97",
                "sha256": "6b49a5dbe1e759f3baedd6cf97dc1ee4c53545327262b319f142069c41d445a6"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59cbb05ae513721fbb55a4c0d9b6cc97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1227419,
            "upload_time": "2024-02-18T06:44:07",
            "upload_time_iso_8601": "2024-02-18T06:44:07.947374Z",
            "url": "https://files.pythonhosted.org/packages/e8/a8/54ab74b107d0d9b09b0f87ca08b19867c7705bf4603ab086d48bfa380335/pyjpegls-1.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b8664bf81c4a5962fe24bf1cd25cc44af433f2ce027de3549d7581d52a4ec08",
                "md5": "f060ac6f0f0a134b998917a9cc13df2a",
                "sha256": "fe87fe166340d938ca80dbd82024890b7fda34b01de217467ec648a9954c2827"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f060ac6f0f0a134b998917a9cc13df2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1258962,
            "upload_time": "2024-02-18T06:44:09",
            "upload_time_iso_8601": "2024-02-18T06:44:09.423471Z",
            "url": "https://files.pythonhosted.org/packages/5b/86/64bf81c4a5962fe24bf1cd25cc44af433f2ce027de3549d7581d52a4ec08/pyjpegls-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3c97f551732557509d705acf6d1ff3b7e6e4f841c0995b703b616f1d9977dc5",
                "md5": "6409c25c3785992796c8e8e1df247299",
                "sha256": "dc4c0c0a6a15b52e649ab757d1e3fdebdaf5aa9e969bea08b2f29c1bee8087c5"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6409c25c3785992796c8e8e1df247299",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1259045,
            "upload_time": "2024-02-18T06:44:10",
            "upload_time_iso_8601": "2024-02-18T06:44:10.814419Z",
            "url": "https://files.pythonhosted.org/packages/b3/c9/7f551732557509d705acf6d1ff3b7e6e4f841c0995b703b616f1d9977dc5/pyjpegls-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5ea8e9342c9a5d82e2df5485c6cc8364a9a29c42cafb5464b77b935ff902887",
                "md5": "225be704b6db1e4b632c68ec32bea8ff",
                "sha256": "97a6d07ee35e0f67d18547a9170a4d6fa4fdd750af6713b13d9066bc758d3828"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "225be704b6db1e4b632c68ec32bea8ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2748402,
            "upload_time": "2024-02-18T06:44:13",
            "upload_time_iso_8601": "2024-02-18T06:44:13.167463Z",
            "url": "https://files.pythonhosted.org/packages/d5/ea/8e9342c9a5d82e2df5485c6cc8364a9a29c42cafb5464b77b935ff902887/pyjpegls-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d98b4edfe3f56b13c7fd3f8ad183eac0734399cd5dd4ab17ecad3be9e9cf6e24",
                "md5": "0a7d460919e18c66bbe2bb9091ddf5cd",
                "sha256": "18ced31e95f91f1bf8b4d529b51862653540dba325c1d8c9418947d9d109057b"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a7d460919e18c66bbe2bb9091ddf5cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2757490,
            "upload_time": "2024-02-18T06:44:14",
            "upload_time_iso_8601": "2024-02-18T06:44:14.723464Z",
            "url": "https://files.pythonhosted.org/packages/d9/8b/4edfe3f56b13c7fd3f8ad183eac0734399cd5dd4ab17ecad3be9e9cf6e24/pyjpegls-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55723e58af6419aa127df42dcab711c6004a4b13a4c1e2dd68777495f9ebb573",
                "md5": "64fc706ea9734f2739027af7c5837c8a",
                "sha256": "1d7d401413581fcd39268bd635bcd20171505670c221ba6a6ddb13d5d8b161df"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64fc706ea9734f2739027af7c5837c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1227196,
            "upload_time": "2024-02-18T06:44:16",
            "upload_time_iso_8601": "2024-02-18T06:44:16.738150Z",
            "url": "https://files.pythonhosted.org/packages/55/72/3e58af6419aa127df42dcab711c6004a4b13a4c1e2dd68777495f9ebb573/pyjpegls-1.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33175eab13cb2867fb3454c388950762522439a2233932926b657bca951b2ad4",
                "md5": "7028cf975e894bdd5d113ba0715c2580",
                "sha256": "9abf384b0c2f6b06839d0a34399c566b5e2a527ca7ceb7aabb086a0b0059ba70"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7028cf975e894bdd5d113ba0715c2580",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1258513,
            "upload_time": "2024-02-18T06:44:18",
            "upload_time_iso_8601": "2024-02-18T06:44:18.237632Z",
            "url": "https://files.pythonhosted.org/packages/33/17/5eab13cb2867fb3454c388950762522439a2233932926b657bca951b2ad4/pyjpegls-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a3dd54d7c74632e078a66e001ade2aad86f7e8a5c5a132d534d74fcdc0b292e",
                "md5": "7816a85652acbc0515c2680e7ca7eaf9",
                "sha256": "696b91344f9bdb16530ab7a04816d6fd0550967df1b7a5920d3372f3a1f01703"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7816a85652acbc0515c2680e7ca7eaf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1258727,
            "upload_time": "2024-02-18T06:44:20",
            "upload_time_iso_8601": "2024-02-18T06:44:20.202281Z",
            "url": "https://files.pythonhosted.org/packages/4a/3d/d54d7c74632e078a66e001ade2aad86f7e8a5c5a132d534d74fcdc0b292e/pyjpegls-1.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cd1cd0b63548a3a576064f245acaf15ec07866e231804467f4136e2ffbf4978",
                "md5": "c161b1a397ba64fef0abff5f8be993c0",
                "sha256": "c1caf16c0ef796ba40eddf64467652d760c27f571c343705f4889466610395e7"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c161b1a397ba64fef0abff5f8be993c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2703791,
            "upload_time": "2024-02-18T06:44:22",
            "upload_time_iso_8601": "2024-02-18T06:44:22.555464Z",
            "url": "https://files.pythonhosted.org/packages/6c/d1/cd0b63548a3a576064f245acaf15ec07866e231804467f4136e2ffbf4978/pyjpegls-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "606d4a757ef0004d1eb2f9a2a1e5edf18f56636b5e740d2784aacf37ce3434ac",
                "md5": "fd8991598d0170782845dbcb1a6c1432",
                "sha256": "0d8a6f3e123dff7640e254790ca01514cb6e070673b774b9a734a85ee8f6f6ee"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd8991598d0170782845dbcb1a6c1432",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2709759,
            "upload_time": "2024-02-18T06:44:24",
            "upload_time_iso_8601": "2024-02-18T06:44:24.811825Z",
            "url": "https://files.pythonhosted.org/packages/60/6d/4a757ef0004d1eb2f9a2a1e5edf18f56636b5e740d2784aacf37ce3434ac/pyjpegls-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeef9cbc7ee067f1b97f9458a28f783331595f15213987ad54aace3aafdec93f",
                "md5": "c80306046a37ba11549ed1712a4654c9",
                "sha256": "3d7ae2b224e9683237d2c97fbf42da0c462d03b8f0db8679c863ecf5afd1ee5d"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c80306046a37ba11549ed1712a4654c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1227521,
            "upload_time": "2024-02-18T06:44:26",
            "upload_time_iso_8601": "2024-02-18T06:44:26.462370Z",
            "url": "https://files.pythonhosted.org/packages/ae/ef/9cbc7ee067f1b97f9458a28f783331595f15213987ad54aace3aafdec93f/pyjpegls-1.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb9bb5a49571c951c77b87c28f1174f50a498ab233d71acbda81bba6148d90f",
                "md5": "c372c041eaf18d8d8575872b5b31dfae",
                "sha256": "eb5d783cbbb81c5c2421d09fabedfa07bbe6c32bff140e01d15c71281f7ca22a"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c372c041eaf18d8d8575872b5b31dfae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1258699,
            "upload_time": "2024-02-18T06:44:28",
            "upload_time_iso_8601": "2024-02-18T06:44:28.559470Z",
            "url": "https://files.pythonhosted.org/packages/3e/b9/bb5a49571c951c77b87c28f1174f50a498ab233d71acbda81bba6148d90f/pyjpegls-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e810f3a0fc2833bc4f58d5b3516ed96cc2b11fc386d91245a4679f04d658d967",
                "md5": "4c335faf5d282dd63408060f4b1a1189",
                "sha256": "df05d3d0c2c7e9308b54a14ef0b4b149961a508e6e539d8311771b53d2960bb2"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4c335faf5d282dd63408060f4b1a1189",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1258991,
            "upload_time": "2024-02-18T06:44:30",
            "upload_time_iso_8601": "2024-02-18T06:44:30.267920Z",
            "url": "https://files.pythonhosted.org/packages/e8/10/f3a0fc2833bc4f58d5b3516ed96cc2b11fc386d91245a4679f04d658d967/pyjpegls-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6efffc89ffc69de34a333003cc1b8d26ac6e5643867b9b99246a01fe6b1c5cc5",
                "md5": "a5f6f0335439f73b0ada542dd9b3a692",
                "sha256": "ce5006d8b6e59c28e39df7b049692826e1b981c5d4d86bd868b5ebf06ddb043a"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5f6f0335439f73b0ada542dd9b3a692",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2708681,
            "upload_time": "2024-02-18T06:44:33",
            "upload_time_iso_8601": "2024-02-18T06:44:33.315460Z",
            "url": "https://files.pythonhosted.org/packages/6e/ff/fc89ffc69de34a333003cc1b8d26ac6e5643867b9b99246a01fe6b1c5cc5/pyjpegls-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3863c858f5fded9876082bfa568d3e5a7ae7b012caf801fda1de2b42f7d843c2",
                "md5": "06173a240427ca7cecd5595eb61ef076",
                "sha256": "64a8eb47e1eaf942fb10e2d5ef2212104d19bef7e9dc9cd4cf82b6d34c65bec2"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06173a240427ca7cecd5595eb61ef076",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2713611,
            "upload_time": "2024-02-18T06:44:35",
            "upload_time_iso_8601": "2024-02-18T06:44:35.376854Z",
            "url": "https://files.pythonhosted.org/packages/38/63/c858f5fded9876082bfa568d3e5a7ae7b012caf801fda1de2b42f7d843c2/pyjpegls-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "885179c759fb517381044d8a32605c05f484fd5c3d7f8806c4de22f5e42a0e6e",
                "md5": "b28f324b4cfcf0a4d02a03cee81043d4",
                "sha256": "c08fad6ea838ab4968647a1687a7a2f3aba12503996dd7eef18ba0e1f8956d63"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b28f324b4cfcf0a4d02a03cee81043d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1227355,
            "upload_time": "2024-02-18T06:44:37",
            "upload_time_iso_8601": "2024-02-18T06:44:37.215979Z",
            "url": "https://files.pythonhosted.org/packages/88/51/79c759fb517381044d8a32605c05f484fd5c3d7f8806c4de22f5e42a0e6e/pyjpegls-1.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00fe2d7155f1841f2712e7e50764d909aa40e45ac1a5a0d6ddd565a35ff8d833",
                "md5": "865b735e73896168e13665d48939823f",
                "sha256": "bc3b51228f73c33071c093a99024d31eff07b54fbb10bc2d0e90482d52215e85"
            },
            "downloads": -1,
            "filename": "pyjpegls-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "865b735e73896168e13665d48939823f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1187793,
            "upload_time": "2024-02-18T06:44:38",
            "upload_time_iso_8601": "2024-02-18T06:44:38.964533Z",
            "url": "https://files.pythonhosted.org/packages/00/fe/2d7155f1841f2712e7e50764d909aa40e45ac1a5a0d6ddd565a35ff8d833/pyjpegls-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-18 06:44:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pydicom",
    "github_project": "pyjpegls",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pyjpegls"
}
        
Elapsed time: 0.19035s