zopfli


Namezopfli JSON
Version 0.2.3.post1 PyPI version JSON
download
home_pagehttps://github.com/fonttools/py-zopfli
SummaryZopfli module for python
upload_time2024-10-18 15:42:05
maintainerCosimo Lupo
docs_urlNone
authorAdam DePrince
requires_python>=3.8
licenseASL
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |Build Status|

PYZOPFLI
========

cPython bindings for
`zopfli <http://googledevelopers.blogspot.com/2013/02/compress-data-more-densely-with-zopfli.html>`__.

It requires Python 3.8 or greater.

USAGE
=====

pyzopfli is a straight forward wrapper around zopfli's ZlibCompress method.

::

    from zopfli.zlib import compress
    from zlib import decompress
    s = 'Hello World'
    print decompress(compress(s))

pyzopfli also wraps GzipCompress, but the API point does not try to
mimic the gzip module.

::

    from zopfli.gzip import compress 
    from StringIO import StringIO
    from gzip import GzipFile
    print GzipFile(fileobj=StringIO(compress("Hello World!"))).read()

Both zopfli.zlib.compress and zopfli.gzip.compress support the following
keyword arguments. All values should be integers; boolean parmaters are
treated as expected, 0 and >0 as false and true.

-  *verbose* dumps zopfli debugging data to stderr

-  *numiterations* Maximum amount of times to rerun forward and backward
   pass to optimize LZ77 compression cost. Good values: 10, 15 for small
   files, 5 for files over several MB in size or it will be too slow.

-  *blocksplitting* If true, splits the data in multiple deflate blocks
   with optimal choice for the block boundaries. Block splitting gives
   better compression. Default: true (1).

-  *blocksplittinglast* If true, chooses the optimal block split points
   only after doing the iterative LZ77 compression. If false, chooses
   the block split points first, then does iterative LZ77 on each
   individual block. Depending on the file, either first or last gives
   the best compression. Default: false (0).

-  *blocksplittingmax* Maximum amount of blocks to split into (0 for
   unlimited, but this can give extreme results that hurt compression on
   some files). Default value: 15.

TODO
====

-  Stop reading the entire file into memory and support streaming

-  Monkey patch zlib and gzip so code with an overly tight binding can
   be easily modified to use zopfli.

