PyGuetzli
=========
|Github| |Discord| |PYPI Version| |Build Status| |License|
**PyGuetzli** is a Python binding for Google’s
`Guetzli <https://github.com/google/guetzli>`__ library.
Description of **Guetzli** from official’s repo:
Guetzli is a JPEG encoder that aims for excellent compression density
at high visual quality. Guetzli-generated images are typically 20-30%
smaller than images of equivalent quality generated by libjpeg.
Guetzli generates only sequential (nonprogressive) JPEGs due to
faster decompression speeds they offer.
Documentation
-------------
* `Installation <https://wanadev.github.io/pyguetzli/install.html>`_
* `Guetzli Python Module <https://wanadev.github.io/pyguetzli/guetzli.html>`_
* `Using with PIL / Pillow images <https://wanadev.github.io/pyguetzli/pil_image.html>`_
* `Contributing / Reporting a bug <https://wanadev.github.io/pyguetzli/contributing.html>`_
More topics at https://wanadev.github.io/pyguetzli/
Usage Example
-------------
.. code-block:: python
import pyguetzli
input_jpeg = open("./test/image.jpg", "rb").read()
optimized_jpeg = pyguetzli.process_jpeg_bytes(input_jpeg)
output = open("./optimized.jpg", "wb")
output.write(optimized_jpeg)
Changelog
---------
* **[NEXT]** (changes on ``master`` but not released yet):
* Nothing yet ;)
* **v1.0.17:**
* misc(deps): Only pin setuptools version on required platforms (@flozz)
* **v1.0.16:**
* misc: Added Python 3.13 support (@flozz)
* misc!: Removed Python 3.8 support (@flozz)
* **v1.0.15:**
* misc: Added Python 3.12 support (@flozz)
* misc!: Removed Python 3.7 support (@flozz)
* **v1.0.14:**
* Guetzli: Apply a better patch to fix the crash caused by a bad access to
a vector revealed when compiled with "-D_GLIBCXX_ASSERTIONS" (David Odin)
* **v1.0.13:**
* Added Python 3.11 support
* **v1.0.12:**
* Guetzli: Fixed a crash caused by a bad access to a vector revealed when
compiled with "-D_GLIBCXX_ASSERTIONS" (David Odin)
* **v1.0.11:**
* ``arm64`` and ``universal2`` wheels for macOS
* ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)
* ``win32`` wheels for Windows (``x86_64`` were already available)
* **v1.0.10:** Python 3.10 support and wheels
* **v1.0.9:** Provides prebuilt wheel packages
* **v1.0.8:** Updates Guetzli and python dependencies
* **v1.0.7:** Fixes unicode issue when installing pyguetzli (#4)
* **v1.0.6:** Fixes a typo in compilator options on unix
* **v1.0.5:** Adds optimization flags when compiling Guetzli
* **v1.0.4:** MS Windows support
* **v1.0.3:** Updates Guetzli library
* **v1.0.2**: PIL Images: fixes crash with non RGB/RGBA images
(grayscale, indexed,…)
* **v1.0.1**: Adds ``--std=c++11`` flag when building Guetzli
* **v1.0.0**:
* New and simpler API
* Built-in function to deal with PIL / Pillow Images
* Documentation (Sphinx)
* Guetzli update
* **v0.9.0**: Initial release
.. |Github| image:: https://img.shields.io/github/stars/wanadev/pyguetzli?label=Github&logo=github
:target: https://github.com/wanadev/pyguetzli
.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff
:target: https://discord.gg/BmUkEdMuFp
.. |PYPI Version| image:: https://img.shields.io/pypi/v/pyguetzli.svg
:target: https://pypi.python.org/pypi/pyguetzli
.. |Build Status| image:: https://github.com/wanadev/pyguetzli/actions/workflows/python-ci.yml/badge.svg
:target: https://github.com/wanadev/pyguetzli/actions
.. |License| image:: https://img.shields.io/pypi/l/pyguetzli.svg
:target: https://github.com/wanadev/pyguetzli/blob/master/LICENSE
Raw data
{
"_id": null,
"home_page": "https://github.com/wanadev/pyguetzli",
"name": "pyguetzli",
"maintainer": "Fabien LOISON, Alexis BREUST",
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "image jpeg optimize guetzli",
"author": "Wanadev",
"author_email": "contact@wanadev.fr",
"download_url": "https://files.pythonhosted.org/packages/e6/8d/02909fbe7fad36039c3729cba78f16ede42a9c742b8cc9bbdf88aacc3b11/pyguetzli-1.0.17.tar.gz",
"platform": null,
"description": "PyGuetzli\n=========\n\n|Github| |Discord| |PYPI Version| |Build Status| |License|\n\n**PyGuetzli** is a Python binding for Google\u2019s\n`Guetzli <https://github.com/google/guetzli>`__ library.\n\nDescription of **Guetzli** from official\u2019s repo:\n\n Guetzli is a JPEG encoder that aims for excellent compression density\n at high visual quality. Guetzli-generated images are typically 20-30%\n smaller than images of equivalent quality generated by libjpeg.\n Guetzli generates only sequential (nonprogressive) JPEGs due to\n faster decompression speeds they offer.\n\n\nDocumentation\n-------------\n\n* `Installation <https://wanadev.github.io/pyguetzli/install.html>`_\n* `Guetzli Python Module <https://wanadev.github.io/pyguetzli/guetzli.html>`_\n* `Using with PIL / Pillow images <https://wanadev.github.io/pyguetzli/pil_image.html>`_\n* `Contributing / Reporting a bug <https://wanadev.github.io/pyguetzli/contributing.html>`_\n\nMore topics at https://wanadev.github.io/pyguetzli/\n\n\nUsage Example\n-------------\n\n.. code-block:: python\n\n import pyguetzli\n\n input_jpeg = open(\"./test/image.jpg\", \"rb\").read()\n optimized_jpeg = pyguetzli.process_jpeg_bytes(input_jpeg)\n\n output = open(\"./optimized.jpg\", \"wb\")\n output.write(optimized_jpeg)\n\n\nChangelog\n---------\n\n* **[NEXT]** (changes on ``master`` but not released yet):\n\n * Nothing yet ;)\n\n* **v1.0.17:**\n\n * misc(deps): Only pin setuptools version on required platforms (@flozz)\n\n* **v1.0.16:**\n\n * misc: Added Python 3.13 support (@flozz)\n * misc!: Removed Python 3.8 support (@flozz)\n\n* **v1.0.15:**\n\n * misc: Added Python 3.12 support (@flozz)\n * misc!: Removed Python 3.7 support (@flozz)\n\n* **v1.0.14:**\n\n * Guetzli: Apply a better patch to fix the crash caused by a bad access to\n a vector revealed when compiled with \"-D_GLIBCXX_ASSERTIONS\" (David Odin)\n\n* **v1.0.13:**\n\n * Added Python 3.11 support\n\n* **v1.0.12:**\n\n * Guetzli: Fixed a crash caused by a bad access to a vector revealed when\n compiled with \"-D_GLIBCXX_ASSERTIONS\" (David Odin)\n\n* **v1.0.11:**\n\n * ``arm64`` and ``universal2`` wheels for macOS\n * ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)\n * ``win32`` wheels for Windows (``x86_64`` were already available)\n\n* **v1.0.10:** Python 3.10 support and wheels\n* **v1.0.9:** Provides prebuilt wheel packages\n* **v1.0.8:** Updates Guetzli and python dependencies\n* **v1.0.7:** Fixes unicode issue when installing pyguetzli (#4)\n* **v1.0.6:** Fixes a typo in compilator options on unix\n* **v1.0.5:** Adds optimization flags when compiling Guetzli\n* **v1.0.4:** MS Windows support\n* **v1.0.3:** Updates Guetzli library\n* **v1.0.2**: PIL Images: fixes crash with non RGB/RGBA images\n (grayscale, indexed,\u2026)\n* **v1.0.1**: Adds ``--std=c++11`` flag when building Guetzli\n* **v1.0.0**:\n\n * New and simpler API\n * Built-in function to deal with PIL\u00a0/\u00a0Pillow Images\n * Documentation (Sphinx)\n * Guetzli update\n\n* **v0.9.0**: Initial release\n\n\n.. |Github| image:: https://img.shields.io/github/stars/wanadev/pyguetzli?label=Github&logo=github\n :target: https://github.com/wanadev/pyguetzli\n.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff\n :target: https://discord.gg/BmUkEdMuFp\n.. |PYPI Version| image:: https://img.shields.io/pypi/v/pyguetzli.svg\n :target: https://pypi.python.org/pypi/pyguetzli\n.. |Build Status| image:: https://github.com/wanadev/pyguetzli/actions/workflows/python-ci.yml/badge.svg\n :target: https://github.com/wanadev/pyguetzli/actions\n.. |License| image:: https://img.shields.io/pypi/l/pyguetzli.svg\n :target: https://github.com/wanadev/pyguetzli/blob/master/LICENSE\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Python bindings for Google's Guetzli, a JPEG encoder that optimises JPEG compression",
"version": "1.0.17",
"project_urls": {
"Changelog": "https://github.com/wanadev/pyguetzli#changelog",
"Chat": "https://discord.gg/BmUkEdMuFp",
"Documentation": "https://wanadev.github.io/pyguetzli/",
"Homepage": "https://github.com/wanadev/pyguetzli",
"Issues": "https://github.com/wanadev/pyguetzli/issues",
"Source Code": "https://github.com/wanadev/pyguetzli"
},
"split_keywords": [
"image",
"jpeg",
"optimize",
"guetzli"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4c340cf01ea8de998cf33cde731ac5d5116faaa58426bc84211536edf7cc9104",
"md5": "b86024f46635dc169eaba6eae2aa6bca",
"sha256": "33cc4129c519d5416b44b9ee44c44d1ce287dccf577754c4b14131ed411da027"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "b86024f46635dc169eaba6eae2aa6bca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 351071,
"upload_time": "2024-11-22T15:31:29",
"upload_time_iso_8601": "2024-11-22T15:31:29.828871Z",
"url": "https://files.pythonhosted.org/packages/4c/34/0cf01ea8de998cf33cde731ac5d5116faaa58426bc84211536edf7cc9104/pyguetzli-1.0.17-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18c4c38908a84d0d9cf083cd83d3c5e9dd311d1538882ee4502ca33f01f5fba9",
"md5": "9833d357bc0b82c2d7f9d33e6e7b892c",
"sha256": "7f316963c036de4bcf67b621c9dfb5736195163fb8a095148f96f2f98aa5bbd5"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9833d357bc0b82c2d7f9d33e6e7b892c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 190646,
"upload_time": "2024-11-22T15:31:31",
"upload_time_iso_8601": "2024-11-22T15:31:31.902657Z",
"url": "https://files.pythonhosted.org/packages/18/c4/c38908a84d0d9cf083cd83d3c5e9dd311d1538882ee4502ca33f01f5fba9/pyguetzli-1.0.17-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "296be7f4e551c1182fcd419f283a60eb3f074c138c10e506e7528285a9f84fec",
"md5": "9281af01e64fc3f14b8374eb652d1ecf",
"sha256": "47fbc07bea77e75ef404b0eea393e45fd3e6da82acbb8e1287ed52de7e812ce7"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9281af01e64fc3f14b8374eb652d1ecf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 170103,
"upload_time": "2024-11-22T15:31:33",
"upload_time_iso_8601": "2024-11-22T15:31:33.145754Z",
"url": "https://files.pythonhosted.org/packages/29/6b/e7f4e551c1182fcd419f283a60eb3f074c138c10e506e7528285a9f84fec/pyguetzli-1.0.17-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e406d036709558210cc72c1c36434a77f446c14e0bef30c6680aa88e2b7c7ef",
"md5": "7cde1dc11fb13913cdf29554cdec4aca",
"sha256": "cca9edc9bcecc9b65f55eec447058cdd77d189437d98c69c35171496d2853ca4"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7cde1dc11fb13913cdf29554cdec4aca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1769298,
"upload_time": "2024-11-22T15:31:35",
"upload_time_iso_8601": "2024-11-22T15:31:35.738037Z",
"url": "https://files.pythonhosted.org/packages/0e/40/6d036709558210cc72c1c36434a77f446c14e0bef30c6680aa88e2b7c7ef/pyguetzli-1.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db083e96945d630bec0a2e36ab73c871fbbb01dc486d072eb1b23b72593dfabf",
"md5": "6208737eab6dc03b96a2481824e1651a",
"sha256": "a97291fbe161d61baf5c557be035cd802f49517582c5110aab066e138f8a769e"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6208737eab6dc03b96a2481824e1651a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1733450,
"upload_time": "2024-11-22T15:31:37",
"upload_time_iso_8601": "2024-11-22T15:31:37.735022Z",
"url": "https://files.pythonhosted.org/packages/db/08/3e96945d630bec0a2e36ab73c871fbbb01dc486d072eb1b23b72593dfabf/pyguetzli-1.0.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b352bebf17a55b2cf803c960cfb70fb0257a10473f75b144c9d3d273556402b1",
"md5": "7e0d19615beb15aeb06ba72fc98e3a4a",
"sha256": "8bb4e1e15dbfb29558748888712bdf19b4cd170ed044d96bd9a2df91ae16e68c"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7e0d19615beb15aeb06ba72fc98e3a4a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2781073,
"upload_time": "2024-11-22T15:31:39",
"upload_time_iso_8601": "2024-11-22T15:31:39.299417Z",
"url": "https://files.pythonhosted.org/packages/b3/52/bebf17a55b2cf803c960cfb70fb0257a10473f75b144c9d3d273556402b1/pyguetzli-1.0.17-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b838421b77ef6995c7eeaf9a4735cc3cc6c3d2cfb60bc58cf221adb6e986c02",
"md5": "8411e799dc5a2c785f88335b301fbb0e",
"sha256": "808bbc1c705ab7213107bd9370012153058f7bde10c51eee08d956e94a4a387c"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8411e799dc5a2c785f88335b301fbb0e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2709309,
"upload_time": "2024-11-22T15:31:41",
"upload_time_iso_8601": "2024-11-22T15:31:41.867648Z",
"url": "https://files.pythonhosted.org/packages/7b/83/8421b77ef6995c7eeaf9a4735cc3cc6c3d2cfb60bc58cf221adb6e986c02/pyguetzli-1.0.17-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acd7c48a92630da1c64bb32f61628d87dad3f2194406f733e6da0315936ade90",
"md5": "1ae4e83249ccd7c182c4e4c571f6e3fa",
"sha256": "dd408743232010a5f1fa18ef8fa6095fbaa8529d5f905a4d3d45d4e2d09037d6"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "1ae4e83249ccd7c182c4e4c571f6e3fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 104271,
"upload_time": "2024-11-22T15:31:43",
"upload_time_iso_8601": "2024-11-22T15:31:43.445781Z",
"url": "https://files.pythonhosted.org/packages/ac/d7/c48a92630da1c64bb32f61628d87dad3f2194406f733e6da0315936ade90/pyguetzli-1.0.17-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d1fc93153a1eaaa475411c6322ec40df1d1022c11fb112a2d581e49b465237b",
"md5": "5e5f76c93203d8ee32f8a653bc4cd564",
"sha256": "3e88e3d52dbda6e5f27f3de95912c8ba14ef59df32586fa86655011f1b9b0dc4"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "5e5f76c93203d8ee32f8a653bc4cd564",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 130062,
"upload_time": "2024-11-22T15:31:44",
"upload_time_iso_8601": "2024-11-22T15:31:44.889724Z",
"url": "https://files.pythonhosted.org/packages/4d/1f/c93153a1eaaa475411c6322ec40df1d1022c11fb112a2d581e49b465237b/pyguetzli-1.0.17-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53ee20edd4e476dc90a271a2e22edba2439b235c7766380ad95b2388fb9fa383",
"md5": "7705d9870355f4941610a98734e89c55",
"sha256": "bffe7eb743095d59b523642316c7c1809f523b86a4cc7878791e9e38c9b8d0ee"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7705d9870355f4941610a98734e89c55",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 351080,
"upload_time": "2024-11-22T15:31:46",
"upload_time_iso_8601": "2024-11-22T15:31:46.046412Z",
"url": "https://files.pythonhosted.org/packages/53/ee/20edd4e476dc90a271a2e22edba2439b235c7766380ad95b2388fb9fa383/pyguetzli-1.0.17-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97e2e471f2a1dd90b426cfe57ff19691417859d2e450cffd0d037b650ada8697",
"md5": "946a07c5ca7aee759a04d6d8a2c5cb5c",
"sha256": "999065eb171eea0d26f2cdf80c157a2d8c7806401503eeb13239a39a391e7c92"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "946a07c5ca7aee759a04d6d8a2c5cb5c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 190647,
"upload_time": "2024-11-22T15:31:47",
"upload_time_iso_8601": "2024-11-22T15:31:47.134574Z",
"url": "https://files.pythonhosted.org/packages/97/e2/e471f2a1dd90b426cfe57ff19691417859d2e450cffd0d037b650ada8697/pyguetzli-1.0.17-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1f4ef103b64d4d61eefb08e78d51f1edc9611f7c0d940c7dd8518db3b004302",
"md5": "78e6c74622f573195790ed12a81a6dc1",
"sha256": "11a4faf229226df9adf18b84498584868d35d63820fb5e607dd235fc06b37802"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "78e6c74622f573195790ed12a81a6dc1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 170097,
"upload_time": "2024-11-22T15:31:48",
"upload_time_iso_8601": "2024-11-22T15:31:48.928336Z",
"url": "https://files.pythonhosted.org/packages/a1/f4/ef103b64d4d61eefb08e78d51f1edc9611f7c0d940c7dd8518db3b004302/pyguetzli-1.0.17-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a6d1d5c2a747bedacbeb7830d9a8156c8bdba8457f257a6bae69993d0abfdf5",
"md5": "88a2b0a1255d7bcddd5a02a7b6129d0a",
"sha256": "84e05f63864a124dc2fe013d399dd64311bad0b3068bb04098ab4bade7e0d179"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "88a2b0a1255d7bcddd5a02a7b6129d0a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1769084,
"upload_time": "2024-11-22T15:31:50",
"upload_time_iso_8601": "2024-11-22T15:31:50.168023Z",
"url": "https://files.pythonhosted.org/packages/2a/6d/1d5c2a747bedacbeb7830d9a8156c8bdba8457f257a6bae69993d0abfdf5/pyguetzli-1.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43fa33211d7cb9487d64e29a04e2e2210aba4d58c115efad268afde01eb3b77b",
"md5": "ef9986dafb863ef5007a16870fc962c7",
"sha256": "e43071cd939c1bc9027e18d16bda2f2084114c6bfc7b2cfebab9f8b12f468be6"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ef9986dafb863ef5007a16870fc962c7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1733468,
"upload_time": "2024-11-22T15:31:51",
"upload_time_iso_8601": "2024-11-22T15:31:51.536267Z",
"url": "https://files.pythonhosted.org/packages/43/fa/33211d7cb9487d64e29a04e2e2210aba4d58c115efad268afde01eb3b77b/pyguetzli-1.0.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd7bbbab0c60884d51866cb942a555202b3af20f9144c33ee0775a6eca5dafa0",
"md5": "335eb0aa694b0c86780e92a9babd5fdb",
"sha256": "1104c3d1fbf77f7a6bfd26bd0ed3927a58d032cfc4bb4b46b6fd16e2c6eb1840"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "335eb0aa694b0c86780e92a9babd5fdb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2781274,
"upload_time": "2024-11-22T15:31:53",
"upload_time_iso_8601": "2024-11-22T15:31:53.667367Z",
"url": "https://files.pythonhosted.org/packages/bd/7b/bbab0c60884d51866cb942a555202b3af20f9144c33ee0775a6eca5dafa0/pyguetzli-1.0.17-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f54e2dc675c060a8107fd773b08f8191aefe5242198bd8dce767a890862c776",
"md5": "cdcc9ee8774b8f10cb5685099e17c937",
"sha256": "a0e7a0654f6a2bd3e1af92bfd92c65eee461f953a42e0a2e4c5e41b47ac7f9f7"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cdcc9ee8774b8f10cb5685099e17c937",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2709211,
"upload_time": "2024-11-22T15:31:55",
"upload_time_iso_8601": "2024-11-22T15:31:55.206061Z",
"url": "https://files.pythonhosted.org/packages/5f/54/e2dc675c060a8107fd773b08f8191aefe5242198bd8dce767a890862c776/pyguetzli-1.0.17-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "543daec258f615005d8ec4a054d8ca696b989c32e015307b92f751bdaecdcb33",
"md5": "5d99a6dcd25911e183e3440a9c588fe3",
"sha256": "4507bbe1370313184d5a917bd6d33ccaed4d6605873a8ef0e159bb10692f4cca"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "5d99a6dcd25911e183e3440a9c588fe3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 104269,
"upload_time": "2024-11-22T15:31:57",
"upload_time_iso_8601": "2024-11-22T15:31:57.261921Z",
"url": "https://files.pythonhosted.org/packages/54/3d/aec258f615005d8ec4a054d8ca696b989c32e015307b92f751bdaecdcb33/pyguetzli-1.0.17-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cc0245854282fa67cf5c9477d318bd46cad6811c398e9b88880d03cca0008a1",
"md5": "24fe3ae78946c2469c01d04deceb0fd6",
"sha256": "23d8420102d30dc7cffe581a6d03af59d37a24fc5d7b0e2f5c2418002a33f211"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "24fe3ae78946c2469c01d04deceb0fd6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 130064,
"upload_time": "2024-11-22T15:31:58",
"upload_time_iso_8601": "2024-11-22T15:31:58.275498Z",
"url": "https://files.pythonhosted.org/packages/0c/c0/245854282fa67cf5c9477d318bd46cad6811c398e9b88880d03cca0008a1/pyguetzli-1.0.17-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3a7c924c3692ade3e586068755584b8d39715cb695788ad6e83f59b4dacf77f",
"md5": "9e4b30865f19479c1b4bbebe2fcf8d32",
"sha256": "5d7ab83fc26d41737ee554fb0d954a91b31aa8a0d2496cf0a2b630f8d5fb5df3"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "9e4b30865f19479c1b4bbebe2fcf8d32",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 349222,
"upload_time": "2024-11-22T15:31:59",
"upload_time_iso_8601": "2024-11-22T15:31:59.969108Z",
"url": "https://files.pythonhosted.org/packages/f3/a7/c924c3692ade3e586068755584b8d39715cb695788ad6e83f59b4dacf77f/pyguetzli-1.0.17-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2798238963c0973f178ffc1e105c5deb251db061ec1799cad82de40850605566",
"md5": "0733b75c19e739c2dda521f025366bd9",
"sha256": "18a4ce28fe318475f05129787c749d2344a477b3b6c0d44bdd0e0989b421fc9f"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0733b75c19e739c2dda521f025366bd9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 188746,
"upload_time": "2024-11-22T15:32:01",
"upload_time_iso_8601": "2024-11-22T15:32:01.263123Z",
"url": "https://files.pythonhosted.org/packages/27/98/238963c0973f178ffc1e105c5deb251db061ec1799cad82de40850605566/pyguetzli-1.0.17-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4327ad8d3c78583932f92c17b5cb57c40727cfbaf18e431683383194cc2cbbc",
"md5": "e81099ad6a605f95ef00d78a99694493",
"sha256": "781277e9b2cb745ebb3364f94b133e52c113e4630fd02e96b0baae7ba760abcc"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e81099ad6a605f95ef00d78a99694493",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 170099,
"upload_time": "2024-11-22T15:32:02",
"upload_time_iso_8601": "2024-11-22T15:32:02.390964Z",
"url": "https://files.pythonhosted.org/packages/c4/32/7ad8d3c78583932f92c17b5cb57c40727cfbaf18e431683383194cc2cbbc/pyguetzli-1.0.17-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "079a7645558a27b6921757c62532d965cd189d056d200e8a9ba1b3f21185b9c3",
"md5": "8b919747b0285bd28a7a889a6243caa2",
"sha256": "b98d204fa9e5f07a3f22153b67e541c7e32d911b7deb59343a32d9dfb69bdbaf"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8b919747b0285bd28a7a889a6243caa2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1769742,
"upload_time": "2024-11-22T15:32:04",
"upload_time_iso_8601": "2024-11-22T15:32:04.291897Z",
"url": "https://files.pythonhosted.org/packages/07/9a/7645558a27b6921757c62532d965cd189d056d200e8a9ba1b3f21185b9c3/pyguetzli-1.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc3b41e19b4ac03dc8abbd39185555b18ee92bbbee040554df734015e15afccb",
"md5": "e92d6639897584fd1e814456ad333beb",
"sha256": "01574d9b999ca870d9b84bc7bee21287898566130dfb12346bbd9dbf2e8d59ce"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e92d6639897584fd1e814456ad333beb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1733735,
"upload_time": "2024-11-22T15:32:06",
"upload_time_iso_8601": "2024-11-22T15:32:06.486465Z",
"url": "https://files.pythonhosted.org/packages/bc/3b/41e19b4ac03dc8abbd39185555b18ee92bbbee040554df734015e15afccb/pyguetzli-1.0.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87123c4c5f4215aefc4e587ce280dd3824b71a61f6c52d849bb463da61d8fa12",
"md5": "f335915e5bb76b2dc43a9720aa88c00b",
"sha256": "adba9b04569309f27592d6fe4b6a911b6bc9a7e58d497130a7d8efb40e8996dc"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f335915e5bb76b2dc43a9720aa88c00b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2781567,
"upload_time": "2024-11-22T15:32:07",
"upload_time_iso_8601": "2024-11-22T15:32:07.981969Z",
"url": "https://files.pythonhosted.org/packages/87/12/3c4c5f4215aefc4e587ce280dd3824b71a61f6c52d849bb463da61d8fa12/pyguetzli-1.0.17-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66cbb51fe2a125aa98ab54644690a52fc22d46f73c68705d710947ef3a0dff6b",
"md5": "b5cf7fcb34c3453a1e0e3ffbf7092bb2",
"sha256": "123ef762d5a9f27651bfae6787a6b53053e2a84bdd58c4670f20bb28ccd352be"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b5cf7fcb34c3453a1e0e3ffbf7092bb2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2708979,
"upload_time": "2024-11-22T15:32:09",
"upload_time_iso_8601": "2024-11-22T15:32:09.706574Z",
"url": "https://files.pythonhosted.org/packages/66/cb/b51fe2a125aa98ab54644690a52fc22d46f73c68705d710947ef3a0dff6b/pyguetzli-1.0.17-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e3686eab93bc4bfacf341b5035950354486b0c8078b8d23c429e2d3a4a7237f",
"md5": "114c3a1fe7b905a1dac1cb7c3921b203",
"sha256": "3f4b950eeab209b3787a833e2605aab9d5a870a4fc0849579a058dcdb973dede"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "114c3a1fe7b905a1dac1cb7c3921b203",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 104294,
"upload_time": "2024-11-22T15:32:11",
"upload_time_iso_8601": "2024-11-22T15:32:11.051504Z",
"url": "https://files.pythonhosted.org/packages/8e/36/86eab93bc4bfacf341b5035950354486b0c8078b8d23c429e2d3a4a7237f/pyguetzli-1.0.17-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e026321cd073d0f30b95d68633cffb57ff00f9fea7841caa55aae6d4d0ec45e",
"md5": "b1887480369811643dbbf88688bd47f3",
"sha256": "f29f6040694970bcfde6a3b115ca512e36eedbee42ae0d95d91bdbd24233767a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b1887480369811643dbbf88688bd47f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 130075,
"upload_time": "2024-11-22T15:32:12",
"upload_time_iso_8601": "2024-11-22T15:32:12.062657Z",
"url": "https://files.pythonhosted.org/packages/3e/02/6321cd073d0f30b95d68633cffb57ff00f9fea7841caa55aae6d4d0ec45e/pyguetzli-1.0.17-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1aafc6b19268738550b26207ac46a8f43150685def14bdc2d07edeff1b59a295",
"md5": "cd41e9c83424f14de233b25d33e42382",
"sha256": "cbfae0ed4bcb7507e3a5051487bdea30e8807f8957a177456adecc56f3e83a68"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "cd41e9c83424f14de233b25d33e42382",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 349230,
"upload_time": "2024-11-22T15:32:13",
"upload_time_iso_8601": "2024-11-22T15:32:13.852324Z",
"url": "https://files.pythonhosted.org/packages/1a/af/c6b19268738550b26207ac46a8f43150685def14bdc2d07edeff1b59a295/pyguetzli-1.0.17-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e556cbdeb08595ad06c39c5f440f3062fe2f2f868d16aa14a4cf7343953ba40",
"md5": "805e9ff87d684a39ccc15d1b58270eb8",
"sha256": "2576350592ab1f71e3ac8958efe868a62040c18f930606f8a62c75d0bf49e2ed"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "805e9ff87d684a39ccc15d1b58270eb8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 188744,
"upload_time": "2024-11-22T15:32:15",
"upload_time_iso_8601": "2024-11-22T15:32:15.625957Z",
"url": "https://files.pythonhosted.org/packages/8e/55/6cbdeb08595ad06c39c5f440f3062fe2f2f868d16aa14a4cf7343953ba40/pyguetzli-1.0.17-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b34ec0b2c4d1a496f35f4dd1c3ba42fccc1a0313f46cbb7d7d88e83e557d7c6",
"md5": "550cb768e31b098076cf9ac4ec57c4b3",
"sha256": "b7a18adf42c7aea163363d496429065f2f0a3b968fce5583640be1922909d6f9"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "550cb768e31b098076cf9ac4ec57c4b3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 170100,
"upload_time": "2024-11-22T15:32:16",
"upload_time_iso_8601": "2024-11-22T15:32:16.747724Z",
"url": "https://files.pythonhosted.org/packages/2b/34/ec0b2c4d1a496f35f4dd1c3ba42fccc1a0313f46cbb7d7d88e83e557d7c6/pyguetzli-1.0.17-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1d5ad7534374709749f7f2d354da2fc0c91144d5a033966847ae0d2cef19466",
"md5": "867318e3225f3352845e5f476bbeac35",
"sha256": "7869f83e5a519f25121160a311084dce402f67440cad399bc5a238941ff87caf"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "867318e3225f3352845e5f476bbeac35",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1769610,
"upload_time": "2024-11-22T15:32:18",
"upload_time_iso_8601": "2024-11-22T15:32:18.250217Z",
"url": "https://files.pythonhosted.org/packages/e1/d5/ad7534374709749f7f2d354da2fc0c91144d5a033966847ae0d2cef19466/pyguetzli-1.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9a454e4ccd443efe65f8e7382af57e9f98db882559f2a7b942ed82c9818b41e",
"md5": "53782787652c676451e8a294b199107e",
"sha256": "8e988d94d44ceb21bd7b763ed740634cafd4d19c6e7f70df6390c986b78b21f7"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "53782787652c676451e8a294b199107e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1733482,
"upload_time": "2024-11-22T15:32:19",
"upload_time_iso_8601": "2024-11-22T15:32:19.756184Z",
"url": "https://files.pythonhosted.org/packages/b9/a4/54e4ccd443efe65f8e7382af57e9f98db882559f2a7b942ed82c9818b41e/pyguetzli-1.0.17-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b886002fdc8de361dfc86899dd20879bbd2f5ecbecc7adff8d4c92c3340620c1",
"md5": "2707f5a8550ed2b71b873ebb515ad2d3",
"sha256": "839edec5e76a8fb90863e1aaab3f52e0d71f94e988ae02c2b112db6d5234d64a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2707f5a8550ed2b71b873ebb515ad2d3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2781671,
"upload_time": "2024-11-22T15:32:21",
"upload_time_iso_8601": "2024-11-22T15:32:21.255107Z",
"url": "https://files.pythonhosted.org/packages/b8/86/002fdc8de361dfc86899dd20879bbd2f5ecbecc7adff8d4c92c3340620c1/pyguetzli-1.0.17-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8df18f08df4b2a55c53d402e66936db74068bd54bf876ea7c174ea3703942ab3",
"md5": "1b49e3b1c296d8769e5c0a12eb8c592e",
"sha256": "b8d3e4008743c8c865b59ae604bf75097561bbf5ff2666f9f1b96d37cfd0c850"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1b49e3b1c296d8769e5c0a12eb8c592e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2708903,
"upload_time": "2024-11-22T15:32:23",
"upload_time_iso_8601": "2024-11-22T15:32:23.598435Z",
"url": "https://files.pythonhosted.org/packages/8d/f1/8f08df4b2a55c53d402e66936db74068bd54bf876ea7c174ea3703942ab3/pyguetzli-1.0.17-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3c482b163cdda7fa29325b327797dd480467416f9ed568e071de69493bf676a",
"md5": "747e00b390670f829acac121a045d1a4",
"sha256": "c24696a2de869e22731f02d57b171e6a8d9b03793525f7a147d8257553db3072"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "747e00b390670f829acac121a045d1a4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 104296,
"upload_time": "2024-11-22T15:32:24",
"upload_time_iso_8601": "2024-11-22T15:32:24.965670Z",
"url": "https://files.pythonhosted.org/packages/d3/c4/82b163cdda7fa29325b327797dd480467416f9ed568e071de69493bf676a/pyguetzli-1.0.17-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d229f5be405d643c016fca345df46097d0220014cae865a6f6d7348aeecc2fa5",
"md5": "009a567137e13102685182d377a18908",
"sha256": "d72324e19160de098de848f2a0c3fe78547aeba1ceaf91755559150dfeb8a39a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "009a567137e13102685182d377a18908",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 130077,
"upload_time": "2024-11-22T15:32:26",
"upload_time_iso_8601": "2024-11-22T15:32:26.038181Z",
"url": "https://files.pythonhosted.org/packages/d2/29/f5be405d643c016fca345df46097d0220014cae865a6f6d7348aeecc2fa5/pyguetzli-1.0.17-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5ca90f5450fe42adab12207318d2cb5724e48403b70778e45eddad89f0f565a",
"md5": "7a13687859d702e16d2b4cfbc1cd3847",
"sha256": "edb3c77d40d153c1d5e36c66f28746a7546ab52afce6dbe498e8f4cd7a560e08"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7a13687859d702e16d2b4cfbc1cd3847",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 190430,
"upload_time": "2024-11-22T15:32:27",
"upload_time_iso_8601": "2024-11-22T15:32:27.086630Z",
"url": "https://files.pythonhosted.org/packages/e5/ca/90f5450fe42adab12207318d2cb5724e48403b70778e45eddad89f0f565a/pyguetzli-1.0.17-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c37789b21a749443f7a81f8252f2df45e7c1b192aab390802a44ec3cbbe81f59",
"md5": "94395464b44406e48a8a8742b0619a79",
"sha256": "5b6644cccb8015f45f57ca9d5c3300e8b76472a8ad94101333097490b8b8c633"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "94395464b44406e48a8a8742b0619a79",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1769272,
"upload_time": "2024-11-22T15:32:28",
"upload_time_iso_8601": "2024-11-22T15:32:28.332407Z",
"url": "https://files.pythonhosted.org/packages/c3/77/89b21a749443f7a81f8252f2df45e7c1b192aab390802a44ec3cbbe81f59/pyguetzli-1.0.17-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7cc7b96bab1db2351f19973503d9fe259ce73ce97435c83ec914e318a7f4830",
"md5": "c22fbf4f8e3d7abd2a0e860eff19c5e2",
"sha256": "ab1b737cdf880c828093031c11619c0b42c57f35526c0648fc5d21dd5a42a514"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c22fbf4f8e3d7abd2a0e860eff19c5e2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1733141,
"upload_time": "2024-11-22T15:32:30",
"upload_time_iso_8601": "2024-11-22T15:32:30.477557Z",
"url": "https://files.pythonhosted.org/packages/f7/cc/7b96bab1db2351f19973503d9fe259ce73ce97435c83ec914e318a7f4830/pyguetzli-1.0.17-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d654cdfcd9c684893913fd2e8f2b7dff89d1616d00bd9827c87c79e65ce91d5",
"md5": "81bad4934f3a7696980161a987d97869",
"sha256": "a996ef0ba892947ec62d41e06e360a9c1c816fb8b4829a63b6d067db0e2c86ab"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "81bad4934f3a7696980161a987d97869",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 2781310,
"upload_time": "2024-11-22T15:32:33",
"upload_time_iso_8601": "2024-11-22T15:32:33.423821Z",
"url": "https://files.pythonhosted.org/packages/8d/65/4cdfcd9c684893913fd2e8f2b7dff89d1616d00bd9827c87c79e65ce91d5/pyguetzli-1.0.17-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07cbc4591c3c3121e323facd8cc1f30a1dd2b8ede75a93a2cd1510637087ec54",
"md5": "f954533731e0241f9e7d5657a6178d7b",
"sha256": "c063b9b65bcebbe2dd6cb2dfd76d6bcb5ac7bf036282832d7f85906cdadf7d5e"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f954533731e0241f9e7d5657a6178d7b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 2709174,
"upload_time": "2024-11-22T15:32:34",
"upload_time_iso_8601": "2024-11-22T15:32:34.938150Z",
"url": "https://files.pythonhosted.org/packages/07/cb/c4591c3c3121e323facd8cc1f30a1dd2b8ede75a93a2cd1510637087ec54/pyguetzli-1.0.17-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "689d0d9784d2b0a4c95122a05d83a2cf50e51f55f034163cb11def993132204f",
"md5": "535db1e8dc356033c4b6bc8ef219b63e",
"sha256": "5c0a1a4efc72b066da7e8e441f96448904f27118a77fc9eb52dd17826485c899"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "535db1e8dc356033c4b6bc8ef219b63e",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 104322,
"upload_time": "2024-11-22T15:32:36",
"upload_time_iso_8601": "2024-11-22T15:32:36.306324Z",
"url": "https://files.pythonhosted.org/packages/68/9d/0d9784d2b0a4c95122a05d83a2cf50e51f55f034163cb11def993132204f/pyguetzli-1.0.17-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3f0b5b6610499937870568834940f0b8a6d08d526d52ad5eb0b79e1cad2a57d",
"md5": "427c03950a06d2bb7ec4068e9cf38e6f",
"sha256": "7670205684a198243a984f9dc9c826173f80e4c864c1bcca87186322b067d711"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "427c03950a06d2bb7ec4068e9cf38e6f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 130335,
"upload_time": "2024-11-22T15:32:37",
"upload_time_iso_8601": "2024-11-22T15:32:37.492819Z",
"url": "https://files.pythonhosted.org/packages/a3/f0/b5b6610499937870568834940f0b8a6d08d526d52ad5eb0b79e1cad2a57d/pyguetzli-1.0.17-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb2c94ba4b92dd1d83bfc6ea78121650cd190ef632f8a3a2fa9dddc29a2781d5",
"md5": "2e3e1aded8135a3dd9fb544492ab9bfb",
"sha256": "b43af92036c6e5a04c655e6903e897cbcdf941056945a57de0721128e2124d58"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2e3e1aded8135a3dd9fb544492ab9bfb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 190650,
"upload_time": "2024-11-22T15:32:38",
"upload_time_iso_8601": "2024-11-22T15:32:38.573386Z",
"url": "https://files.pythonhosted.org/packages/bb/2c/94ba4b92dd1d83bfc6ea78121650cd190ef632f8a3a2fa9dddc29a2781d5/pyguetzli-1.0.17-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7dce09b94927659f465152969f4635534b03db082b51f92d4291d674526fd0ca",
"md5": "4a7dafacf0a490c06ecfafb6239b800f",
"sha256": "316d6e374aaa64d5e51026c4afee7a5aeac804f9ba7ed8853dce5090ca3dc3e1"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4a7dafacf0a490c06ecfafb6239b800f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1769218,
"upload_time": "2024-11-22T15:32:40",
"upload_time_iso_8601": "2024-11-22T15:32:40.366068Z",
"url": "https://files.pythonhosted.org/packages/7d/ce/09b94927659f465152969f4635534b03db082b51f92d4291d674526fd0ca/pyguetzli-1.0.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7475e05fcff9e7ceefc53faa54831eda28c760159a1c749d93f5b2107536b487",
"md5": "0c5062bc31efb0fe614b7fc4643b4c16",
"sha256": "730c2f04e89b0023e1e39f4b35ad17cc5a18c3625c0259a41a1286c955e79ab3"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0c5062bc31efb0fe614b7fc4643b4c16",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1733109,
"upload_time": "2024-11-22T15:32:41",
"upload_time_iso_8601": "2024-11-22T15:32:41.725719Z",
"url": "https://files.pythonhosted.org/packages/74/75/e05fcff9e7ceefc53faa54831eda28c760159a1c749d93f5b2107536b487/pyguetzli-1.0.17-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58cd10e57916dc8dff4966af97a49d8cafde94e24684bd356c8fe13265411874",
"md5": "4417ddd5e97b231ec6f2b63f9b9ef1f9",
"sha256": "6af645987dcb4109ebdd0be3b4df25f3b3e5519105d973552152cd8edce1ad1d"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4417ddd5e97b231ec6f2b63f9b9ef1f9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2781287,
"upload_time": "2024-11-22T15:32:43",
"upload_time_iso_8601": "2024-11-22T15:32:43.302598Z",
"url": "https://files.pythonhosted.org/packages/58/cd/10e57916dc8dff4966af97a49d8cafde94e24684bd356c8fe13265411874/pyguetzli-1.0.17-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2dc0401ce7e34659f96b257436bb7183e3e9e6cbae532366bea191a808a2db3",
"md5": "08216093f16fb9f72eb1f15433f1e907",
"sha256": "09805573b5c79c49545b082e1f5000b8a465fc3d28208db59373c6e2436ff69f"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "08216093f16fb9f72eb1f15433f1e907",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2709165,
"upload_time": "2024-11-22T15:32:44",
"upload_time_iso_8601": "2024-11-22T15:32:44.917234Z",
"url": "https://files.pythonhosted.org/packages/d2/dc/0401ce7e34659f96b257436bb7183e3e9e6cbae532366bea191a808a2db3/pyguetzli-1.0.17-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a928accad6745b3389cf5da2d5f3670ce28c4034723f51e555cac3c30cd150bf",
"md5": "ee0fef2a84cc1f9e1f8f1952368d643b",
"sha256": "fe997dbd82bb5cca8a41c93c61b13d71001417eb621aaf9157f85ca96e49233a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "ee0fef2a84cc1f9e1f8f1952368d643b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 104273,
"upload_time": "2024-11-22T15:32:46",
"upload_time_iso_8601": "2024-11-22T15:32:46.318476Z",
"url": "https://files.pythonhosted.org/packages/a9/28/accad6745b3389cf5da2d5f3670ce28c4034723f51e555cac3c30cd150bf/pyguetzli-1.0.17-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4e802428948204efebc8f9e4cd23bb74fbf5f8a4b721ccca57e288d81b3606a",
"md5": "4ef2b65f1012934b55fca19ae7910b6d",
"sha256": "a814451d2758fe8e0665f64ad879330a59fef3946ccb0d5a90ef450c74ac4574"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "4ef2b65f1012934b55fca19ae7910b6d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 130063,
"upload_time": "2024-11-22T15:32:47",
"upload_time_iso_8601": "2024-11-22T15:32:47.409642Z",
"url": "https://files.pythonhosted.org/packages/d4/e8/02428948204efebc8f9e4cd23bb74fbf5f8a4b721ccca57e288d81b3606a/pyguetzli-1.0.17-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc7a72e2ed85ece925b8a19c9e7dc3898613a9d75ccbaf8695af6c7897ed5ce9",
"md5": "9b43af07f387d348755453799f67256b",
"sha256": "9ccd0d9ac6a53c2b3e682d89c772ab4b89eeb4c9661338de26ca82e3bb4679b1"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "9b43af07f387d348755453799f67256b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 351079,
"upload_time": "2024-11-22T15:32:49",
"upload_time_iso_8601": "2024-11-22T15:32:49.354869Z",
"url": "https://files.pythonhosted.org/packages/fc/7a/72e2ed85ece925b8a19c9e7dc3898613a9d75ccbaf8695af6c7897ed5ce9/pyguetzli-1.0.17-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abecc2a1f745ba06027edab4b076c6ec67236648298273161b7b5338a1b8191d",
"md5": "3ce3db2fe04fd1c8aa0759479eb295ef",
"sha256": "525dd27cc01836e7100495978cae6b73afaef875c76af5b6b82bae7d281abc26"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3ce3db2fe04fd1c8aa0759479eb295ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 190646,
"upload_time": "2024-11-22T15:32:50",
"upload_time_iso_8601": "2024-11-22T15:32:50.610344Z",
"url": "https://files.pythonhosted.org/packages/ab/ec/c2a1f745ba06027edab4b076c6ec67236648298273161b7b5338a1b8191d/pyguetzli-1.0.17-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae2f563421e217f762487c7b8dca2657c6c8645cef9a3847634427234b8dc8f8",
"md5": "66c058d852284cbe685dc9c9787ee990",
"sha256": "fbe275dc11234b61ce30ef6d843d4e21af93e0fa5d94075cd5b8b2b121ca6fd0"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "66c058d852284cbe685dc9c9787ee990",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 170100,
"upload_time": "2024-11-22T15:32:51",
"upload_time_iso_8601": "2024-11-22T15:32:51.751511Z",
"url": "https://files.pythonhosted.org/packages/ae/2f/563421e217f762487c7b8dca2657c6c8645cef9a3847634427234b8dc8f8/pyguetzli-1.0.17-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "045d3499d98058393b94553ff645065bd60269479b45e9d34c8be3e5097362a3",
"md5": "136eefa85a428594f70d06ff1343918f",
"sha256": "f265f734246aa9c37e08d59e43f16c76a493425ba54036e356db765b7c060fac"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "136eefa85a428594f70d06ff1343918f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1769383,
"upload_time": "2024-11-22T15:32:53",
"upload_time_iso_8601": "2024-11-22T15:32:53.018461Z",
"url": "https://files.pythonhosted.org/packages/04/5d/3499d98058393b94553ff645065bd60269479b45e9d34c8be3e5097362a3/pyguetzli-1.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6bde6df08df55c4d0e102e74a602654d954496f5966a9228b9c2b543954c295",
"md5": "3c084a0487d17575fa49cd35ea928014",
"sha256": "652c9698154f6f97bbac5cf67bfa1abf99c9f7cbc0ddb976107ce023777acf0f"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3c084a0487d17575fa49cd35ea928014",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1733433,
"upload_time": "2024-11-22T15:32:54",
"upload_time_iso_8601": "2024-11-22T15:32:54.515106Z",
"url": "https://files.pythonhosted.org/packages/d6/bd/e6df08df55c4d0e102e74a602654d954496f5966a9228b9c2b543954c295/pyguetzli-1.0.17-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e430b40b75db8b0b0085df7fe51984fb136b1b8ee453aea0b9010cf729baa02",
"md5": "708132b2230afadf7f291bf99de714d5",
"sha256": "488b984717a33952d24a03a65dde9c269958e668f8b6741e608f10260838f919"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "708132b2230afadf7f291bf99de714d5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2781341,
"upload_time": "2024-11-22T15:32:56",
"upload_time_iso_8601": "2024-11-22T15:32:56.637595Z",
"url": "https://files.pythonhosted.org/packages/3e/43/0b40b75db8b0b0085df7fe51984fb136b1b8ee453aea0b9010cf729baa02/pyguetzli-1.0.17-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8e10b80cc5e44d4a9df0697f29de9e07ec7fafa8f124aa4f5df7d69b0d11d70",
"md5": "bfa92341ef8efe955cd750a0bb918be8",
"sha256": "9282fbbca1ec8626e15dd43ea3a2d4ca8d81a317a3c70b1da3daa2a89a1053f4"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bfa92341ef8efe955cd750a0bb918be8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2709274,
"upload_time": "2024-11-22T15:32:59",
"upload_time_iso_8601": "2024-11-22T15:32:59.021099Z",
"url": "https://files.pythonhosted.org/packages/a8/e1/0b80cc5e44d4a9df0697f29de9e07ec7fafa8f124aa4f5df7d69b0d11d70/pyguetzli-1.0.17-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e6c01d652b97d6ae18b50fa5de9e292dc8f49af0d3576fcadd96274d606d01a",
"md5": "86e881ca5bdae919474026b184ff3fff",
"sha256": "7626b7a5a786e88765476facc527371013426ac282644112c861c3123e96d328"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "86e881ca5bdae919474026b184ff3fff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 104269,
"upload_time": "2024-11-22T15:33:00",
"upload_time_iso_8601": "2024-11-22T15:33:00.375486Z",
"url": "https://files.pythonhosted.org/packages/4e/6c/01d652b97d6ae18b50fa5de9e292dc8f49af0d3576fcadd96274d606d01a/pyguetzli-1.0.17-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13ca943f5ec790b22880a032ebeb0caed14347782fb162de0526412c3a16a85a",
"md5": "a9100cbdc919e3db7cbca387cfc9768b",
"sha256": "3ce15d11d879cad529f6ba12b71703bdea3fee89cda079f184a72f23e1eff5de"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "a9100cbdc919e3db7cbca387cfc9768b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 130060,
"upload_time": "2024-11-22T15:33:01",
"upload_time_iso_8601": "2024-11-22T15:33:01.479698Z",
"url": "https://files.pythonhosted.org/packages/13/ca/943f5ec790b22880a032ebeb0caed14347782fb162de0526412c3a16a85a/pyguetzli-1.0.17-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e6dd2e4c819beeddb9f303589bb3257e60d8b1dedc8f192afd78379e6c63433",
"md5": "5f37fd0155852606d3a03aaae8b6a694",
"sha256": "71f4b2d250e88457afecc450cbd81ac7c748d0aacdd1c0518cb59bbc45ea041a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5f37fd0155852606d3a03aaae8b6a694",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 351077,
"upload_time": "2024-11-22T15:33:03",
"upload_time_iso_8601": "2024-11-22T15:33:03.258877Z",
"url": "https://files.pythonhosted.org/packages/8e/6d/d2e4c819beeddb9f303589bb3257e60d8b1dedc8f192afd78379e6c63433/pyguetzli-1.0.17-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90fe76935748ebfc3709a475248cc60b578d8e27618ea35033f03952a31522cd",
"md5": "2ab6da99e5c265250039d1855d9b444d",
"sha256": "20568bf72ba04e1df6fe0926763617e152aac8b03018d95ea23713f984756681"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2ab6da99e5c265250039d1855d9b444d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 190643,
"upload_time": "2024-11-22T15:33:04",
"upload_time_iso_8601": "2024-11-22T15:33:04.689465Z",
"url": "https://files.pythonhosted.org/packages/90/fe/76935748ebfc3709a475248cc60b578d8e27618ea35033f03952a31522cd/pyguetzli-1.0.17-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a85c44d7bd8b99e395b508914612449117a1a3e66f5e08fd215a062261422117",
"md5": "ae8d82103f2ed4c372a469d736e642ec",
"sha256": "c3c2556a59735157e0cd96c1a74995afa8a4d810fcd215809e0c38577a38f883"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ae8d82103f2ed4c372a469d736e642ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 170100,
"upload_time": "2024-11-22T15:33:05",
"upload_time_iso_8601": "2024-11-22T15:33:05.883502Z",
"url": "https://files.pythonhosted.org/packages/a8/5c/44d7bd8b99e395b508914612449117a1a3e66f5e08fd215a062261422117/pyguetzli-1.0.17-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc23bbbbad6df14b78b7e9585e916c74f1f67b1ac3a6ce2933e6378cdce3f79e",
"md5": "6a0938a12fe42b3b01a904d3b7d51356",
"sha256": "856004b0173dbad268a0c6a2534439b46392083d951f84f473c5c11ab21ab014"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6a0938a12fe42b3b01a904d3b7d51356",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1769272,
"upload_time": "2024-11-22T15:33:07",
"upload_time_iso_8601": "2024-11-22T15:33:07.221765Z",
"url": "https://files.pythonhosted.org/packages/bc/23/bbbbad6df14b78b7e9585e916c74f1f67b1ac3a6ce2933e6378cdce3f79e/pyguetzli-1.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f02643eab6868c181365f74618aeae601a6c550a8b1df9148270a643a8e3211f",
"md5": "46372cecb3942d71d9c0fed71233e7f2",
"sha256": "4cdadc5ae54d1108e4af2b4a3b388b52586375a855e0eda483bf4cf44aa7cdfe"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "46372cecb3942d71d9c0fed71233e7f2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1733397,
"upload_time": "2024-11-22T15:33:08",
"upload_time_iso_8601": "2024-11-22T15:33:08.634689Z",
"url": "https://files.pythonhosted.org/packages/f0/26/43eab6868c181365f74618aeae601a6c550a8b1df9148270a643a8e3211f/pyguetzli-1.0.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6749192047b739a7100dbbe4011ad8a5cff66a293e99dede6689aeff99a4991d",
"md5": "cccbcf0053ca116c6c8dae135b60d4f3",
"sha256": "4a8704c5bc85df3de93defda6db3552f2d786c643bcb12f8cdcb930560447ff3"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "cccbcf0053ca116c6c8dae135b60d4f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2781075,
"upload_time": "2024-11-22T15:33:11",
"upload_time_iso_8601": "2024-11-22T15:33:11.100987Z",
"url": "https://files.pythonhosted.org/packages/67/49/192047b739a7100dbbe4011ad8a5cff66a293e99dede6689aeff99a4991d/pyguetzli-1.0.17-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cd9efae29978674861d2e9ab8029cfdba1ff812b421879416f517aa0b7f2114",
"md5": "b762607eeac90c5d24ec0d6bef78cdc8",
"sha256": "157c90ee2848b02733d41acf6781976bd679c5559a42ed1731897121541d972c"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b762607eeac90c5d24ec0d6bef78cdc8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2709303,
"upload_time": "2024-11-22T15:33:13",
"upload_time_iso_8601": "2024-11-22T15:33:13.822391Z",
"url": "https://files.pythonhosted.org/packages/1c/d9/efae29978674861d2e9ab8029cfdba1ff812b421879416f517aa0b7f2114/pyguetzli-1.0.17-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4d0746c693355dffa7bba18d608b4af9f1a376927c4740225b903b4ba8dbb8c",
"md5": "411a80f5bb5d3d4b3c0eb2fbec00bcce",
"sha256": "ce2933df78e24e2038d1a9aaa274878ec0ddb2740490edee3311a1415398cb8c"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "411a80f5bb5d3d4b3c0eb2fbec00bcce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 104269,
"upload_time": "2024-11-22T15:33:16",
"upload_time_iso_8601": "2024-11-22T15:33:16.023543Z",
"url": "https://files.pythonhosted.org/packages/c4/d0/746c693355dffa7bba18d608b4af9f1a376927c4740225b903b4ba8dbb8c/pyguetzli-1.0.17-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0000e62ec86ad9309e47286b42c8cf4e418505438d66637e701868debe0d7628",
"md5": "dbb3497fdf0c965717d0bd1c720a1a39",
"sha256": "f828593f623501e6de2b6f63a915b852f0501a79aa8663d0b190700899a513c8"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "dbb3497fdf0c965717d0bd1c720a1a39",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 130060,
"upload_time": "2024-11-22T15:33:17",
"upload_time_iso_8601": "2024-11-22T15:33:17.210085Z",
"url": "https://files.pythonhosted.org/packages/00/00/e62ec86ad9309e47286b42c8cf4e418505438d66637e701868debe0d7628/pyguetzli-1.0.17-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c13824a4924042faee0ff9fbeb09320d1f0a2672820ad05e55fcf5af7ad34779",
"md5": "45ada3a1be325a4b5cc4538e677fb2d1",
"sha256": "465e2b4993e9fe45be54a9d0fe4a99bced6dc43a8a0db2ff3c764ee69320cf71"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "45ada3a1be325a4b5cc4538e677fb2d1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 181389,
"upload_time": "2024-11-22T15:33:18",
"upload_time_iso_8601": "2024-11-22T15:33:18.867941Z",
"url": "https://files.pythonhosted.org/packages/c1/38/24a4924042faee0ff9fbeb09320d1f0a2672820ad05e55fcf5af7ad34779/pyguetzli-1.0.17-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45918c02ca4a8f79669b67aee8339505eb5b92babef4fabb449c522445a1e66c",
"md5": "01dd12f65dfc219d15f53d72bb7435fd",
"sha256": "362be7dafa229b2d0f3f2269ed2420c67e709d1bdfbbb2c633880734c7723c32"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "01dd12f65dfc219d15f53d72bb7435fd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 162971,
"upload_time": "2024-11-22T15:33:20",
"upload_time_iso_8601": "2024-11-22T15:33:20.007684Z",
"url": "https://files.pythonhosted.org/packages/45/91/8c02ca4a8f79669b67aee8339505eb5b92babef4fabb449c522445a1e66c/pyguetzli-1.0.17-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cea7fbf651f391f88d355b0df031dd4cdeed6f142947219b5380ab6992de66f1",
"md5": "12fe28329e4bb6040a7f6c5275cd6bb6",
"sha256": "3a94d8f94e4662c46d5687fe1c75ad015b98aa9dc58b99b25717e307e1414d9a"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "12fe28329e4bb6040a7f6c5275cd6bb6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 167101,
"upload_time": "2024-11-22T15:33:21",
"upload_time_iso_8601": "2024-11-22T15:33:21.391547Z",
"url": "https://files.pythonhosted.org/packages/ce/a7/fbf651f391f88d355b0df031dd4cdeed6f142947219b5380ab6992de66f1/pyguetzli-1.0.17-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdc99905540a378bca975fe1d6e0b91d0314fc08672659bba45bb13e4158ff04",
"md5": "eb5fb1a0e8695fe7f6e1d68032263e72",
"sha256": "047fc66debb490b2a1a374ba4ef5c09d556703b716331f6d4195d36a9c10e518"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "eb5fb1a0e8695fe7f6e1d68032263e72",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 128646,
"upload_time": "2024-11-22T15:33:22",
"upload_time_iso_8601": "2024-11-22T15:33:22.540626Z",
"url": "https://files.pythonhosted.org/packages/fd/c9/9905540a378bca975fe1d6e0b91d0314fc08672659bba45bb13e4158ff04/pyguetzli-1.0.17-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f534de5eaeb9de63449380ff862442360a0e5078863603f51362bbbf486200b1",
"md5": "5870d10b799245796407d64a750fed21",
"sha256": "370478a1038d8af2398480adac9d7370115e75ea662b5be9666d0705963f4031"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5870d10b799245796407d64a750fed21",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 182333,
"upload_time": "2024-11-22T15:33:25",
"upload_time_iso_8601": "2024-11-22T15:33:25.476629Z",
"url": "https://files.pythonhosted.org/packages/f5/34/de5eaeb9de63449380ff862442360a0e5078863603f51362bbbf486200b1/pyguetzli-1.0.17-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6b71c2a98427fc05fed5e21433f51fd18a9c1d023f7f84e396fba604b0a53f5",
"md5": "5272b23cb3eccd99bf2846718f5eaba9",
"sha256": "714431707fb6e7f77aa7d99ca49389ff024b20e47f45459cbcdb5c544b8bcfb3"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5272b23cb3eccd99bf2846718f5eaba9",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 164685,
"upload_time": "2024-11-22T15:33:26",
"upload_time_iso_8601": "2024-11-22T15:33:26.756669Z",
"url": "https://files.pythonhosted.org/packages/a6/b7/1c2a98427fc05fed5e21433f51fd18a9c1d023f7f84e396fba604b0a53f5/pyguetzli-1.0.17-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "919db79fd9a488eb53d93023d3d7397e86e111f63f416ca8afb6065663d358b6",
"md5": "d96ffbb4fc89269211699b9242bb7846",
"sha256": "aadd68d35fb3e31c9c7ba33f44fb424e7ea85e66b408760453efeae899d6b32d"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d96ffbb4fc89269211699b9242bb7846",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 168702,
"upload_time": "2024-11-22T15:33:27",
"upload_time_iso_8601": "2024-11-22T15:33:27.961706Z",
"url": "https://files.pythonhosted.org/packages/91/9d/b79fd9a488eb53d93023d3d7397e86e111f63f416ca8afb6065663d358b6/pyguetzli-1.0.17-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "961b5889e769a0cb739e3a10c502e31202e8f99868c56a2261c0c91383f96553",
"md5": "179c0f98f8ff6d4af74aabe368582f42",
"sha256": "acae14120179668dfd6c3216c3eee70b4c56452cee00e7c75bdc1d8b0d395706"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "179c0f98f8ff6d4af74aabe368582f42",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 128645,
"upload_time": "2024-11-22T15:33:29",
"upload_time_iso_8601": "2024-11-22T15:33:29.183389Z",
"url": "https://files.pythonhosted.org/packages/96/1b/5889e769a0cb739e3a10c502e31202e8f99868c56a2261c0c91383f96553/pyguetzli-1.0.17-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e05ad5e5d6e46dc08bf25d9c8c683ec6abb9ce8fa726b2b90ed8370d3941485c",
"md5": "e0c9c2798476f9e3a0db10b2423e60e5",
"sha256": "d14cc90ca73ef23dfb5522801537fd34de17a0f9b051b0eb68c2311961f1f6ca"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e0c9c2798476f9e3a0db10b2423e60e5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 182330,
"upload_time": "2024-11-22T15:33:30",
"upload_time_iso_8601": "2024-11-22T15:33:30.290336Z",
"url": "https://files.pythonhosted.org/packages/e0/5a/d5e5d6e46dc08bf25d9c8c683ec6abb9ce8fa726b2b90ed8370d3941485c/pyguetzli-1.0.17-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "600bc519386d3ee2b55ad59f28fcc53bb76154aaaa047490ed7988a6c8b1df34",
"md5": "a679c568b1db9d86e5d4fef7ade69015",
"sha256": "702a37d61dc65313e96068c1eb040cf8c42aff45f2ec716b1c42c990bbb140a9"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a679c568b1db9d86e5d4fef7ade69015",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 162966,
"upload_time": "2024-11-22T15:33:31",
"upload_time_iso_8601": "2024-11-22T15:33:31.487797Z",
"url": "https://files.pythonhosted.org/packages/60/0b/c519386d3ee2b55ad59f28fcc53bb76154aaaa047490ed7988a6c8b1df34/pyguetzli-1.0.17-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3549368a0339d9166579e7b5593f16be8db389916a3d5ad5016b5f253fd3f31a",
"md5": "b22a7733faddd63ddd21d592364e118e",
"sha256": "7a2ae5367aa3818e550d922ace76d1e931b7680be010411144c457d7b77ce023"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b22a7733faddd63ddd21d592364e118e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 167095,
"upload_time": "2024-11-22T15:33:32",
"upload_time_iso_8601": "2024-11-22T15:33:32.714069Z",
"url": "https://files.pythonhosted.org/packages/35/49/368a0339d9166579e7b5593f16be8db389916a3d5ad5016b5f253fd3f31a/pyguetzli-1.0.17-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53f5d3df665058f0a06b7d919377f3531034317e5b5c13372b47cb653ba813ce",
"md5": "1fb464072a50b20f3b2918cccb6b4c07",
"sha256": "ace0cf63fe587a74d51390c82f2330be36e0171acd17f082364c86dbe6ac6582"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "1fb464072a50b20f3b2918cccb6b4c07",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 128643,
"upload_time": "2024-11-22T15:33:34",
"upload_time_iso_8601": "2024-11-22T15:33:34.348590Z",
"url": "https://files.pythonhosted.org/packages/53/f5/d3df665058f0a06b7d919377f3531034317e5b5c13372b47cb653ba813ce/pyguetzli-1.0.17-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6da196e000697c44b757a14b66d9314ed47cc327364d164d7ebdb1c98842e014",
"md5": "55f20eb55589b981abe4a6fe665d458a",
"sha256": "561bd86bfd6535af1d4f850cb79293bec3666fdc3a0c046da3982ec05e5a82cd"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "55f20eb55589b981abe4a6fe665d458a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 181388,
"upload_time": "2024-11-22T15:33:35",
"upload_time_iso_8601": "2024-11-22T15:33:35.486227Z",
"url": "https://files.pythonhosted.org/packages/6d/a1/96e000697c44b757a14b66d9314ed47cc327364d164d7ebdb1c98842e014/pyguetzli-1.0.17-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "762471dc2c767d8c4e628c2251e141a1ef75c6c390ad3dab27d50fff3fb206b1",
"md5": "94da5961987a730b48ae58bd796afb37",
"sha256": "949d6a97039046645f341e190b50ebeb94b4b1de5266b5a542e83957ba61d97d"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "94da5961987a730b48ae58bd796afb37",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 162967,
"upload_time": "2024-11-22T15:33:36",
"upload_time_iso_8601": "2024-11-22T15:33:36.809679Z",
"url": "https://files.pythonhosted.org/packages/76/24/71dc2c767d8c4e628c2251e141a1ef75c6c390ad3dab27d50fff3fb206b1/pyguetzli-1.0.17-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d40b3b9f60843afbe406756ba285439141a3bb5dfe909dbf08c8f7765b75fde3",
"md5": "0e107d9b2b2f9b652f90ce230b895011",
"sha256": "64b435cf8efd5736a53d130d66e839d2804bf144da70dba3c7024874f3fb82ea"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0e107d9b2b2f9b652f90ce230b895011",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 167097,
"upload_time": "2024-11-22T15:33:38",
"upload_time_iso_8601": "2024-11-22T15:33:38.120914Z",
"url": "https://files.pythonhosted.org/packages/d4/0b/3b9f60843afbe406756ba285439141a3bb5dfe909dbf08c8f7765b75fde3/pyguetzli-1.0.17-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf16c2279eabccce1fb07a393aae90cbe42540d652e7b03b177a0c795e8f6252",
"md5": "f306e03ee3bbd8e3dd4f0b04f11268e8",
"sha256": "9ccd9a01d905908213fefc0a970dfdbdd8105aae1ad0277235cb75729f4a1168"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f306e03ee3bbd8e3dd4f0b04f11268e8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 128644,
"upload_time": "2024-11-22T15:33:39",
"upload_time_iso_8601": "2024-11-22T15:33:39.963537Z",
"url": "https://files.pythonhosted.org/packages/cf/16/c2279eabccce1fb07a393aae90cbe42540d652e7b03b177a0c795e8f6252/pyguetzli-1.0.17-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e68d02909fbe7fad36039c3729cba78f16ede42a9c742b8cc9bbdf88aacc3b11",
"md5": "50ca27e311008aeb17a1e583b0d47fc9",
"sha256": "22529e89073fda12f1fb810375f4a662c713f8d61b1004a6463d13702547618d"
},
"downloads": -1,
"filename": "pyguetzli-1.0.17.tar.gz",
"has_sig": false,
"md5_digest": "50ca27e311008aeb17a1e583b0d47fc9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 112943,
"upload_time": "2024-11-22T15:33:41",
"upload_time_iso_8601": "2024-11-22T15:33:41.207905Z",
"url": "https://files.pythonhosted.org/packages/e6/8d/02909fbe7fad36039c3729cba78f16ede42a9c742b8cc9bbdf88aacc3b11/pyguetzli-1.0.17.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-22 15:33:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wanadev",
"github_project": "pyguetzli",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "pyguetzli"
}