pi-heif


Namepi-heif JSON
Version 0.16.0 PyPI version JSON
download
home_pagehttps://github.com/bigcat88/pillow_heif
SummaryPython interface for libheif library
upload_time2024-04-01 20:46:07
maintainerNone
docs_urlNone
authorAlexander Piskun
requires_python>=3.8
licenseBSD-3-Clause
keywords heic heif pillow
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pi-heif

[![Analysis & Coverage](https://github.com/bigcat88/pillow_heif/actions/workflows/analysis-coverage.yml/badge.svg)](https://github.com/bigcat88/pillow_heif/actions/workflows/analysis-coverage.yml)
[![Wheels test(Pi-Heif)](https://github.com/bigcat88/pillow_heif/actions/workflows/test-wheels-pi_heif.yml/badge.svg)](https://github.com/bigcat88/pillow_heif/actions/workflows/test-wheels-pi_heif.yml)

![PythonVersion](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)
![impl](https://img.shields.io/pypi/implementation/pi_heif)
![pypi](https://img.shields.io/pypi/v/pi_heif.svg)
[![Downloads](https://static.pepy.tech/personalized-badge/pi-heif?period=total&units=international_system&left_color=grey&right_color=orange&left_text=Downloads)](https://pepy.tech/project/pi-heif)
[![Downloads](https://static.pepy.tech/personalized-badge/pi-heif?period=month&units=international_system&left_color=grey&right_color=orange&left_text=Downloads/Month)](https://pepy.tech/project/pi-heif)

![Mac OS](https://img.shields.io/badge/mac%20os-FCC624?style=for-the-badge&logoColor=white)
![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)
![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)
![Alpine Linux](https://img.shields.io/badge/Alpine_Linux-0078D6.svg?style=for-the-badge&logo=alpine-linux&logoColor=white)
![Raspberry Pi](https://img.shields.io/badge/Rasberry_Pi-FCC624.svg?style=for-the-badge&logo=raspberry-pi&logoColor=red)

This is a light version of [Pillow-Heif](https://github.com/bigcat88/pillow_heif) with more permissive license for binary wheels.

It includes only `HEIF` decoder and does not support `save` operations.

All codebase are the same, refer to [pillow-heif docs](https://pillow-heif.readthedocs.io/).

The only difference is the name of the imported project.

### Install
```console
python3 -m pip install -U pip
python3 -m pip install pi-heif
```

### Example of use as a Pillow plugin
```python3
from PIL import Image
from pi_heif import register_heif_opener

register_heif_opener()

im = Image.open("images/input.heic")  # do whatever need with a Pillow image
im.show()
```

### 8/10/12 bit HEIF to 8/16 bit PNG using OpenCV
```python3
import numpy as np
import cv2
import pi_heif

heif_file = pi_heif.open_heif("image.heic", convert_hdr_to_8bit=False, bgr_mode=True)
np_array = np.asarray(heif_file)
cv2.imwrite("image.png", np_array)
```

### Get decoded image data as a Numpy array
```python3
import numpy as np
import pi_heif

if pi_heif.is_supported("input.heic"):
    heif_file = pi_heif.open_heif("input.heic")
    np_array = np.asarray(heif_file)
```

### Wheels

| **_Wheels table_** | macOS<br/>Intel | macOS<br/>Silicon | Windows<br/>64bit | musllinux* | manylinux* |
|--------------------|:---------------:|:-----------------:|:-----------------:|:----------:|:----------:|
| CPython 3.8        |        ✅        |         ✅         |         ✅         |     ✅      |     ✅      |
| CPython 3.9        |        ✅        |         ✅         |         ✅         |     ✅      |     ✅      |
| CPython 3.10       |        ✅        |         ✅         |         ✅         |     ✅      |     ✅      |
| CPython 3.11       |        ✅        |         ✅         |         ✅         |     ✅      |     ✅      |
| CPython 3.12       |        ✅        |         ✅         |         ✅         |     ✅      |     ✅      |
| PyPy 3.8 v7.3      |        ✅        |         ✅         |         ✅         |    N/A     |     ✅      |
| PyPy 3.9 v7.3      |        ✅        |         ✅         |         ✅         |    N/A     |     ✅      |
| PyPy 3.10 v7.3     |        ✅        |         ✅         |         ✅         |    N/A     |     ✅      |

&ast; **i686**, **x86_64**, **aarch64** wheels.

`ARMv7l`: wheels are present for Debian 11+(Ubuntu 20.04+) and Alpine 3.16/3.17/3.18

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bigcat88/pillow_heif",
    "name": "pi-heif",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "heic, heif, pillow",
    "author": "Alexander Piskun",
    "author_email": "bigcat88@users.noreply.github.com",
    "download_url": "https://files.pythonhosted.org/packages/92/e5/a674bb9ede3495d64a08ec5ed79847d881fc88ff9c93187d952591d07b91/pi_heif-0.16.0.tar.gz",
    "platform": null,
    "description": "# pi-heif\n\n[![Analysis & Coverage](https://github.com/bigcat88/pillow_heif/actions/workflows/analysis-coverage.yml/badge.svg)](https://github.com/bigcat88/pillow_heif/actions/workflows/analysis-coverage.yml)\n[![Wheels test(Pi-Heif)](https://github.com/bigcat88/pillow_heif/actions/workflows/test-wheels-pi_heif.yml/badge.svg)](https://github.com/bigcat88/pillow_heif/actions/workflows/test-wheels-pi_heif.yml)\n\n![PythonVersion](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)\n![impl](https://img.shields.io/pypi/implementation/pi_heif)\n![pypi](https://img.shields.io/pypi/v/pi_heif.svg)\n[![Downloads](https://static.pepy.tech/personalized-badge/pi-heif?period=total&units=international_system&left_color=grey&right_color=orange&left_text=Downloads)](https://pepy.tech/project/pi-heif)\n[![Downloads](https://static.pepy.tech/personalized-badge/pi-heif?period=month&units=international_system&left_color=grey&right_color=orange&left_text=Downloads/Month)](https://pepy.tech/project/pi-heif)\n\n![Mac OS](https://img.shields.io/badge/mac%20os-FCC624?style=for-the-badge&logoColor=white)\n![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)\n![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)\n![Alpine Linux](https://img.shields.io/badge/Alpine_Linux-0078D6.svg?style=for-the-badge&logo=alpine-linux&logoColor=white)\n![Raspberry Pi](https://img.shields.io/badge/Rasberry_Pi-FCC624.svg?style=for-the-badge&logo=raspberry-pi&logoColor=red)\n\nThis is a light version of [Pillow-Heif](https://github.com/bigcat88/pillow_heif) with more permissive license for binary wheels.\n\nIt includes only `HEIF` decoder and does not support `save` operations.\n\nAll codebase are the same, refer to [pillow-heif docs](https://pillow-heif.readthedocs.io/).\n\nThe only difference is the name of the imported project.\n\n### Install\n```console\npython3 -m pip install -U pip\npython3 -m pip install pi-heif\n```\n\n### Example of use as a Pillow plugin\n```python3\nfrom PIL import Image\nfrom pi_heif import register_heif_opener\n\nregister_heif_opener()\n\nim = Image.open(\"images/input.heic\")  # do whatever need with a Pillow image\nim.show()\n```\n\n### 8/10/12 bit HEIF to 8/16 bit PNG using OpenCV\n```python3\nimport numpy as np\nimport cv2\nimport pi_heif\n\nheif_file = pi_heif.open_heif(\"image.heic\", convert_hdr_to_8bit=False, bgr_mode=True)\nnp_array = np.asarray(heif_file)\ncv2.imwrite(\"image.png\", np_array)\n```\n\n### Get decoded image data as a Numpy array\n```python3\nimport numpy as np\nimport pi_heif\n\nif pi_heif.is_supported(\"input.heic\"):\n    heif_file = pi_heif.open_heif(\"input.heic\")\n    np_array = np.asarray(heif_file)\n```\n\n### Wheels\n\n| **_Wheels table_** | macOS<br/>Intel | macOS<br/>Silicon | Windows<br/>64bit | musllinux* | manylinux* |\n|--------------------|:---------------:|:-----------------:|:-----------------:|:----------:|:----------:|\n| CPython 3.8        |        \u2705        |         \u2705         |         \u2705         |     \u2705      |     \u2705      |\n| CPython 3.9        |        \u2705        |         \u2705         |         \u2705         |     \u2705      |     \u2705      |\n| CPython 3.10       |        \u2705        |         \u2705         |         \u2705         |     \u2705      |     \u2705      |\n| CPython 3.11       |        \u2705        |         \u2705         |         \u2705         |     \u2705      |     \u2705      |\n| CPython 3.12       |        \u2705        |         \u2705         |         \u2705         |     \u2705      |     \u2705      |\n| PyPy 3.8 v7.3      |        \u2705        |         \u2705         |         \u2705         |    N/A     |     \u2705      |\n| PyPy 3.9 v7.3      |        \u2705        |         \u2705         |         \u2705         |    N/A     |     \u2705      |\n| PyPy 3.10 v7.3     |        \u2705        |         \u2705         |         \u2705         |    N/A     |     \u2705      |\n\n&ast; **i686**, **x86_64**, **aarch64** wheels.\n\n`ARMv7l`: wheels are present for Debian 11+(Ubuntu 20.04+) and Alpine 3.16/3.17/3.18\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Python interface for libheif library",
    "version": "0.16.0",
    "project_urls": {
        "Changelog": "https://github.com/bigcat88/pillow_heif/blob/master/CHANGELOG.md",
        "Documentation": "https://pillow-heif.readthedocs.io",
        "Homepage": "https://github.com/bigcat88/pillow_heif",
        "Source": "https://github.com/bigcat88/pillow_heif"
    },
    "split_keywords": [
        "heic",
        " heif",
        " pillow"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc80686d82f4a2864a7bea4e55bc961b2cbfe990ef77b2a92df62a366b582efa",
                "md5": "14e2d45932876274ba58c6ed8a96800b",
                "sha256": "e8e8140be4defb226791f9d4ad991a4e75e4bb0d8e2228828b6f81864b6907a7"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14e2d45932876274ba58c6ed8a96800b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 502502,
            "upload_time": "2024-04-01T20:43:44",
            "upload_time_iso_8601": "2024-04-01T20:43:44.392385Z",
            "url": "https://files.pythonhosted.org/packages/dc/80/686d82f4a2864a7bea4e55bc961b2cbfe990ef77b2a92df62a366b582efa/pi_heif-0.16.0-cp310-cp310-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba2ccfffc26919643bebc50ff61b242872c8c8111ea22a5e26df0a0abb9704d5",
                "md5": "00a5031af377437c167339cb89cee25a",
                "sha256": "297569be55f1559e593c4d425b2aa46c7d8ea296139b65cef4e0c1c6882c857e"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "00a5031af377437c167339cb89cee25a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 450566,
            "upload_time": "2024-04-01T20:43:52",
            "upload_time_iso_8601": "2024-04-01T20:43:52.431458Z",
            "url": "https://files.pythonhosted.org/packages/ba/2c/cfffc26919643bebc50ff61b242872c8c8111ea22a5e26df0a0abb9704d5/pi_heif-0.16.0-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "529236682ff8f4a4f3c597e4a0f5a121cbe52ac7d4bece3754115f8e807d8fa3",
                "md5": "13c0078d0889365e3b3e43eb1ef6e2fb",
                "sha256": "964faa7c1568c0ab8018d63600e30abbc3ab122ee76ab7e2e22a4cb5bf96fe2c"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13c0078d0889365e3b3e43eb1ef6e2fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 878658,
            "upload_time": "2024-04-01T20:43:54",
            "upload_time_iso_8601": "2024-04-01T20:43:54.252843Z",
            "url": "https://files.pythonhosted.org/packages/52/92/36682ff8f4a4f3c597e4a0f5a121cbe52ac7d4bece3754115f8e807d8fa3/pi_heif-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7425a3b9a56f2595fac0aa42455d358c47544da8dfc78b9445bcfc4e062544f6",
                "md5": "eb1bccdc49059bc7be9f0b98cbc1eded",
                "sha256": "d5797444882b9af2ca15cbb11659186a9142872aa647df6b6d02ea2f220ca8b3"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eb1bccdc49059bc7be9f0b98cbc1eded",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 968933,
            "upload_time": "2024-04-01T20:43:56",
            "upload_time_iso_8601": "2024-04-01T20:43:56.035031Z",
            "url": "https://files.pythonhosted.org/packages/74/25/a3b9a56f2595fac0aa42455d358c47544da8dfc78b9445bcfc4e062544f6/pi_heif-0.16.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8d1c4b9901e28b48b826b2b8f609d36de02b776d4c5c223799f3a40702e3cb0",
                "md5": "eb926705fa3322c539574c3681a86334",
                "sha256": "a88b4cf288b36eccf467e001b9775bbe46a99962d4dd87695fcdf4d3ab7f9797"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb926705fa3322c539574c3681a86334",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 928137,
            "upload_time": "2024-04-01T20:43:58",
            "upload_time_iso_8601": "2024-04-01T20:43:58.654412Z",
            "url": "https://files.pythonhosted.org/packages/c8/d1/c4b9901e28b48b826b2b8f609d36de02b776d4c5c223799f3a40702e3cb0/pi_heif-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e57f4895a039998d4fe23da444a5f66c18e13859f51fa0ba8823576d8345e16",
                "md5": "90f18fe86c1edd7705700e19cc8f233a",
                "sha256": "f3f2aa013e60ad85b20a5706fd0ac2bdf8c27e320b88f590ad8917e316ad902c"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "90f18fe86c1edd7705700e19cc8f233a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 687635,
            "upload_time": "2024-04-01T20:44:00",
            "upload_time_iso_8601": "2024-04-01T20:44:00.089122Z",
            "url": "https://files.pythonhosted.org/packages/1e/57/f4895a039998d4fe23da444a5f66c18e13859f51fa0ba8823576d8345e16/pi_heif-0.16.0-cp310-cp310-manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f827b52a4bdd218f958ac270625670f4232d6dc41e534c07d77af1fac3797525",
                "md5": "501eb74a3cf52a90689649236045e2f7",
                "sha256": "b19d55dfffdffd1509222ede94e5dbacb656d2c25c74bc1f5c4b4e9e40095ff9"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "501eb74a3cf52a90689649236045e2f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1676749,
            "upload_time": "2024-04-01T20:44:01",
            "upload_time_iso_8601": "2024-04-01T20:44:01.903940Z",
            "url": "https://files.pythonhosted.org/packages/f8/27/b52a4bdd218f958ac270625670f4232d6dc41e534c07d77af1fac3797525/pi_heif-0.16.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a2842e16a51b7e63c0598b52efdf7902ca137cb9a0a6a21c47b191b6bf0c79e",
                "md5": "dfb15ca3ae5ecf9e74c92c4692cce69b",
                "sha256": "b51baee4de96a400fe870b3654a614d85efa6d9298488113044450539f7b677e"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "dfb15ca3ae5ecf9e74c92c4692cce69b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1413350,
            "upload_time": "2024-04-01T20:44:03",
            "upload_time_iso_8601": "2024-04-01T20:44:03.561363Z",
            "url": "https://files.pythonhosted.org/packages/5a/28/42e16a51b7e63c0598b52efdf7902ca137cb9a0a6a21c47b191b6bf0c79e/pi_heif-0.16.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cda24a7815e5ce8117754368429443508ca2aeb1c560a1177ee4b24458996e2f",
                "md5": "140235ca6919ce3c60070d97a7dad233",
                "sha256": "67951913bf1d33f6a9b7b2707cc76770e44196e97664940c9ad249546f83a39d"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "140235ca6919ce3c60070d97a7dad233",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1819637,
            "upload_time": "2024-04-01T20:44:05",
            "upload_time_iso_8601": "2024-04-01T20:44:05.375305Z",
            "url": "https://files.pythonhosted.org/packages/cd/a2/4a7815e5ce8117754368429443508ca2aeb1c560a1177ee4b24458996e2f/pi_heif-0.16.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83d5c8db25fc789cd2b16da465a23e960f791653a56f8acfc217566dde0d77c7",
                "md5": "28f2f21d35e703980de1bbefc0b4d4bb",
                "sha256": "3b8abf3920ad81bf679f953a0467f8b3803beb1b76575e290300bbe479d7715d"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28f2f21d35e703980de1bbefc0b4d4bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1792176,
            "upload_time": "2024-04-01T20:44:07",
            "upload_time_iso_8601": "2024-04-01T20:44:07.202460Z",
            "url": "https://files.pythonhosted.org/packages/83/d5/c8db25fc789cd2b16da465a23e960f791653a56f8acfc217566dde0d77c7/pi_heif-0.16.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "830937b234bf97b18b4e9c8ab318c8e23cd3d4379da02b61cf13459c7d9e77d0",
                "md5": "d86205399f9f60988e47549f03d3cd51",
                "sha256": "152005cebf2c0ed7fca1cf14b034a82933ee103e50b6dfd77d2cb74e66da0984"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d86205399f9f60988e47549f03d3cd51",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1574706,
            "upload_time": "2024-04-01T20:44:08",
            "upload_time_iso_8601": "2024-04-01T20:44:08.747466Z",
            "url": "https://files.pythonhosted.org/packages/83/09/37b234bf97b18b4e9c8ab318c8e23cd3d4379da02b61cf13459c7d9e77d0/pi_heif-0.16.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b48b68a55ecee72d6fe9134156a14be8913f7a83cb008f23b909ca16ad5f718",
                "md5": "7fec01afb206e680177030d7047aa877",
                "sha256": "8b5a953f68bc0973f52b79eb0cf0f7b8521d1125958ce6336aa9b6f20664ae4d"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fec01afb206e680177030d7047aa877",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 502542,
            "upload_time": "2024-04-01T20:44:10",
            "upload_time_iso_8601": "2024-04-01T20:44:10.328575Z",
            "url": "https://files.pythonhosted.org/packages/3b/48/b68a55ecee72d6fe9134156a14be8913f7a83cb008f23b909ca16ad5f718/pi_heif-0.16.0-cp311-cp311-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7237538fe3b39f6e2cf5b389eea5253bb871e7ddad0890f8a9d4f29ca63d3a74",
                "md5": "fb5bbff1554fe4159b27ea19a4311772",
                "sha256": "f659685697a9a6d9fe9a30bf89962f4c0bc2fa7ecb29e3850366fa808c6dc7da"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb5bbff1554fe4159b27ea19a4311772",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 450565,
            "upload_time": "2024-04-01T20:44:11",
            "upload_time_iso_8601": "2024-04-01T20:44:11.732397Z",
            "url": "https://files.pythonhosted.org/packages/72/37/538fe3b39f6e2cf5b389eea5253bb871e7ddad0890f8a9d4f29ca63d3a74/pi_heif-0.16.0-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74436689bebe4897bf686d706a136f5efb513e639ab5f83389c00ce8bb78fd99",
                "md5": "55dda43622c7061fc0d40e4bd2425a34",
                "sha256": "1d076e864d2dba2015a2d2d2ed4d8181c5e674ef550c69994506317106877312"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55dda43622c7061fc0d40e4bd2425a34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 880378,
            "upload_time": "2024-04-01T20:44:13",
            "upload_time_iso_8601": "2024-04-01T20:44:13.929923Z",
            "url": "https://files.pythonhosted.org/packages/74/43/6689bebe4897bf686d706a136f5efb513e639ab5f83389c00ce8bb78fd99/pi_heif-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb062e5c36d20b87138e0247f704def6aeecef282c9f6547dc8b17b106f7f596",
                "md5": "05e85b1fa289f9266f69fba369320a30",
                "sha256": "08704ba106934e8df8ff7d5adf78b8c6d261475c229d308afea99875f9aa33e9"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "05e85b1fa289f9266f69fba369320a30",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 970529,
            "upload_time": "2024-04-01T20:44:15",
            "upload_time_iso_8601": "2024-04-01T20:44:15.411085Z",
            "url": "https://files.pythonhosted.org/packages/bb/06/2e5c36d20b87138e0247f704def6aeecef282c9f6547dc8b17b106f7f596/pi_heif-0.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cd57658cc086321ac7d4e8bf1d8a42f3f607b9bdd4d879d37b47584e6305b66",
                "md5": "172bbb5f87609ce61beadc10845a1c5d",
                "sha256": "8dcf21661e544f1b3fb286dc3224a8e6d685001a450f73a11f2de44e4bc78daf"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "172bbb5f87609ce61beadc10845a1c5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 929844,
            "upload_time": "2024-04-01T20:44:17",
            "upload_time_iso_8601": "2024-04-01T20:44:17.023697Z",
            "url": "https://files.pythonhosted.org/packages/2c/d5/7658cc086321ac7d4e8bf1d8a42f3f607b9bdd4d879d37b47584e6305b66/pi_heif-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "076c412ad3692d11906c6a2311f0f9107eca8792c1b6cea4195ab17ccbfed7aa",
                "md5": "caaf8ceaf48043e5c9493ff79953221f",
                "sha256": "a10107f77b009a61a94eb6e210a45f482dfc0ed2d39dcbd43bf3be03e7a4a18e"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "caaf8ceaf48043e5c9493ff79953221f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 689058,
            "upload_time": "2024-04-01T20:44:18",
            "upload_time_iso_8601": "2024-04-01T20:44:18.636604Z",
            "url": "https://files.pythonhosted.org/packages/07/6c/412ad3692d11906c6a2311f0f9107eca8792c1b6cea4195ab17ccbfed7aa/pi_heif-0.16.0-cp311-cp311-manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c808597b525d384026efb839f9f14f49c96780764106776ba93644af8f3e4177",
                "md5": "e25830c743b829e15cfbc7179cd3253c",
                "sha256": "f720b15672815e4ef10e47189a7e82689d16cc010d80b65ee8450e73ee8d8611"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e25830c743b829e15cfbc7179cd3253c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1678450,
            "upload_time": "2024-04-01T20:44:20",
            "upload_time_iso_8601": "2024-04-01T20:44:20.920170Z",
            "url": "https://files.pythonhosted.org/packages/c8/08/597b525d384026efb839f9f14f49c96780764106776ba93644af8f3e4177/pi_heif-0.16.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d2c1d0a5824b43c21b126e59869ecba7897f0b6cce72d1805b96dceb00a0b95",
                "md5": "54d3b310b713581bc9c7b10ea0045a19",
                "sha256": "6039ecccbbb6be806ad6960f200665018be13839d79769b150bb2c6af953482f"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "54d3b310b713581bc9c7b10ea0045a19",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1414872,
            "upload_time": "2024-04-01T20:44:23",
            "upload_time_iso_8601": "2024-04-01T20:44:23.226075Z",
            "url": "https://files.pythonhosted.org/packages/5d/2c/1d0a5824b43c21b126e59869ecba7897f0b6cce72d1805b96dceb00a0b95/pi_heif-0.16.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67ce3789ad7df836a9fbabde6037e05a005f36c11c711fe677287a5b51564a71",
                "md5": "cdce7e508c6e91573611108c2584a671",
                "sha256": "1b7d1ddb2a81e3b5ee84571e5e2253707f16245707547bc51f4f93f89f70261b"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cdce7e508c6e91573611108c2584a671",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1821146,
            "upload_time": "2024-04-01T20:44:25",
            "upload_time_iso_8601": "2024-04-01T20:44:25.046712Z",
            "url": "https://files.pythonhosted.org/packages/67/ce/3789ad7df836a9fbabde6037e05a005f36c11c711fe677287a5b51564a71/pi_heif-0.16.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "822dae68e35cb7e3dcdf2d357690183992fde410372a567cddeac401feefbc00",
                "md5": "27e844252c47f41069e8020402bfce6d",
                "sha256": "2a987378b09a7d27c275280c38930847436ba1a4aff36f4e09329278dc99441a"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27e844252c47f41069e8020402bfce6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1793657,
            "upload_time": "2024-04-01T20:44:26",
            "upload_time_iso_8601": "2024-04-01T20:44:26.742489Z",
            "url": "https://files.pythonhosted.org/packages/82/2d/ae68e35cb7e3dcdf2d357690183992fde410372a567cddeac401feefbc00/pi_heif-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55cc17ffec7344bc777d0474340e0bc65ac73bfdbee96eb170207920102b32ef",
                "md5": "e9b727f8e949976319f724383dfaf404",
                "sha256": "6f4371b9d347f3d6128d00b672477de3700d30a9e4e34c3d812dccd4ac3904f1"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e9b727f8e949976319f724383dfaf404",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1574716,
            "upload_time": "2024-04-01T20:44:28",
            "upload_time_iso_8601": "2024-04-01T20:44:28.387141Z",
            "url": "https://files.pythonhosted.org/packages/55/cc/17ffec7344bc777d0474340e0bc65ac73bfdbee96eb170207920102b32ef/pi_heif-0.16.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c03db2e8946d7f1e6ace07b79746a815a291561574e3ecb328a662821874b804",
                "md5": "7473b38229a842aa1e917e112a640b42",
                "sha256": "13f0255990f4b24bf4b0d0731bac8318645a09870e8bd15997a9b83ecd928fb0"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7473b38229a842aa1e917e112a640b42",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 502706,
            "upload_time": "2024-04-01T20:44:30",
            "upload_time_iso_8601": "2024-04-01T20:44:30.491459Z",
            "url": "https://files.pythonhosted.org/packages/c0/3d/b2e8946d7f1e6ace07b79746a815a291561574e3ecb328a662821874b804/pi_heif-0.16.0-cp312-cp312-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df614d2af988f25a66b8375164b4c97946873de2351595ac613f895203c87c8d",
                "md5": "feef28775217f2b533dddfa9d4f66660",
                "sha256": "a1c38fbf3f0302bc1635bbad6a36ec0c222b5d5825532407d1cbac1b8aeea8a5"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "feef28775217f2b533dddfa9d4f66660",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 450606,
            "upload_time": "2024-04-01T20:44:31",
            "upload_time_iso_8601": "2024-04-01T20:44:31.866338Z",
            "url": "https://files.pythonhosted.org/packages/df/61/4d2af988f25a66b8375164b4c97946873de2351595ac613f895203c87c8d/pi_heif-0.16.0-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e589310de3abb1f5dd66aea517d2d6013af878a79b34560051f32b15325464a",
                "md5": "72491c0315757344989a1f87ec33db7d",
                "sha256": "d2f1dbd2aff7d9b4815140f8574687e43becfbd94afce9272be5d803ffea4ab5"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72491c0315757344989a1f87ec33db7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 880935,
            "upload_time": "2024-04-01T20:44:34",
            "upload_time_iso_8601": "2024-04-01T20:44:34.093035Z",
            "url": "https://files.pythonhosted.org/packages/3e/58/9310de3abb1f5dd66aea517d2d6013af878a79b34560051f32b15325464a/pi_heif-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2876a1572a04b82fda81bc25f7d97f471e0d9690504d82db267aae235f45697e",
                "md5": "d9cc298ffcc1ac3dafc15144b0c5b268",
                "sha256": "dba8462294094207ef2ef2cfa71beaccee797d70e43d189dc174a69a4fee31a0"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d9cc298ffcc1ac3dafc15144b0c5b268",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 971105,
            "upload_time": "2024-04-01T20:44:36",
            "upload_time_iso_8601": "2024-04-01T20:44:36.362703Z",
            "url": "https://files.pythonhosted.org/packages/28/76/a1572a04b82fda81bc25f7d97f471e0d9690504d82db267aae235f45697e/pi_heif-0.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd83b23e8d8c459c6a289fe0c4a085aa1d03daee99e001b75bf4f478b54619fc",
                "md5": "cb18b2f2bb6ca80819dab91cf29ec3b4",
                "sha256": "b8bf007d89b8ae2b99f04a31c054ad9aeb14bc6acb6c0866ff722e170753eb3c"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb18b2f2bb6ca80819dab91cf29ec3b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 930778,
            "upload_time": "2024-04-01T20:44:38",
            "upload_time_iso_8601": "2024-04-01T20:44:38.255178Z",
            "url": "https://files.pythonhosted.org/packages/cd/83/b23e8d8c459c6a289fe0c4a085aa1d03daee99e001b75bf4f478b54619fc/pi_heif-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7bee9447663c7841f0c647debef28032aa478875a6bb2a48a7adba55fcba92c",
                "md5": "c1e79cdf127d344d551948675b16d4e5",
                "sha256": "00d4614b4c36032e76d3cf9ba1f567956406d284e0e66afbd3a193ce2aaa495c"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c1e79cdf127d344d551948675b16d4e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 689593,
            "upload_time": "2024-04-01T20:44:41",
            "upload_time_iso_8601": "2024-04-01T20:44:41.003459Z",
            "url": "https://files.pythonhosted.org/packages/e7/be/e9447663c7841f0c647debef28032aa478875a6bb2a48a7adba55fcba92c/pi_heif-0.16.0-cp312-cp312-manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d91ceab8b2fdfd7a0b2616ec695a53e43bff9d7a234bf1f99814266b37c4a722",
                "md5": "fc9b3948364ec73dfe247411e9835c6b",
                "sha256": "3e719f31dffaaffcba6fe8ed667bfa0ef127de178cb6197a7aab08da310e6466"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc9b3948364ec73dfe247411e9835c6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1679920,
            "upload_time": "2024-04-01T20:44:42",
            "upload_time_iso_8601": "2024-04-01T20:44:42.813607Z",
            "url": "https://files.pythonhosted.org/packages/d9/1c/eab8b2fdfd7a0b2616ec695a53e43bff9d7a234bf1f99814266b37c4a722/pi_heif-0.16.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b43cd9f90118e57dc52d3b36abc0aed9317617bb8f0334e64590e1e93fbb5a6f",
                "md5": "43dd85c67ed80d732f908b5ef28fbafa",
                "sha256": "2a3d7e9750a2cb665bf161f854ca632ef76ab1974f92026d5f7d92f048e616f3"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "43dd85c67ed80d732f908b5ef28fbafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1416355,
            "upload_time": "2024-04-01T20:44:44",
            "upload_time_iso_8601": "2024-04-01T20:44:44.304425Z",
            "url": "https://files.pythonhosted.org/packages/b4/3c/d9f90118e57dc52d3b36abc0aed9317617bb8f0334e64590e1e93fbb5a6f/pi_heif-0.16.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77084acad223a30d83bf2c2c249bb9335fcb0fe91c7a081738b1c0a449f50e45",
                "md5": "5916a7c22432d546ba1d905570723ce0",
                "sha256": "fe91f8739fdb0ed28f2f4821e20036dd7b2be7c94789dea2e4170a765bd2d195"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5916a7c22432d546ba1d905570723ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1822208,
            "upload_time": "2024-04-01T20:44:45",
            "upload_time_iso_8601": "2024-04-01T20:44:45.876844Z",
            "url": "https://files.pythonhosted.org/packages/77/08/4acad223a30d83bf2c2c249bb9335fcb0fe91c7a081738b1c0a449f50e45/pi_heif-0.16.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57a6ab8f29dc380686b211012c345c7799f02758db0865b714d52d809fad715d",
                "md5": "9658bd1b5508a711a0165c6b7ecfe285",
                "sha256": "e5b88e1dd14085f696b829b4f0800a00d52a6eba653b0dbc134528e75c52dc70"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9658bd1b5508a711a0165c6b7ecfe285",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1795357,
            "upload_time": "2024-04-01T20:44:48",
            "upload_time_iso_8601": "2024-04-01T20:44:48.306979Z",
            "url": "https://files.pythonhosted.org/packages/57/a6/ab8f29dc380686b211012c345c7799f02758db0865b714d52d809fad715d/pi_heif-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d76deea30b48c664232f04d0d41e40185bfbcf3777218e358139b93380bf0dd",
                "md5": "74a5565d4157067b94d6b4967982f25a",
                "sha256": "68afb0136a68ba7c6ca5a873bffdafb75db4011e846adbaf8d995d5b90e24965"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74a5565d4157067b94d6b4967982f25a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1574784,
            "upload_time": "2024-04-01T20:44:49",
            "upload_time_iso_8601": "2024-04-01T20:44:49.938917Z",
            "url": "https://files.pythonhosted.org/packages/6d/76/deea30b48c664232f04d0d41e40185bfbcf3777218e358139b93380bf0dd/pi_heif-0.16.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e376bbe79bbeaaff8f31a61be0298e40bd48a8f91e2b19a928ab71a75ef17c79",
                "md5": "5054cf3a9d92e0aa90325bc695dabf24",
                "sha256": "7576ad72bbac21e79d937d8e3675e244526dd571d7802d1884288534b1dac06a"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5054cf3a9d92e0aa90325bc695dabf24",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 502509,
            "upload_time": "2024-04-01T20:44:51",
            "upload_time_iso_8601": "2024-04-01T20:44:51.582587Z",
            "url": "https://files.pythonhosted.org/packages/e3/76/bbe79bbeaaff8f31a61be0298e40bd48a8f91e2b19a928ab71a75ef17c79/pi_heif-0.16.0-cp38-cp38-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cc844207cae5a692eacd542e105e8395c683677149ccecdfbe102cac38a558d",
                "md5": "f9e467899b47ae20e66ca813273a629d",
                "sha256": "f5341138ffbd174da0737e54662b7e17d73c9e95a0abfcb34415d2a2775761e7"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9e467899b47ae20e66ca813273a629d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 450571,
            "upload_time": "2024-04-01T20:44:53",
            "upload_time_iso_8601": "2024-04-01T20:44:53.695858Z",
            "url": "https://files.pythonhosted.org/packages/1c/c8/44207cae5a692eacd542e105e8395c683677149ccecdfbe102cac38a558d/pi_heif-0.16.0-cp38-cp38-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45cc69ca32da2dae28de538c72d0f936561b7bb5838b554894d91db402bdc0f7",
                "md5": "cefb2fc35a1ccbc4afec3758acb91b2c",
                "sha256": "ca546ffd940e10d5b1e6a76c404401e4b0affb6889345a8eeb3a12905af49a22"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cefb2fc35a1ccbc4afec3758acb91b2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 879277,
            "upload_time": "2024-04-01T20:44:55",
            "upload_time_iso_8601": "2024-04-01T20:44:55.783466Z",
            "url": "https://files.pythonhosted.org/packages/45/cc/69ca32da2dae28de538c72d0f936561b7bb5838b554894d91db402bdc0f7/pi_heif-0.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "610570108b7b7b5f6663871047f990ab71a41eab97c4c39e82b59170ff758e86",
                "md5": "802817ceed19861837a0694ec9bca011",
                "sha256": "13561c2b5f2321a96c8e72e9327fba412a1d9911d3d3f9db129094ca24c1241e"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "802817ceed19861837a0694ec9bca011",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 969537,
            "upload_time": "2024-04-01T20:44:58",
            "upload_time_iso_8601": "2024-04-01T20:44:58.045289Z",
            "url": "https://files.pythonhosted.org/packages/61/05/70108b7b7b5f6663871047f990ab71a41eab97c4c39e82b59170ff758e86/pi_heif-0.16.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8eb2f44bf733bae4192e92a612b2a414bb4b8d04cd20b3f4d7a8e64dcc6a0663",
                "md5": "db226f0b6afe23525fc60d862a0976d9",
                "sha256": "ff1af6b6f6c42339879d62ec0ebd76d8dcb819114232a0bf272d560b41d967f6"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db226f0b6afe23525fc60d862a0976d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 928783,
            "upload_time": "2024-04-01T20:45:01",
            "upload_time_iso_8601": "2024-04-01T20:45:01.159580Z",
            "url": "https://files.pythonhosted.org/packages/8e/b2/f44bf733bae4192e92a612b2a414bb4b8d04cd20b3f4d7a8e64dcc6a0663/pi_heif-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c254a2a8924b0307cab0447a74a2ec6b2c7ad407a2332eafd1d0abcc9d5e15cf",
                "md5": "7505e8edc260a27f4e3879892ef73a93",
                "sha256": "1fe5c65beacae02c0c1de06073f7e3e80cd8e4ff7f71a1d1e4b3a9c8f3714aab"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7505e8edc260a27f4e3879892ef73a93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1677640,
            "upload_time": "2024-04-01T20:45:03",
            "upload_time_iso_8601": "2024-04-01T20:45:03.339462Z",
            "url": "https://files.pythonhosted.org/packages/c2/54/a2a8924b0307cab0447a74a2ec6b2c7ad407a2332eafd1d0abcc9d5e15cf/pi_heif-0.16.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c93f5604da937fee26f370b87a2fdfde834cc1684e12136f86f385bfe84353c0",
                "md5": "58c2cfc5488b256799d9d0c5da86652c",
                "sha256": "4da3ea75a74a00e0439c0d8eb7d8389cbb1bf2b945b6f29e35905a37e754af9a"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "58c2cfc5488b256799d9d0c5da86652c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1820543,
            "upload_time": "2024-04-01T20:45:05",
            "upload_time_iso_8601": "2024-04-01T20:45:05.927870Z",
            "url": "https://files.pythonhosted.org/packages/c9/3f/5604da937fee26f370b87a2fdfde834cc1684e12136f86f385bfe84353c0/pi_heif-0.16.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c0a340c6a2dfbd410778134fb0ef2bf7d79a07668c5f48a32ab0298c592a6ba",
                "md5": "38981002fb42a0f8a7ef82ef7b8a495f",
                "sha256": "bd5da1f8aeff89402598e07adff0186c72c568e225ec840f239d2d0cc3e36dc4"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38981002fb42a0f8a7ef82ef7b8a495f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1793037,
            "upload_time": "2024-04-01T20:45:07",
            "upload_time_iso_8601": "2024-04-01T20:45:07.952961Z",
            "url": "https://files.pythonhosted.org/packages/3c/0a/340c6a2dfbd410778134fb0ef2bf7d79a07668c5f48a32ab0298c592a6ba/pi_heif-0.16.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7edc76eed62914f7e854d179cd3d6e13c3cb858931b35a01a1f6b6e9363ccbe3",
                "md5": "f25d2240a83b205dec4adcff1522dbbd",
                "sha256": "d131636617d3a658ea108f7bfa3cb3acac48ea94fd45d062ec35dc8e50cfc255"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f25d2240a83b205dec4adcff1522dbbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1575502,
            "upload_time": "2024-04-01T20:45:09",
            "upload_time_iso_8601": "2024-04-01T20:45:09.982024Z",
            "url": "https://files.pythonhosted.org/packages/7e/dc/76eed62914f7e854d179cd3d6e13c3cb858931b35a01a1f6b6e9363ccbe3/pi_heif-0.16.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c7d7bd253d02cfc861792e5cfbfc053712b78579111310d259ead44bb745fef",
                "md5": "38b896406dcceba2419a63671719c8f9",
                "sha256": "c45d9048f158e2346ab232fb9cdf79f7d5dd7b766ab2b4df9d774572b854b0b3"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b896406dcceba2419a63671719c8f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 502500,
            "upload_time": "2024-04-01T20:45:11",
            "upload_time_iso_8601": "2024-04-01T20:45:11.583867Z",
            "url": "https://files.pythonhosted.org/packages/9c/7d/7bd253d02cfc861792e5cfbfc053712b78579111310d259ead44bb745fef/pi_heif-0.16.0-cp39-cp39-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e24e2942455ec4c634bbe22a9e0824350c3bbf5aa19bed6e6ea5d960b597af7e",
                "md5": "a0b7974da1be7d13ce610953657334e5",
                "sha256": "4c420a7a26da657203b36c7afc24c409700815050c915c9f913ec67c0ba69b04"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a0b7974da1be7d13ce610953657334e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 450570,
            "upload_time": "2024-04-01T20:45:14",
            "upload_time_iso_8601": "2024-04-01T20:45:14.422626Z",
            "url": "https://files.pythonhosted.org/packages/e2/4e/2942455ec4c634bbe22a9e0824350c3bbf5aa19bed6e6ea5d960b597af7e/pi_heif-0.16.0-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48f56dfd6e0528ea9e953627aae6d53d9e0ec49a457352a00919fa5a51a32243",
                "md5": "ee4913ae76e1ccda268f871323f11dce",
                "sha256": "b1a659b7420414c33b402df434aa5f8f2bf6da425881203750278b88d2231360"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee4913ae76e1ccda268f871323f11dce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 878515,
            "upload_time": "2024-04-01T20:45:16",
            "upload_time_iso_8601": "2024-04-01T20:45:16.255139Z",
            "url": "https://files.pythonhosted.org/packages/48/f5/6dfd6e0528ea9e953627aae6d53d9e0ec49a457352a00919fa5a51a32243/pi_heif-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95a945ed871762139048bc9c3300364727e8ca4d7d1e38270c64ce1e6882cd3c",
                "md5": "44402e28548d28bc9d8da77207729773",
                "sha256": "883e3dc47da8741662f5b9c20deb1a0c33bd6c0df9a34e013d4cab163ab21af4"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "44402e28548d28bc9d8da77207729773",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 968791,
            "upload_time": "2024-04-01T20:45:18",
            "upload_time_iso_8601": "2024-04-01T20:45:18.345848Z",
            "url": "https://files.pythonhosted.org/packages/95/a9/45ed871762139048bc9c3300364727e8ca4d7d1e38270c64ce1e6882cd3c/pi_heif-0.16.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b7e658aa305f5654dec18f81b31044b3b465671bbfea795c6af66c244bce8ef",
                "md5": "f241493fed5f8746b42d247966fcb10e",
                "sha256": "c26954eff2ed907970b29a7fd592c81eb671c28fd39f9402aeed1bd23858dbe8"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f241493fed5f8746b42d247966fcb10e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 928013,
            "upload_time": "2024-04-01T20:45:20",
            "upload_time_iso_8601": "2024-04-01T20:45:20.702085Z",
            "url": "https://files.pythonhosted.org/packages/8b/7e/658aa305f5654dec18f81b31044b3b465671bbfea795c6af66c244bce8ef/pi_heif-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa434916ec89cb5cc3a1ed853d25e566c428e2701206ec38e8f479e22158c7d5",
                "md5": "3238bc6a6a5c4db99862e2196ea7d505",
                "sha256": "e2f2209e389a0b8b9004f1918ef24df82b749603fc4b3f609b09feff65319253"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3238bc6a6a5c4db99862e2196ea7d505",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 687512,
            "upload_time": "2024-04-01T20:45:23",
            "upload_time_iso_8601": "2024-04-01T20:45:23.675750Z",
            "url": "https://files.pythonhosted.org/packages/aa/43/4916ec89cb5cc3a1ed853d25e566c428e2701206ec38e8f479e22158c7d5/pi_heif-0.16.0-cp39-cp39-manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0463e5a12d2ceec109eaf65adda0d17f63afd7de6f09840bd41de5db6cfc9ec",
                "md5": "0fdefd415d0024eb6519a3403068af68",
                "sha256": "6663bc5ef3c89af87616b7a3c0929b398456998110f7651b75bb1354490227fd"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0fdefd415d0024eb6519a3403068af68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1676519,
            "upload_time": "2024-04-01T20:45:26",
            "upload_time_iso_8601": "2024-04-01T20:45:26.002944Z",
            "url": "https://files.pythonhosted.org/packages/e0/46/3e5a12d2ceec109eaf65adda0d17f63afd7de6f09840bd41de5db6cfc9ec/pi_heif-0.16.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c6bd7ab42898ff12e6df4a7edc8c96b9b421bdae2350e4d9d152cf1ff962bba",
                "md5": "454cc9f9bb69e1f644b678fd7696d5ee",
                "sha256": "d8fdc8757faf68217721054da38bd1149080000de51e22b5831739c2faa107c6"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "454cc9f9bb69e1f644b678fd7696d5ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1819406,
            "upload_time": "2024-04-01T20:45:27",
            "upload_time_iso_8601": "2024-04-01T20:45:27.831462Z",
            "url": "https://files.pythonhosted.org/packages/7c/6b/d7ab42898ff12e6df4a7edc8c96b9b421bdae2350e4d9d152cf1ff962bba/pi_heif-0.16.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b03980bfa97ec0346ec8ef74f3f0cfedbe7fb2d6b173c3f2eee3aa91e25c99de",
                "md5": "131cb5466526b9b45bd835e83e9a0bc4",
                "sha256": "47fb7e82c7219b21f0e4e56cbd4093a1f877032daa7b98c87ac41a6b10b38f28"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "131cb5466526b9b45bd835e83e9a0bc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1791975,
            "upload_time": "2024-04-01T20:45:30",
            "upload_time_iso_8601": "2024-04-01T20:45:30.142236Z",
            "url": "https://files.pythonhosted.org/packages/b0/39/80bfa97ec0346ec8ef74f3f0cfedbe7fb2d6b173c3f2eee3aa91e25c99de/pi_heif-0.16.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd48351cf1486658796e65b627bac20205908ef25246df2d75556adb463dc0fe",
                "md5": "5d48aca2f167000205aa9ae054994c34",
                "sha256": "f50ada1f9cd9036d84e664605abeca066e9a8bc2abd4ad62e9e673bf5599b568"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d48aca2f167000205aa9ae054994c34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1575501,
            "upload_time": "2024-04-01T20:45:31",
            "upload_time_iso_8601": "2024-04-01T20:45:31.992651Z",
            "url": "https://files.pythonhosted.org/packages/bd/48/351cf1486658796e65b627bac20205908ef25246df2d75556adb463dc0fe/pi_heif-0.16.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2aa003a9476ae5e3ba8a3a3ec9edc212dc6e534cc7d7de1679cea417f0a0020",
                "md5": "ef2420883a6e84da374b9f6344e01878",
                "sha256": "37410ece6f5a8ca8ceb2345a7c2987f4aa826cbff75f5558cf953bf052b8b5bd"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef2420883a6e84da374b9f6344e01878",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 502517,
            "upload_time": "2024-04-01T20:45:33",
            "upload_time_iso_8601": "2024-04-01T20:45:33.960458Z",
            "url": "https://files.pythonhosted.org/packages/b2/aa/003a9476ae5e3ba8a3a3ec9edc212dc6e534cc7d7de1679cea417f0a0020/pi_heif-0.16.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f269f44f6115c08a4ebbe32f80f8d6c970473be0163d1592ffb15a17db14bf3",
                "md5": "84ee4dbd959c066060fd9287ac71059f",
                "sha256": "851d99710db245fe3228fa3c87200f3d47cd1f0b710e96ecb8a7d5aea75d4f37"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp310-pypy310_pp73-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "84ee4dbd959c066060fd9287ac71059f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 447339,
            "upload_time": "2024-04-01T20:45:35",
            "upload_time_iso_8601": "2024-04-01T20:45:35.619765Z",
            "url": "https://files.pythonhosted.org/packages/9f/26/9f44f6115c08a4ebbe32f80f8d6c970473be0163d1592ffb15a17db14bf3/pi_heif-0.16.0-pp310-pypy310_pp73-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae9998f566ce0b663f69a4c0d0f672c4d0e572039f96d556912e085d9299a3fe",
                "md5": "a2410def265848dfe7d15f9747d1385c",
                "sha256": "de925776b6d433c50c7af73cd0e870c2068aea0af6b728512c6a50901ec45f36"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2410def265848dfe7d15f9747d1385c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 842037,
            "upload_time": "2024-04-01T20:45:37",
            "upload_time_iso_8601": "2024-04-01T20:45:37.870959Z",
            "url": "https://files.pythonhosted.org/packages/ae/99/98f566ce0b663f69a4c0d0f672c4d0e572039f96d556912e085d9299a3fe/pi_heif-0.16.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "756927d12ec17ccdef28c5e73b009ccea567bcca82b465432e0228f8923938f4",
                "md5": "bd157891f30534db8a43871a94eac8fb",
                "sha256": "b490757c7b53abcb3c2d63bcd4edb51acf9bffcb7cdc66ab44fabb5e0ec76ae0"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd157891f30534db8a43871a94eac8fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 889461,
            "upload_time": "2024-04-01T20:45:39",
            "upload_time_iso_8601": "2024-04-01T20:45:39.899025Z",
            "url": "https://files.pythonhosted.org/packages/75/69/27d12ec17ccdef28c5e73b009ccea567bcca82b465432e0228f8923938f4/pi_heif-0.16.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21fad4e2f9459dffeb11920840570b41995c6f27aff5b5417fd34ece4a60e5bd",
                "md5": "b2c22d2736dc98f9668637edcdfef0cd",
                "sha256": "29ac1cda359eea13ddfbfd7ab05f1b379fc85986c083911b95fb0ba07a9ccb6f"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b2c22d2736dc98f9668637edcdfef0cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1575070,
            "upload_time": "2024-04-01T20:45:42",
            "upload_time_iso_8601": "2024-04-01T20:45:42.045995Z",
            "url": "https://files.pythonhosted.org/packages/21/fa/d4e2f9459dffeb11920840570b41995c6f27aff5b5417fd34ece4a60e5bd/pi_heif-0.16.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a57ea1ae96bba914fe9726376ba3ffe7b8fda9aff800b51994a93d5311b171ac",
                "md5": "6a7b0060fadf6507c57686fabf756894",
                "sha256": "a727bde83e35392e4c2d5760aaf6a81824ef19cf3e692bc2eec4d43bec5872c5"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a7b0060fadf6507c57686fabf756894",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 502512,
            "upload_time": "2024-04-01T20:45:44",
            "upload_time_iso_8601": "2024-04-01T20:45:44.482441Z",
            "url": "https://files.pythonhosted.org/packages/a5/7e/a1ae96bba914fe9726376ba3ffe7b8fda9aff800b51994a93d5311b171ac/pi_heif-0.16.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f2ada41d52da7e14b0376af9143e9e07249533335a918b28c2020dfb9b48130",
                "md5": "a30c4d6f98861068ec05495ae7deb315",
                "sha256": "ba18e0c7d915bc8de48d320f0bad1049b99ee54e2c1fa8283b8e549c72db8602"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp38-pypy38_pp73-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a30c4d6f98861068ec05495ae7deb315",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 447336,
            "upload_time": "2024-04-01T20:45:46",
            "upload_time_iso_8601": "2024-04-01T20:45:46.434215Z",
            "url": "https://files.pythonhosted.org/packages/1f/2a/da41d52da7e14b0376af9143e9e07249533335a918b28c2020dfb9b48130/pi_heif-0.16.0-pp38-pypy38_pp73-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b0892af56d026d7ee9d5671b51a7e143dbdeced1225c7c632b651d233d637dd",
                "md5": "289d95a0929204142dd4fa1e0a1cd2b8",
                "sha256": "67888f5fe873ff19da858feabd0b2ccbddf880425f961564ecad918f9bcc09be"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "289d95a0929204142dd4fa1e0a1cd2b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 842033,
            "upload_time": "2024-04-01T20:45:48",
            "upload_time_iso_8601": "2024-04-01T20:45:48.050589Z",
            "url": "https://files.pythonhosted.org/packages/6b/08/92af56d026d7ee9d5671b51a7e143dbdeced1225c7c632b651d233d637dd/pi_heif-0.16.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2e1a56d54a0dd4fcae7b2ddb422976efefd6a5e15d357ec21cb3788dc1ed78c",
                "md5": "8803390750284a45e1465ebe76e92e50",
                "sha256": "947090f64c5b27cafb971970d4d216933f66a4e0a8fc1cb02fe035ff823d5ac6"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8803390750284a45e1465ebe76e92e50",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 889467,
            "upload_time": "2024-04-01T20:45:50",
            "upload_time_iso_8601": "2024-04-01T20:45:50.184823Z",
            "url": "https://files.pythonhosted.org/packages/d2/e1/a56d54a0dd4fcae7b2ddb422976efefd6a5e15d357ec21cb3788dc1ed78c/pi_heif-0.16.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ade7677196d094f45286b4e4e5ae0dff7c6238f1d31adc077356f50436aa567",
                "md5": "bd1148309586bc2897c09f4d46112027",
                "sha256": "2fc853360ad1e57227db2c85dc9103490f93be644888b9e162a4a0b24b93674b"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bd1148309586bc2897c09f4d46112027",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1575858,
            "upload_time": "2024-04-01T20:45:53",
            "upload_time_iso_8601": "2024-04-01T20:45:53.120365Z",
            "url": "https://files.pythonhosted.org/packages/5a/de/7677196d094f45286b4e4e5ae0dff7c6238f1d31adc077356f50436aa567/pi_heif-0.16.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85ce86f815570a584fc0ab444631ecac6957e5d16cc5c73738ab4f2fece29663",
                "md5": "4956e3588334b720666054218486c3e0",
                "sha256": "092c9d19e071a9c791a6407966f463e4dbd5f35f53f440d735104ff7cc4ce23f"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4956e3588334b720666054218486c3e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 502515,
            "upload_time": "2024-04-01T20:45:55",
            "upload_time_iso_8601": "2024-04-01T20:45:55.587870Z",
            "url": "https://files.pythonhosted.org/packages/85/ce/86f815570a584fc0ab444631ecac6957e5d16cc5c73738ab4f2fece29663/pi_heif-0.16.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af666bc7ca2786e1eee41d8eba48739c5d082bc6c999e26ede33875bd97987e7",
                "md5": "ef57755a36da756bac1c93e8f31f74c6",
                "sha256": "a0c239b43344c71b33630d1326d938d62d80a7d4c55bc0b6d86454875ea8c955"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp39-pypy39_pp73-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef57755a36da756bac1c93e8f31f74c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 447339,
            "upload_time": "2024-04-01T20:45:57",
            "upload_time_iso_8601": "2024-04-01T20:45:57.260555Z",
            "url": "https://files.pythonhosted.org/packages/af/66/6bc7ca2786e1eee41d8eba48739c5d082bc6c999e26ede33875bd97987e7/pi_heif-0.16.0-pp39-pypy39_pp73-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6984d1876d16fb2afac780861b3965d713d3d3879a8ef1954d8cdcd28bfeeb4",
                "md5": "76495041ec55affe14bb7284ee160dd5",
                "sha256": "6d974fc0404fc01e11b822ff9da702a860e68ffa899bd2afc594ff4629969bcf"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "76495041ec55affe14bb7284ee160dd5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 842044,
            "upload_time": "2024-04-01T20:45:59",
            "upload_time_iso_8601": "2024-04-01T20:45:59.383464Z",
            "url": "https://files.pythonhosted.org/packages/a6/98/4d1876d16fb2afac780861b3965d713d3d3879a8ef1954d8cdcd28bfeeb4/pi_heif-0.16.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e29aa30f8df4f8b3d97ae5a39c64be95b5bd02b7929f5cbc27520c4e8740481b",
                "md5": "a90a501f5d50829360b7e5a904d5ed1a",
                "sha256": "8fa6f9c540c640f1cf11c1ce22512598ac46d7889fbcf6b8c0c92e16cb4c112b"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a90a501f5d50829360b7e5a904d5ed1a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 889466,
            "upload_time": "2024-04-01T20:46:01",
            "upload_time_iso_8601": "2024-04-01T20:46:01.375609Z",
            "url": "https://files.pythonhosted.org/packages/e2/9a/a30f8df4f8b3d97ae5a39c64be95b5bd02b7929f5cbc27520c4e8740481b/pi_heif-0.16.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d919d337edaa307192e52f50177b3baee88e80509e78a8f98c96fc015123f1b9",
                "md5": "98ea74a150435b642a270740ead14dcf",
                "sha256": "1dc2ee43c4b9879d7812677f8e12fdcf2b439491825fd69933f81d6261eed6bd"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98ea74a150435b642a270740ead14dcf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1575862,
            "upload_time": "2024-04-01T20:46:03",
            "upload_time_iso_8601": "2024-04-01T20:46:03.593791Z",
            "url": "https://files.pythonhosted.org/packages/d9/19/d337edaa307192e52f50177b3baee88e80509e78a8f98c96fc015123f1b9/pi_heif-0.16.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92e5a674bb9ede3495d64a08ec5ed79847d881fc88ff9c93187d952591d07b91",
                "md5": "72e8585be8b8f2f9b6337cecc738303e",
                "sha256": "53fd0c582b01f1763ffa9959694164424c658eb3af5843f187ec019a0f0ef2b4"
            },
            "downloads": -1,
            "filename": "pi_heif-0.16.0.tar.gz",
            "has_sig": false,
            "md5_digest": "72e8585be8b8f2f9b6337cecc738303e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 14896954,
            "upload_time": "2024-04-01T20:46:07",
            "upload_time_iso_8601": "2024-04-01T20:46:07.175186Z",
            "url": "https://files.pythonhosted.org/packages/92/e5/a674bb9ede3495d64a08ec5ed79847d881fc88ff9c93187d952591d07b91/pi_heif-0.16.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 20:46:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bigcat88",
    "github_project": "pillow_heif",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pi-heif"
}
        
Elapsed time: 0.22228s