.. |Build Status| image:: https://github.com/fonttools/py-zopfli/actions/workflows/ci.yml/badge.svg?branch=master
   :target: https://github.com/fonttools/py-zopfli/actions/workflows/ci.yml

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fonttools/py-zopfli",
    "name": "zopfli",
    "maintainer": "Cosimo Lupo",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "cosimo@anthrotype.com",
    "keywords": null,
    "author": "Adam DePrince",
    "author_email": "deprince@googlealumni.com",
    "download_url": "https://files.pythonhosted.org/packages/5e/7c/a8f6696e694709e2abcbccd27d05ef761e9b6efae217e11d977471555b62/zopfli-0.2.3.post1.tar.gz",
    "platform": null,
    "description": "|Build Status|\n\nPYZOPFLI\n========\n\ncPython bindings for\n`zopfli <http://googledevelopers.blogspot.com/2013/02/compress-data-more-densely-with-zopfli.html>`__.\n\nIt requires Python 3.8 or greater.\n\nUSAGE\n=====\n\npyzopfli is a straight forward wrapper around zopfli's ZlibCompress method.\n\n::\n\n    from zopfli.zlib import compress\n    from zlib import decompress\n    s = 'Hello World'\n    print decompress(compress(s))\n\npyzopfli also wraps GzipCompress, but the API point does not try to\nmimic the gzip module.\n\n::\n\n    from zopfli.gzip import compress \n    from StringIO import StringIO\n    from gzip import GzipFile\n    print GzipFile(fileobj=StringIO(compress(\"Hello World!\"))).read()\n\nBoth zopfli.zlib.compress and zopfli.gzip.compress support the following\nkeyword arguments. All values should be integers; boolean parmaters are\ntreated as expected, 0 and >0 as false and true.\n\n-  *verbose* dumps zopfli debugging data to stderr\n\n-  *numiterations* Maximum amount of times to rerun forward and backward\n   pass to optimize LZ77 compression cost. Good values: 10, 15 for small\n   files, 5 for files over several MB in size or it will be too slow.\n\n-  *blocksplitting* If true, splits the data in multiple deflate blocks\n   with optimal choice for the block boundaries. Block splitting gives\n   better compression. Default: true (1).\n\n-  *blocksplittinglast* If true, chooses the optimal block split points\n   only after doing the iterative LZ77 compression. If false, chooses\n   the block split points first, then does iterative LZ77 on each\n   individual block. Depending on the file, either first or last gives\n   the best compression. Default: false (0).\n\n-  *blocksplittingmax* Maximum amount of blocks to split into (0 for\n   unlimited, but this can give extreme results that hurt compression on\n   some files). Default value: 15.\n\nTODO\n====\n\n-  Stop reading the entire file into memory and support streaming\n\n-  Monkey patch zlib and gzip so code with an overly tight binding can\n   be easily modified to use zopfli.\n\n.. |Build Status| image:: https://github.com/fonttools/py-zopfli/actions/workflows/ci.yml/badge.svg?branch=master\n   :target: https://github.com/fonttools/py-zopfli/actions/workflows/ci.yml\n",
    "bugtrack_url": null,
    "license": "ASL",
    "summary": "Zopfli module for python",
    "version": "0.2.3.post1",
    "project_urls": {
        "Homepage": "https://github.com/fonttools/py-zopfli"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "955b7f21751e0da525a78a0269600c1d45dee565f9f0a9f875e1374b00778a82",
                "md5": "5ddc2501f8ec64cc9c40bb995998d51c",
                "sha256": "e0137dd64a493ba6a4be37405cfd6febe650a98cc1e9dca8f6b8c63b1db11b41"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5ddc2501f8ec64cc9c40bb995998d51c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 296334,
            "upload_time": "2024-10-18T15:40:29",
            "upload_time_iso_8601": "2024-10-18T15:40:29.420859Z",
            "url": "https://files.pythonhosted.org/packages/95/5b/7f21751e0da525a78a0269600c1d45dee565f9f0a9f875e1374b00778a82/zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96a9b9bcac622a66ecfef22e2c735feefd3b9f31b8a45ca2ef8c1438604d2157",
                "md5": "35242fc54098e2fd01c41d096636261e",
                "sha256": "aa588b21044f8a74e423d8c8a4c7fc9988501878aacced793467010039c50734"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35242fc54098e2fd01c41d096636261e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 163885,
            "upload_time": "2024-10-18T15:40:31",
            "upload_time_iso_8601": "2024-10-18T15:40:31.638648Z",
            "url": "https://files.pythonhosted.org/packages/96/a9/b9bcac622a66ecfef22e2c735feefd3b9f31b8a45ca2ef8c1438604d2157/zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79b602dcb076ceb3120dc7a7e1cb197add5189c265ef9424b595430f19583dad",
                "md5": "956f790ba389dd4b3c9f062aee68119d",
                "sha256": "9f4a7ec2770e6af05f5a02733fd3900f30a9cd58e5d6d3727e14c5bcd6e7d587"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "956f790ba389dd4b3c9f062aee68119d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 790653,
            "upload_time": "2024-10-18T15:40:32",
            "upload_time_iso_8601": "2024-10-18T15:40:32.734736Z",
            "url": "https://files.pythonhosted.org/packages/79/b6/02dcb076ceb3120dc7a7e1cb197add5189c265ef9424b595430f19583dad/zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74b5720b8a6a0a103caee1c10deb52139ba25aa0b37263cd423521bc6c416ce2",
                "md5": "3c1abe858514e7284d03f6207a6a9de1",
                "sha256": "f7d69c1a7168ad0e9cb864e8663acb232986a0c9c9cb9801f56bf6214f53a54d"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c1abe858514e7284d03f6207a6a9de1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 849105,
            "upload_time": "2024-10-18T15:40:34",
            "upload_time_iso_8601": "2024-10-18T15:40:34.223773Z",
            "url": "https://files.pythonhosted.org/packages/74/b5/720b8a6a0a103caee1c10deb52139ba25aa0b37263cd423521bc6c416ce2/zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a674f03eb4c0243bc418634ebdceb4715a28db8ab281c89cde1b7d2c243c13",
                "md5": "af8ed45b52e516cb29f06de7396165e5",
                "sha256": "6c2d2bc8129707e34c51f9352c4636ca313b52350bbb7e04637c46c1818a2a70"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af8ed45b52e516cb29f06de7396165e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 825695,
            "upload_time": "2024-10-18T15:40:35",
            "upload_time_iso_8601": "2024-10-18T15:40:35.851540Z",
            "url": "https://files.pythonhosted.org/packages/e7/a6/74f03eb4c0243bc418634ebdceb4715a28db8ab281c89cde1b7d2c243c13/zopfli-0.2.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f05ceb1cb5a4e3c7becb5576944e225f3df05198c6d3ad20e4c762eb505c59b8",
                "md5": "7f1c1b34ca61467a91cdf8db6852610a",
                "sha256": "39e576f93576c5c223b41d9c780bbb91fd6db4babf3223d2a4fe7bf568e2b5a8"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f1c1b34ca61467a91cdf8db6852610a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1753293,
            "upload_time": "2024-10-18T15:40:37",
            "upload_time_iso_8601": "2024-10-18T15:40:37.417739Z",
            "url": "https://files.pythonhosted.org/packages/f0/5c/eb1cb5a4e3c7becb5576944e225f3df05198c6d3ad20e4c762eb505c59b8/zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "571504d1b212e8932acfb0ec3a513f13bfdc5cfb874ba2c23ee0771dffb1063d",
                "md5": "c71042afb63cef8a3e9681a8a5e23d61",
                "sha256": "cbe6df25807227519debd1a57ab236f5f6bad441500e85b13903e51f93a43214"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c71042afb63cef8a3e9681a8a5e23d61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1904912,
            "upload_time": "2024-10-18T15:40:39",
            "upload_time_iso_8601": "2024-10-18T15:40:39.158609Z",
            "url": "https://files.pythonhosted.org/packages/57/15/04d1b212e8932acfb0ec3a513f13bfdc5cfb874ba2c23ee0771dffb1063d/zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88d5dd458a9053129bc6cf6cd2554c595020f463ba7438f32313b70a697850f2",
                "md5": "e2e83fe6786887e0a988de4d74845e8b",
                "sha256": "7cce242b5df12b2b172489daf19c32e5577dd2fac659eb4b17f6a6efb446fd5c"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2e83fe6786887e0a988de4d74845e8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1834445,
            "upload_time": "2024-10-18T15:40:40",
            "upload_time_iso_8601": "2024-10-18T15:40:40.437682Z",
            "url": "https://files.pythonhosted.org/packages/88/d5/dd458a9053129bc6cf6cd2554c595020f463ba7438f32313b70a697850f2/zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9c2f1ddc57f8458fae8c54df9acd079fbd3a7ebaa12d839576719262a942cba",
                "md5": "897e6e62684a83c339a988e3cce36f5c",
                "sha256": "f815fcc2b2a457977724bad97fb4854022980f51ce7b136925e336b530545ae1"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "897e6e62684a83c339a988e3cce36f5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 82633,
            "upload_time": "2024-10-18T15:40:41",
            "upload_time_iso_8601": "2024-10-18T15:40:41.634953Z",
            "url": "https://files.pythonhosted.org/packages/a9/c2/f1ddc57f8458fae8c54df9acd079fbd3a7ebaa12d839576719262a942cba/zopfli-0.2.3.post1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cf56b750c8326c00c46e486c180efb0f2d23cd0e43ecf8e0c9947586dda664a",
                "md5": "ff94bc148d59b70b80e13af28fcba8ff",
                "sha256": "0cc20b02a9531559945324c38302fd4ba763311632d0ec8a1a0aa9c10ea363e6"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff94bc148d59b70b80e13af28fcba8ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 99343,
            "upload_time": "2024-10-18T15:40:43",
            "upload_time_iso_8601": "2024-10-18T15:40:43.159252Z",
            "url": "https://files.pythonhosted.org/packages/2c/f5/6b750c8326c00c46e486c180efb0f2d23cd0e43ecf8e0c9947586dda664a/zopfli-0.2.3.post1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "926dc8224a8fc77c1dff6caaa2dc63794a40ea284c82ac20030fb2521092dca6",
                "md5": "726ad7f90fef6bf01a1bdb0c58c2cab1",
                "sha256": "518f1f4ed35dd69ce06b552f84e6d081f07c552b4c661c5312d950a0b764a58a"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "726ad7f90fef6bf01a1bdb0c58c2cab1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 296334,
            "upload_time": "2024-10-18T15:40:44",
            "upload_time_iso_8601": "2024-10-18T15:40:44.684557Z",
            "url": "https://files.pythonhosted.org/packages/92/6d/c8224a8fc77c1dff6caaa2dc63794a40ea284c82ac20030fb2521092dca6/zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8dadf0f87a489d223f184d69e9e88c80c1314be43b2361acffefdc09659e00d",
                "md5": "86c9446b730c500f8365cdc18ef26b4d",
                "sha256": "615a8ac9dda265e9cc38b2a76c3142e4a9f30fea4a79c85f670850783bc6feb4"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86c9446b730c500f8365cdc18ef26b4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 163886,
            "upload_time": "2024-10-18T15:40:45",
            "upload_time_iso_8601": "2024-10-18T15:40:45.812720Z",
            "url": "https://files.pythonhosted.org/packages/f8/da/df0f87a489d223f184d69e9e88c80c1314be43b2361acffefdc09659e00d/zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39b714529a7ae608cedddb2f791cbc13a392a246e2e6d9c9b4b8bcda707d08d8",
                "md5": "ce42881a6b5d3469de69930b235c8f18",
                "sha256": "a82fc2dbebe6eb908b9c665e71496f8525c1bc4d2e3a7a7722ef2b128b6227c8"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce42881a6b5d3469de69930b235c8f18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 823654,
            "upload_time": "2024-10-18T15:40:46",
            "upload_time_iso_8601": "2024-10-18T15:40:46.969797Z",
            "url": "https://files.pythonhosted.org/packages/39/b7/14529a7ae608cedddb2f791cbc13a392a246e2e6d9c9b4b8bcda707d08d8/zopfli-0.2.3.post1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5748217c7bd720553d9e68b96926c02820e8b6184ef6dbac937823abad85b154",
                "md5": "c514fab236dc10a9856732225ffc79ce",
                "sha256": "37d011e92f7b9622742c905fdbed9920a1d0361df84142807ea2a528419dea7f"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c514fab236dc10a9856732225ffc79ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 826188,
            "upload_time": "2024-10-18T15:40:48",
            "upload_time_iso_8601": "2024-10-18T15:40:48.147140Z",
            "url": "https://files.pythonhosted.org/packages/57/48/217c7bd720553d9e68b96926c02820e8b6184ef6dbac937823abad85b154/zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8b5ab8c4c6db2564a0c3369e584090c101ffad4f9d0a39396e0d3e80c98413",
                "md5": "3b0c7f1c4bebb815fb02b639873dc10b",
                "sha256": "e63d558847166543c2c9789e6f985400a520b7eacc4b99181668b2c3aeadd352"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b0c7f1c4bebb815fb02b639873dc10b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 850573,
            "upload_time": "2024-10-18T15:40:49",
            "upload_time_iso_8601": "2024-10-18T15:40:49.481767Z",
            "url": "https://files.pythonhosted.org/packages/2f/8b/5ab8c4c6db2564a0c3369e584090c101ffad4f9d0a39396e0d3e80c98413/zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33f8f52ec5c713f3325c852f19af7c8e3f98109ddcd1ce400dc39005072a2fea",
                "md5": "fc84418dea0089495895a6b24aa3f790",
                "sha256": "60db20f06c3d4c5934b16cfa62a2cc5c3f0686bffe0071ed7804d3c31ab1a04e"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc84418dea0089495895a6b24aa3f790",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1754164,
            "upload_time": "2024-10-18T15:40:50",
            "upload_time_iso_8601": "2024-10-18T15:40:50.952707Z",
            "url": "https://files.pythonhosted.org/packages/33/f8/f52ec5c713f3325c852f19af7c8e3f98109ddcd1ce400dc39005072a2fea/zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92246a6018125e1cc6ee5880a0ae60456fdc8a2da43f2f14b487cf49439a3448",
                "md5": "02af7dedcf4c4c37277f3b3023f3bffb",
                "sha256": "716cdbfc57bfd3d3e31a58e6246e8190e6849b7dbb7c4ce39ef8bbf0edb8f6d5"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "02af7dedcf4c4c37277f3b3023f3bffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1906135,
            "upload_time": "2024-10-18T15:40:52",
            "upload_time_iso_8601": "2024-10-18T15:40:52.484726Z",
            "url": "https://files.pythonhosted.org/packages/92/24/6a6018125e1cc6ee5880a0ae60456fdc8a2da43f2f14b487cf49439a3448/zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87ad697521dac8b46f0e0d081a3da153687d7583f3a2cd5466af1ddb9928394f",
                "md5": "91d70634b6d452cbee1cd221a817c95d",
                "sha256": "3a89277ed5f8c0fb2d0b46d669aa0633123aa7381f1f6118c12f15e0fb48f8ca"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91d70634b6d452cbee1cd221a817c95d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1835047,
            "upload_time": "2024-10-18T15:40:54",
            "upload_time_iso_8601": "2024-10-18T15:40:54.453460Z",
            "url": "https://files.pythonhosted.org/packages/87/ad/697521dac8b46f0e0d081a3da153687d7583f3a2cd5466af1ddb9928394f/zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9500042c0cdba957343d7a83e572fc5ffe62de03d57c43075c8cf920b8b542e6",
                "md5": "2851230226c89432ce47c6ad6b399299",
                "sha256": "75a26a2307b10745a83b660c404416e984ee6fca515ec7f0765f69af3ce08072"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2851230226c89432ce47c6ad6b399299",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 82635,
            "upload_time": "2024-10-18T15:40:55",
            "upload_time_iso_8601": "2024-10-18T15:40:55.632390Z",
            "url": "https://files.pythonhosted.org/packages/95/00/042c0cdba957343d7a83e572fc5ffe62de03d57c43075c8cf920b8b542e6/zopfli-0.2.3.post1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6cc07119cba00db12d7ef0472637b7d71a95f2c8e9a20ed460d759acd274887",
                "md5": "71df1a4030a8926a39c676b19ef41f21",
                "sha256": "81c341d9bb87a6dbbb0d45d6e272aca80c7c97b4b210f9b6e233bf8b87242f29"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71df1a4030a8926a39c676b19ef41f21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 99345,
            "upload_time": "2024-10-18T15:40:56",
            "upload_time_iso_8601": "2024-10-18T15:40:56.965073Z",
            "url": "https://files.pythonhosted.org/packages/e6/cc/07119cba00db12d7ef0472637b7d71a95f2c8e9a20ed460d759acd274887/zopfli-0.2.3.post1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fceb6441cc01881d06e0b5883f32c44e7cc9772e0d04e3e59277f59f80b9a19",
                "md5": "c16a5012b1b38c3dd7a30536244f25e8",
                "sha256": "3f0197b6aa6eb3086ae9e66d6dd86c4d502b6c68b0ec490496348ae8c05ecaef"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "c16a5012b1b38c3dd7a30536244f25e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 295489,
            "upload_time": "2024-10-18T15:40:57",
            "upload_time_iso_8601": "2024-10-18T15:40:57.960413Z",
            "url": "https://files.pythonhosted.org/packages/3f/ce/b6441cc01881d06e0b5883f32c44e7cc9772e0d04e3e59277f59f80b9a19/zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93f024dd708f00ae0a925bc5c9edae858641c80f6a81a516810dc4d21688a930",
                "md5": "f71fad85c4ad5cdf2d751c1e012dbf26",
                "sha256": "5fcfc0dc2761e4fcc15ad5d273b4d58c2e8e059d3214a7390d4d3c8e2aee644e"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f71fad85c4ad5cdf2d751c1e012dbf26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 163010,
            "upload_time": "2024-10-18T15:40:59",
            "upload_time_iso_8601": "2024-10-18T15:40:59.444531Z",
            "url": "https://files.pythonhosted.org/packages/93/f0/24dd708f00ae0a925bc5c9edae858641c80f6a81a516810dc4d21688a930/zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65570378eeeb5e3e1e83b1b0958616b2bf954f102ba5b0755b9747dafbd8cb72",
                "md5": "56ec9d10afb9492bf4cf18f9f88b1788",
                "sha256": "cac2b37ab21c2b36a10b685b1893ebd6b0f83ae26004838ac817680881576567"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "56ec9d10afb9492bf4cf18f9f88b1788",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 823649,
            "upload_time": "2024-10-18T15:41:00",
            "upload_time_iso_8601": "2024-10-18T15:41:00.642523Z",
            "url": "https://files.pythonhosted.org/packages/65/57/0378eeeb5e3e1e83b1b0958616b2bf954f102ba5b0755b9747dafbd8cb72/zopfli-0.2.3.post1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab8a3ab8a616d4655acf5cf63c40ca84e434289d7d95518a1a42d28b4a7228f8",
                "md5": "4c8a1c17dacce4d4dca28a3fe65bef44",
                "sha256": "8d5ab297d660b75c159190ce6d73035502310e40fd35170aed7d1a1aea7ddd65"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c8a1c17dacce4d4dca28a3fe65bef44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 826557,
            "upload_time": "2024-10-18T15:41:02",
            "upload_time_iso_8601": "2024-10-18T15:41:02.431241Z",
            "url": "https://files.pythonhosted.org/packages/ab/8a/3ab8a616d4655acf5cf63c40ca84e434289d7d95518a1a42d28b4a7228f8/zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed4d7f6820af119c4fec6efaf007bffee7bc9052f695853a711a951be7afd26b",
                "md5": "d61f4fbc1291fd57b06f4c21bf8d7710",
                "sha256": "9ba214f4f45bec195ee8559651154d3ac2932470b9d91c5715fc29c013349f8c"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d61f4fbc1291fd57b06f4c21bf8d7710",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 851127,
            "upload_time": "2024-10-18T15:41:04",
            "upload_time_iso_8601": "2024-10-18T15:41:04.259908Z",
            "url": "https://files.pythonhosted.org/packages/ed/4d/7f6820af119c4fec6efaf007bffee7bc9052f695853a711a951be7afd26b/zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1db1ef5353ab06f9f2fb0c25ed0cddf1418fe275cc2ee548bc4a29340c44fe1",
                "md5": "46e7beaed90e134093b0868af3abffb1",
                "sha256": "c1e0ed5d84ffa2d677cc9582fc01e61dab2e7ef8b8996e055f0a76167b1b94df"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46e7beaed90e134093b0868af3abffb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1754183,
            "upload_time": "2024-10-18T15:41:05",
            "upload_time_iso_8601": "2024-10-18T15:41:05.808978Z",
            "url": "https://files.pythonhosted.org/packages/e1/db/1ef5353ab06f9f2fb0c25ed0cddf1418fe275cc2ee548bc4a29340c44fe1/zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "390344f8f39950354d330fa798e4bab1ac8e38ec787d3fde25d5b9c7770065a2",
                "md5": "85fb3f267868dcdb01e34ae79ae30bdc",
                "sha256": "bfa1eb759e07d8b7aa7a310a2bc535e127ee70addf90dc8d4b946b593c3e51a8"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "85fb3f267868dcdb01e34ae79ae30bdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1905945,
            "upload_time": "2024-10-18T15:41:07",
            "upload_time_iso_8601": "2024-10-18T15:41:07.136332Z",
            "url": "https://files.pythonhosted.org/packages/39/03/44f8f39950354d330fa798e4bab1ac8e38ec787d3fde25d5b9c7770065a2/zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "747b94b920c33cc64255f59e3cfc77c829b5c6e60805d189baeada728854a342",
                "md5": "c2a8b35a78089296a8eb578646a64047",
                "sha256": "cd2c002f160502608dcc822ed2441a0f4509c52e86fcfd1a09e937278ed1ca14"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2a8b35a78089296a8eb578646a64047",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1835885,
            "upload_time": "2024-10-18T15:41:08",
            "upload_time_iso_8601": "2024-10-18T15:41:08.705404Z",
            "url": "https://files.pythonhosted.org/packages/74/7b/94b920c33cc64255f59e3cfc77c829b5c6e60805d189baeada728854a342/zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad89c869ac844351e285a6165e2da79b715b0619a122e3160d183805adf8ab45",
                "md5": "05e7771f6e83e0bab2399034b6be369b",
                "sha256": "7be5cc6732eb7b4df17305d8a7b293223f934a31783a874a01164703bc1be6cd"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "05e7771f6e83e0bab2399034b6be369b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 82743,
            "upload_time": "2024-10-18T15:41:10",
            "upload_time_iso_8601": "2024-10-18T15:41:10.377382Z",
            "url": "https://files.pythonhosted.org/packages/ad/89/c869ac844351e285a6165e2da79b715b0619a122e3160d183805adf8ab45/zopfli-0.2.3.post1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29e6c98912fd3a589d8a7316c408fd91519f72c237805c4400b753e3942fda0b",
                "md5": "83f8f657a378b0b91e9e0c8ae1ff1b16",
                "sha256": "4e50ffac74842c1c1018b9b73875a0d0a877c066ab06bf7cccbaa84af97e754f"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "83f8f657a378b0b91e9e0c8ae1ff1b16",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 99403,
            "upload_time": "2024-10-18T15:41:11",
            "upload_time_iso_8601": "2024-10-18T15:41:11.547811Z",
            "url": "https://files.pythonhosted.org/packages/29/e6/c98912fd3a589d8a7316c408fd91519f72c237805c4400b753e3942fda0b/zopfli-0.2.3.post1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b240e552e2efce9a20625b56e9609d1e33c2966be33fc008681121ec267daec",
                "md5": "43f10c5c8b4985bf6740de8b8136585a",
                "sha256": "ecb7572df5372abce8073df078207d9d1749f20b8b136089916a4a0868d56051"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "43f10c5c8b4985bf6740de8b8136585a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 295485,
            "upload_time": "2024-10-18T15:41:12",
            "upload_time_iso_8601": "2024-10-18T15:41:12.570643Z",
            "url": "https://files.pythonhosted.org/packages/2b/24/0e552e2efce9a20625b56e9609d1e33c2966be33fc008681121ec267daec/zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0883b2564369fb98797a617fe2796097b1d719a4937234375757ad2a3febc04b",
                "md5": "3958fb70b8764223c4f75a9dbcb330d8",
                "sha256": "a1cf720896d2ce998bc8e051d4b4ce0d8bec007aab6243102e8e1d22a0b2fb3f"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3958fb70b8764223c4f75a9dbcb330d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 163000,
            "upload_time": "2024-10-18T15:41:13",
            "upload_time_iso_8601": "2024-10-18T15:41:13.743423Z",
            "url": "https://files.pythonhosted.org/packages/08/83/b2564369fb98797a617fe2796097b1d719a4937234375757ad2a3febc04b/zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c5581d419739c2aab35e19b58bce5498dcb58e6446e5eb69f2d3c748b1c9151",
                "md5": "5224485e47c5b89f3bdbf7661c44745e",
                "sha256": "5aad740b4d4fcbaaae4887823925166ffd062db3b248b3f432198fc287381d1a"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5224485e47c5b89f3bdbf7661c44745e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 823699,
            "upload_time": "2024-10-18T15:41:14",
            "upload_time_iso_8601": "2024-10-18T15:41:14.874384Z",
            "url": "https://files.pythonhosted.org/packages/3c/55/81d419739c2aab35e19b58bce5498dcb58e6446e5eb69f2d3c748b1c9151/zopfli-0.2.3.post1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e9189f07c8ea3c9bc64099b3461627b07a8384302235ee0f357eaa86f98f509",
                "md5": "60d81d6755d2f296d17fc64355c77477",
                "sha256": "6617fb10f9e4393b331941861d73afb119cd847e88e4974bdbe8068ceef3f73f"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60d81d6755d2f296d17fc64355c77477",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 826612,
            "upload_time": "2024-10-18T15:41:16",
            "upload_time_iso_8601": "2024-10-18T15:41:16.069733Z",
            "url": "https://files.pythonhosted.org/packages/9e/91/89f07c8ea3c9bc64099b3461627b07a8384302235ee0f357eaa86f98f509/zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "413146670fc0c7805d42bc89702440fa9b73491d68abbc39e28d687180755178",
                "md5": "3b09da722d9969f406f6192da53dba1d",
                "sha256": "a53b18797cdef27e019db595d66c4b077325afe2fd62145953275f53d84ce40c"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b09da722d9969f406f6192da53dba1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 851148,
            "upload_time": "2024-10-18T15:41:17",
            "upload_time_iso_8601": "2024-10-18T15:41:17.403005Z",
            "url": "https://files.pythonhosted.org/packages/41/31/46670fc0c7805d42bc89702440fa9b73491d68abbc39e28d687180755178/zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "220071ad39277bbb88f9fd20fb786bd3ff2ea4025c53b31652a0da796fb546cd",
                "md5": "eb711aceb873e6f6c7e82398eacdff9c",
                "sha256": "b78008a69300d929ca2efeffec951b64a312e9a811e265ea4a907ab546d79fa6"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb711aceb873e6f6c7e82398eacdff9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1754215,
            "upload_time": "2024-10-18T15:41:18",
            "upload_time_iso_8601": "2024-10-18T15:41:18.661185Z",
            "url": "https://files.pythonhosted.org/packages/22/00/71ad39277bbb88f9fd20fb786bd3ff2ea4025c53b31652a0da796fb546cd/zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d04ee542c508d20c3dfbef1b90fcf726f824f505e725747f777b0b7b7d1deb95",
                "md5": "7f6f1fdf4e7b1a70f274ba649bf50ace",
                "sha256": "0aa5f90d6298bda02a95bc8dc8c3c19004d5a4e44bda00b67ca7431d857b4b54"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7f6f1fdf4e7b1a70f274ba649bf50ace",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1905988,
            "upload_time": "2024-10-18T15:41:19",
            "upload_time_iso_8601": "2024-10-18T15:41:19.933409Z",
            "url": "https://files.pythonhosted.org/packages/d0/4e/e542c508d20c3dfbef1b90fcf726f824f505e725747f777b0b7b7d1deb95/zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baa5817ac1ecc888723e91dc172e8c6eeab9f48a1e52285803b965084e11bbd5",
                "md5": "31a87192ca41d87b9e34e1a71132b8b6",
                "sha256": "2768c877f76c8a0e7519b1c86c93757f3c01492ddde55751e9988afb7eff64e1"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31a87192ca41d87b9e34e1a71132b8b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1835907,
            "upload_time": "2024-10-18T15:41:21",
            "upload_time_iso_8601": "2024-10-18T15:41:21.582760Z",
            "url": "https://files.pythonhosted.org/packages/ba/a5/817ac1ecc888723e91dc172e8c6eeab9f48a1e52285803b965084e11bbd5/zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd352525f90c972d8aafc39784a8c00244eeee8e8221b26cbc576748ee9dc1cd",
                "md5": "a9fed2edd8a235f2b127ca9b80315aa7",
                "sha256": "71390dbd3fbf6ebea9a5d85ffed8c26ee1453ee09248e9b88486e30e0397b775"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a9fed2edd8a235f2b127ca9b80315aa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 82742,
            "upload_time": "2024-10-18T15:41:23",
            "upload_time_iso_8601": "2024-10-18T15:41:23.362065Z",
            "url": "https://files.pythonhosted.org/packages/cd/35/2525f90c972d8aafc39784a8c00244eeee8e8221b26cbc576748ee9dc1cd/zopfli-0.2.3.post1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fc649b27570923956d52d37363e8f5df3a31a61bd7719bb8718527a9df3ae5f",
                "md5": "70b142a0b8f691d82d4bd31479e38e7c",
                "sha256": "a86eb88e06bd87e1fff31dac878965c26b0c26db59ddcf78bb0379a954b120de"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70b142a0b8f691d82d4bd31479e38e7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 99408,
            "upload_time": "2024-10-18T15:41:24",
            "upload_time_iso_8601": "2024-10-18T15:41:24.377487Z",
            "url": "https://files.pythonhosted.org/packages/2f/c6/49b27570923956d52d37363e8f5df3a31a61bd7719bb8718527a9df3ae5f/zopfli-0.2.3.post1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aad7fa32bb88c4a1c1382b06b0ebf026ce7fa6e0f365419ef6316a03ad217bf3",
                "md5": "a7d5910d196a89fa75a65de8123776c3",
                "sha256": "3827170de28faf144992d3d4dcf8f3998fe3c8a6a6f4a08f1d42c2ec6119d2bb"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a7d5910d196a89fa75a65de8123776c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 296371,
            "upload_time": "2024-10-18T15:41:25",
            "upload_time_iso_8601": "2024-10-18T15:41:25.803321Z",
            "url": "https://files.pythonhosted.org/packages/aa/d7/fa32bb88c4a1c1382b06b0ebf026ce7fa6e0f365419ef6316a03ad217bf3/zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e077650ee17075ea488fb8ed004d20d079ababfdfc02ddd62162690d072d257c",
                "md5": "0c5d691491c8e35e16bee1d8313864fa",
                "sha256": "b0ec13f352ea5ae0fc91f98a48540512eed0767d0ec4f7f3cb92d92797983d18"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c5d691491c8e35e16bee1d8313864fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 163876,
            "upload_time": "2024-10-18T15:41:27",
            "upload_time_iso_8601": "2024-10-18T15:41:27.274747Z",
            "url": "https://files.pythonhosted.org/packages/e0/77/650ee17075ea488fb8ed004d20d079ababfdfc02ddd62162690d072d257c/zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6a16a169e3aefa6a92afc53ec71eedc3ebaebce7c519d4611d89d61257b2b03",
                "md5": "eb4a829e152e87539ee516924f092b02",
                "sha256": "5f272186e03ad55e7af09ab78055535c201b1a0bcc2944edb1768298d9c483a4"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb4a829e152e87539ee516924f092b02",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 825929,
            "upload_time": "2024-10-18T15:41:28",
            "upload_time_iso_8601": "2024-10-18T15:41:28.478939Z",
            "url": "https://files.pythonhosted.org/packages/a6/a1/6a169e3aefa6a92afc53ec71eedc3ebaebce7c519d4611d89d61257b2b03/zopfli-0.2.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a431751061a7e70eaa9b5efb88a80aa0aaf18493a467c8036e82b266bf35692",
                "md5": "46c473de5ac5950cf0787bb53571f72d",
                "sha256": "29ea74e72ffa6e291b8c6f2504ce6c146b4fe990c724c1450eb8e4c27fd31431"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "46c473de5ac5950cf0787bb53571f72d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 655151,
            "upload_time": "2024-10-18T15:41:29",
            "upload_time_iso_8601": "2024-10-18T15:41:29.725715Z",
            "url": "https://files.pythonhosted.org/packages/3a/43/1751061a7e70eaa9b5efb88a80aa0aaf18493a467c8036e82b266bf35692/zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3becf9c1ab2b4b4c57a70e1f8687519580fcb5f26576c4a7a6e8fae44f84e4d1",
                "md5": "c05cf807cf1a4333798a9f152c3ac7ee",
                "sha256": "eb45a34f23da4f8bc712b6376ca5396914b0b7c09adbb001dad964eb7f3132f8"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c05cf807cf1a4333798a9f152c3ac7ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 704493,
            "upload_time": "2024-10-18T15:41:31",
            "upload_time_iso_8601": "2024-10-18T15:41:31.234648Z",
            "url": "https://files.pythonhosted.org/packages/3b/ec/f9c1ab2b4b4c57a70e1f8687519580fcb5f26576c4a7a6e8fae44f84e4d1/zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c59d53c2deaaf54155f735da71abbb5cafa00c1f66ae793dfb1d8b07908a1db8",
                "md5": "e416991651d14a8caae29c9330e277d0",
                "sha256": "6482db9876c68faac2d20a96b566ffbf65ddaadd97b222e4e73641f4f8722fc4"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e416991651d14a8caae29c9330e277d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1753342,
            "upload_time": "2024-10-18T15:41:32",
            "upload_time_iso_8601": "2024-10-18T15:41:32.529783Z",
            "url": "https://files.pythonhosted.org/packages/c5/9d/53c2deaaf54155f735da71abbb5cafa00c1f66ae793dfb1d8b07908a1db8/zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4a0cce4664c31276902cd52735ab3a529c5d96d05d36fa1f539bc1d0986a6ec",
                "md5": "ca2043ae052f1ffcc9b1934be0be0d0b",
                "sha256": "95a260cafd56b8fffa679918937401c80bb38e1681c448b988022e4c3610965d"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ca2043ae052f1ffcc9b1934be0be0d0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1904825,
            "upload_time": "2024-10-18T15:41:33",
            "upload_time_iso_8601": "2024-10-18T15:41:33.842863Z",
            "url": "https://files.pythonhosted.org/packages/e4/a0/cce4664c31276902cd52735ab3a529c5d96d05d36fa1f539bc1d0986a6ec/zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd25cc836bea8563ac2497f7e9f5eb804d4b5842e185a1af83fc2b19ab06e73d",
                "md5": "1474e052ce7bd796061ae52e6dea6c53",
                "sha256": "676919fba7311125244eb0c4393679ac5fe856e5864a15d122bd815205369fa0"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1474e052ce7bd796061ae52e6dea6c53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1834458,
            "upload_time": "2024-10-18T15:41:35",
            "upload_time_iso_8601": "2024-10-18T15:41:35.193130Z",
            "url": "https://files.pythonhosted.org/packages/dd/25/cc836bea8563ac2497f7e9f5eb804d4b5842e185a1af83fc2b19ab06e73d/zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73fe8768104cf6fb90c0d8a74b581f7033a534e02101a0c5c9f4c8b8f8a5fce4",
                "md5": "4102e84b89b6c7336887a414660a938c",
                "sha256": "b9026a21b6d41eb0e2e63f5bc1242c3fcc43ecb770963cda99a4307863dac12e"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4102e84b89b6c7336887a414660a938c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 82628,
            "upload_time": "2024-10-18T15:41:36",
            "upload_time_iso_8601": "2024-10-18T15:41:36.902318Z",
            "url": "https://files.pythonhosted.org/packages/73/fe/8768104cf6fb90c0d8a74b581f7033a534e02101a0c5c9f4c8b8f8a5fce4/zopfli-0.2.3.post1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4f48230c23739433b8a4dacedd7edc1012df0fcc7e4dc555187c8acfa2405fd",
                "md5": "6e428a1c48e44eae6bb448a246a0e511",
                "sha256": "3c163911f8bad94b3e1db0a572e7c28ba681a0c91d0002ea1e4fa9264c21ef17"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e428a1c48e44eae6bb448a246a0e511",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 99337,
            "upload_time": "2024-10-18T15:41:37",
            "upload_time_iso_8601": "2024-10-18T15:41:37.872415Z",
            "url": "https://files.pythonhosted.org/packages/d4/f4/8230c23739433b8a4dacedd7edc1012df0fcc7e4dc555187c8acfa2405fd/zopfli-0.2.3.post1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9ccc3cc7e83396d3e864103a1ff0be68ee7033a4e50ac5c415df998d2134a7f",
                "md5": "15321979a6f3abc4693ec1363e0bce81",
                "sha256": "b05296e8bc88c92e2b21e0a9bae4740c1551ee613c1d93a51fd28a7a0b2b6fbb"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "15321979a6f3abc4693ec1363e0bce81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 296328,
            "upload_time": "2024-10-18T15:41:39",
            "upload_time_iso_8601": "2024-10-18T15:41:39.215579Z",
            "url": "https://files.pythonhosted.org/packages/f9/cc/c3cc7e83396d3e864103a1ff0be68ee7033a4e50ac5c415df998d2134a7f/zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d9175e0b2a701a6fe816a4bcd9370a805e1f152c8a6b54269afa147b5085f77",
                "md5": "cdedda04a2078e55dcdf5540407fc10a",
                "sha256": "f12000a6accdd4bf0a3fa6eaa1b1c7a7bc80af0a2edf3f89d770d3dcce1d0e22"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdedda04a2078e55dcdf5540407fc10a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 163880,
            "upload_time": "2024-10-18T15:41:40",
            "upload_time_iso_8601": "2024-10-18T15:41:40.456615Z",
            "url": "https://files.pythonhosted.org/packages/2d/91/75e0b2a701a6fe816a4bcd9370a805e1f152c8a6b54269afa147b5085f77/zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e861dff95be9ebbf5bdd963774f8e5117f957274a8d8e081c58028fb7d624400",
                "md5": "8cfa54677bebd2e26ac03fc463b0be41",
                "sha256": "a241a68581d34d67b40c425cce3d1fd211c092f99d9250947824ccba9f491949"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8cfa54677bebd2e26ac03fc463b0be41",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 825513,
            "upload_time": "2024-10-18T15:41:41",
            "upload_time_iso_8601": "2024-10-18T15:41:41.584534Z",
            "url": "https://files.pythonhosted.org/packages/e8/61/dff95be9ebbf5bdd963774f8e5117f957274a8d8e081c58028fb7d624400/zopfli-0.2.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91dbe3057bfdb21855e4db2821c39f67aaedcb39e8bf5c490985009acbaf3d5a",
                "md5": "18163f23da6b9e19a204723d7e96ad5b",
                "sha256": "3657e416ffb8f31d9d3424af12122bb251befae109f2e271d87d825c92fc5b7b"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "18163f23da6b9e19a204723d7e96ad5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 654716,
            "upload_time": "2024-10-18T15:41:42",
            "upload_time_iso_8601": "2024-10-18T15:41:42.858274Z",
            "url": "https://files.pythonhosted.org/packages/91/db/e3057bfdb21855e4db2821c39f67aaedcb39e8bf5c490985009acbaf3d5a/zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9e111ed92cf3043a2e89b4a0ffcdcf67084da0f84e7b3c927a862a1e2510546",
                "md5": "f1b3e9ce075efff7f617813f54afbc85",
                "sha256": "4915a41375bdee4db749ecd07d985a0486eb688a6619f713b7bf6fbfd145e960"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1b3e9ce075efff7f617813f54afbc85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 704138,
            "upload_time": "2024-10-18T15:41:44",
            "upload_time_iso_8601": "2024-10-18T15:41:44.240505Z",
            "url": "https://files.pythonhosted.org/packages/b9/e1/11ed92cf3043a2e89b4a0ffcdcf67084da0f84e7b3c927a862a1e2510546/zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3b448a44ab8a9e80a9c17527397852a6e1f5cc7f1a7d8dcc9d40d6912874ce3",
                "md5": "ce632a1eaf0e72fbc6afcede590fee1e",
                "sha256": "bbe429fc50686bb2a2608a30843e36fbaa123462a5284f136c7d9e0145220bfd"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ce632a1eaf0e72fbc6afcede590fee1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1753103,
            "upload_time": "2024-10-18T15:41:45",
            "upload_time_iso_8601": "2024-10-18T15:41:45.772842Z",
            "url": "https://files.pythonhosted.org/packages/a3/b4/48a44ab8a9e80a9c17527397852a6e1f5cc7f1a7d8dcc9d40d6912874ce3/zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dac1fd0ebe0766854610f6d45679745af0220a33b4c478aa1333d48b060a108c",
                "md5": "a6e6ce5b05e43adede2890ee2213b4fb",
                "sha256": "2345e713260a350bea0b01a816a469ea356bc2d63d009a0d777691ecbbcf7493"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a6e6ce5b05e43adede2890ee2213b4fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1904816,
            "upload_time": "2024-10-18T15:41:47",
            "upload_time_iso_8601": "2024-10-18T15:41:47.337740Z",
            "url": "https://files.pythonhosted.org/packages/da/c1/fd0ebe0766854610f6d45679745af0220a33b4c478aa1333d48b060a108c/zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40b104262314c2c9a1f39f74b8a9d4ba4e31496041ce67e930e39fd5d1fbf798",
                "md5": "d4f02e12212738054dd879acdf7d8295",
                "sha256": "fc39f5c27f962ec8660d8d20c24762431131b5d8c672b44b0a54cf2b5bcde9b9"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4f02e12212738054dd879acdf7d8295",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1834332,
            "upload_time": "2024-10-18T15:41:48",
            "upload_time_iso_8601": "2024-10-18T15:41:48.942541Z",
            "url": "https://files.pythonhosted.org/packages/40/b1/04262314c2c9a1f39f74b8a9d4ba4e31496041ce67e930e39fd5d1fbf798/zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08a6e30077630b027e9ee84a765447f03c8b5c323a88da567fed0882e9fe4f09",
                "md5": "469055e40ad561ad838834b9c8ddfbf7",
                "sha256": "9a6aec38a989bad7ddd1ef53f1265699e49e294d08231b5313d61293f3cd6237"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "469055e40ad561ad838834b9c8ddfbf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 82630,
            "upload_time": "2024-10-18T15:41:50",
            "upload_time_iso_8601": "2024-10-18T15:41:50.206431Z",
            "url": "https://files.pythonhosted.org/packages/08/a6/e30077630b027e9ee84a765447f03c8b5c323a88da567fed0882e9fe4f09/zopfli-0.2.3.post1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdc2fa6c4498d16c09e4700e0e92865b4d42ec66c089ea57d92757ad0ebfc556",
                "md5": "94d15633cd4f67da82f1f5c7c5cca79b",
                "sha256": "b3df42f52502438ee973042cc551877d24619fa1cd38ef7b7e9ac74200daca8b"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "94d15633cd4f67da82f1f5c7c5cca79b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 99338,
            "upload_time": "2024-10-18T15:41:51",
            "upload_time_iso_8601": "2024-10-18T15:41:51.210320Z",
            "url": "https://files.pythonhosted.org/packages/bd/c2/fa6c4498d16c09e4700e0e92865b4d42ec66c089ea57d92757ad0ebfc556/zopfli-0.2.3.post1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da9262942d9b44b3d56e2d223924b759e2c2219f925da15a8acb103061e362ea",
                "md5": "8fda28ba57c3b7f92095ffcf7d134d93",
                "sha256": "4c1226a7e2c7105ac31503a9bb97454743f55d88164d6d46bc138051b77f609b"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fda28ba57c3b7f92095ffcf7d134d93",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 155889,
            "upload_time": "2024-10-18T15:41:52",
            "upload_time_iso_8601": "2024-10-18T15:41:52.781165Z",
            "url": "https://files.pythonhosted.org/packages/da/92/62942d9b44b3d56e2d223924b759e2c2219f925da15a8acb103061e362ea/zopfli-0.2.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61db9502c4256f126ccf0fc4686f1f59f2696cdaec079d7d57231bf120422ba6",
                "md5": "a3620fcde0d12351c701b1613c044ab0",
                "sha256": "48dba9251060289101343110ab47c0756f66f809bb4d1ddbb6d5c7e7752115c5"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a3620fcde0d12351c701b1613c044ab0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 130129,
            "upload_time": "2024-10-18T15:41:54",
            "upload_time_iso_8601": "2024-10-18T15:41:54.255290Z",
            "url": "https://files.pythonhosted.org/packages/61/db/9502c4256f126ccf0fc4686f1f59f2696cdaec079d7d57231bf120422ba6/zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a37d1e8c36825798269a9271ac4477b592622fddc2948772fd2fcaceb54a7178",
                "md5": "4ae6a0d5cf2382072cbd3fbbfbf5858d",
                "sha256": "89899641d4de97dbad8e0cde690040d078b6aea04066dacaab98e0b5a23573f2"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ae6a0d5cf2382072cbd3fbbfbf5858d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 126242,
            "upload_time": "2024-10-18T15:41:55",
            "upload_time_iso_8601": "2024-10-18T15:41:55.302654Z",
            "url": "https://files.pythonhosted.org/packages/a3/7d/1e8c36825798269a9271ac4477b592622fddc2948772fd2fcaceb54a7178/zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e6a2c1ae9972f2745c074938d6a610e71ed47c36f911220d592f1e403822084",
                "md5": "e422c68cce78eb821df55aac5f6515cb",
                "sha256": "3654bfc927bc478b1c3f3ff5056ed7b20a1a37fa108ca503256d0a699c03bbb1"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e422c68cce78eb821df55aac5f6515cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 99378,
            "upload_time": "2024-10-18T15:41:56",
            "upload_time_iso_8601": "2024-10-18T15:41:56.390031Z",
            "url": "https://files.pythonhosted.org/packages/7e/6a/2c1ae9972f2745c074938d6a610e71ed47c36f911220d592f1e403822084/zopfli-0.2.3.post1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b75ff8a5451ee32054a1c54c47ff3e052bcf4f5d66808df9854931935ae8b56f",
                "md5": "3bc14494d3d45c29d0835dfc3a711934",
                "sha256": "c4278d1873ce6e803e5d4f8d702fd3026bd67fca744aa98881324d1157ddf748"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bc14494d3d45c29d0835dfc3a711934",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 150783,
            "upload_time": "2024-10-18T15:41:57",
            "upload_time_iso_8601": "2024-10-18T15:41:57.458876Z",
            "url": "https://files.pythonhosted.org/packages/b7/5f/f8a5451ee32054a1c54c47ff3e052bcf4f5d66808df9854931935ae8b56f/zopfli-0.2.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e87d0dae45684b9aa9914671326e28030aaa33e5b01de847187b27cb61301a1",
                "md5": "b9ac9e0ba843d30cf77e423a3f00ea6c",
                "sha256": "1d8cc06605519e82b16df090e17cb3990d1158861b2872c3117f1168777b81e4"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9ac9e0ba843d30cf77e423a3f00ea6c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 99367,
            "upload_time": "2024-10-18T15:41:58",
            "upload_time_iso_8601": "2024-10-18T15:41:58.594806Z",
            "url": "https://files.pythonhosted.org/packages/1e/87/d0dae45684b9aa9914671326e28030aaa33e5b01de847187b27cb61301a1/zopfli-0.2.3.post1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a185cb5ef140def15a833861139b72d9f1afb888132e6b09cb2f40c88935843",
                "md5": "afe8769d09c90f67e1b000be0d5e3391",
                "sha256": "1f990634fd5c5c8ced8edddd8bd45fab565123b4194d6841e01811292650acae"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afe8769d09c90f67e1b000be0d5e3391",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 155882,
            "upload_time": "2024-10-18T15:41:59",
            "upload_time_iso_8601": "2024-10-18T15:41:59.638613Z",
            "url": "https://files.pythonhosted.org/packages/6a/18/5cb5ef140def15a833861139b72d9f1afb888132e6b09cb2f40c88935843/zopfli-0.2.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "737e324c6232a425c514785bd5df6976c5a906c295d1cd854072e3204d4fbaec",
                "md5": "18ccc6486899cd85cf0a5c7194216b71",
                "sha256": "91a2327a4d7e77471fa4fbb26991c6de4a738c6fc6a33e09bb25f56a870a4b7b"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "18ccc6486899cd85cf0a5c7194216b71",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 130123,
            "upload_time": "2024-10-18T15:42:00",
            "upload_time_iso_8601": "2024-10-18T15:42:00.815228Z",
            "url": "https://files.pythonhosted.org/packages/73/7e/324c6232a425c514785bd5df6976c5a906c295d1cd854072e3204d4fbaec/zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f00ddf0fe119da7ac80a42ff8e9bb94701f5d7bb21067c38b20ee52d48e46d41",
                "md5": "fadb63ecfda7df2c77615bb31377ebff",
                "sha256": "8fbe5bcf10d01aab3513550f284c09fef32f342b36f56bfae2120a9c4d12c130"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fadb63ecfda7df2c77615bb31377ebff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 126239,
            "upload_time": "2024-10-18T15:42:01",
            "upload_time_iso_8601": "2024-10-18T15:42:01.949676Z",
            "url": "https://files.pythonhosted.org/packages/f0/0d/df0fe119da7ac80a42ff8e9bb94701f5d7bb21067c38b20ee52d48e46d41/zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c393b06e0b4a13c5e78d9cc3a7627b4133f72daf2dfa81b6d74f444220b01c62",
                "md5": "d9159e465bc4f9148a31ac9cce239038",
                "sha256": "34a99592f3d9eb6f737616b5bd74b48a589fdb3cb59a01a50d636ea81d6af272"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9159e465bc4f9148a31ac9cce239038",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 99367,
            "upload_time": "2024-10-18T15:42:04",
            "upload_time_iso_8601": "2024-10-18T15:42:04.616338Z",
            "url": "https://files.pythonhosted.org/packages/c3/93/b06e0b4a13c5e78d9cc3a7627b4133f72daf2dfa81b6d74f444220b01c62/zopfli-0.2.3.post1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e7ca8f6696e694709e2abcbccd27d05ef761e9b6efae217e11d977471555b62",
                "md5": "2c42e8d5918059b84a42c0d53c5a6852",
                "sha256": "96484dc0f48be1c5d7ae9f38ed1ce41e3675fd506b27c11a6607f14b49101e99"
            },
            "downloads": -1,
            "filename": "zopfli-0.2.3.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "2c42e8d5918059b84a42c0d53c5a6852",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 175629,
            "upload_time": "2024-10-18T15:42:05",
            "upload_time_iso_8601": "2024-10-18T15:42:05.946414Z",
            "url": "https://files.pythonhosted.org/packages/5e/7c/a8f6696e694709e2abcbccd27d05ef761e9b6efae217e11d977471555b62/zopfli-0.2.3.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-18 15:42:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fonttools",
    "github_project": "py-zopfli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zopfli"
}
        
Elapsed time: 0.37415s