backports.zstd


Namebackports.zstd JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
SummaryBackport of compression.zstd
upload_time2025-07-17 21:29:33
maintainerNone
docs_urlNone
authorNone
requires_python<3.14,>=3.9
licenseNone
keywords backport backports pep-784 zstd
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center" size="15px">

# backports.zstd

Backport of [PEP-784 “adding Zstandard to the standard library”][PEP-784]

[![GitHub build status](https://img.shields.io/github/actions/workflow/status/rogdham/backports.zstd/build.yml?branch=master)](https://github.com/rogdham/backports.zstd/actions?query=branch:master)
[![Release on PyPI](https://img.shields.io/pypi/v/backports.zstd)](https://pypi.org/project/backports.zstd/)

---

[📖 PEP-784][PEP-784]&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;[📃 Changelog](./CHANGELOG.md)&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;[🎯 Roadmap](https://github.com/Rogdham/backports.zstd/issues/2)

[PEP-784]: https://peps.python.org/pep-0784/

</div>

---

## Install

Add the following dependency to your project:

```
backports.zstd ; python_version<'3.14'
```

## Usage

When importing a module needing Zstandard support, use a conditional import based on the
version of Python. See below for examples.

### zstd

```python
import sys

if sys.version_info >= (3, 14):
    from compression import zstd
else:
    from backports import zstd


# use the zstd module, for example:
zstd.compress(b"Hello, world!")
```

Refer to the [official Python documentation][doc-zstd] for usage of the module.

[doc-zstd]: https://docs.python.org/3.14/library/compression.zstd.html

### tarfile

```python
import sys

if sys.version_info >= (3, 14):
    import tarfile
else:
    from backports.zstd import tarfile


# use the tarfile module, for example:
with tarfile.open("archive.tar.zst") as tar:
    tar.list()
```

This `tarfile` modules is backported from Python 3.14 and includes Zstandard-specific
features such as: explicit modes for opening files (e.g. `r:zstd`), specific arguments
(e.g. `zstd_dict`)… refer to the [official Python documentation][doc-tarfile] for more
info.

[doc-tarfile]: https://docs.python.org/3.14/library/tarfile.html

Moreover, the CLI is available as well: `python -m backports.zstd.tarfile`.

### zipfile

```python
import sys

if sys.version_info >= (3, 14):
    import zipfile
else:
    from backports.zstd import zipfile


# use the zipfile module, for example:
with zipfile.ZipFile("archive.zip", "w") as zf:
    zf.writestr("hello.txt", "Hi!", zipfile.ZIP_ZSTANDARD)
```

This `zipfile` modules is backported from Python 3.14 and includes Zstandard-specific
features such as the constant `ZIP_ZSTANDARD` to be used for `compress_type`… refer to
the [official Python documentation][doc-zipfile] for more info.

[doc-zipfile]: https://docs.python.org/3.14/library/zipfile.html

Moreover, the CLI is available as well: `python -m backports.zstd.zipfile`.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "backports.zstd",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.9",
    "maintainer_email": null,
    "keywords": "backport, backports, pep-784, zstd",
    "author": null,
    "author_email": "Rogdham <contact@rogdham.net>",
    "download_url": "https://files.pythonhosted.org/packages/c9/cc/80903746f011b400b188319666e091e92b7ed4a879a182c07f8fe48b837e/backports_zstd-0.3.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\" size=\"15px\">\n\n# backports.zstd\n\nBackport of [PEP-784 \u201cadding Zstandard to the standard library\u201d][PEP-784]\n\n[![GitHub build status](https://img.shields.io/github/actions/workflow/status/rogdham/backports.zstd/build.yml?branch=master)](https://github.com/rogdham/backports.zstd/actions?query=branch:master)\n[![Release on PyPI](https://img.shields.io/pypi/v/backports.zstd)](https://pypi.org/project/backports.zstd/)\n\n---\n\n[\ud83d\udcd6\u00a0PEP-784][PEP-784]&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;[\ud83d\udcc3 Changelog](./CHANGELOG.md)&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;[\ud83c\udfaf Roadmap](https://github.com/Rogdham/backports.zstd/issues/2)\n\n[PEP-784]: https://peps.python.org/pep-0784/\n\n</div>\n\n---\n\n## Install\n\nAdd the following dependency to your project:\n\n```\nbackports.zstd ; python_version<'3.14'\n```\n\n## Usage\n\nWhen importing a module needing Zstandard support, use a conditional import based on the\nversion of Python. See below for examples.\n\n### zstd\n\n```python\nimport sys\n\nif sys.version_info >= (3, 14):\n    from compression import zstd\nelse:\n    from backports import zstd\n\n\n# use the zstd module, for example:\nzstd.compress(b\"Hello, world!\")\n```\n\nRefer to the [official Python documentation][doc-zstd] for usage of the module.\n\n[doc-zstd]: https://docs.python.org/3.14/library/compression.zstd.html\n\n### tarfile\n\n```python\nimport sys\n\nif sys.version_info >= (3, 14):\n    import tarfile\nelse:\n    from backports.zstd import tarfile\n\n\n# use the tarfile module, for example:\nwith tarfile.open(\"archive.tar.zst\") as tar:\n    tar.list()\n```\n\nThis `tarfile` modules is backported from Python 3.14 and includes Zstandard-specific\nfeatures such as: explicit modes for opening files (e.g. `r:zstd`), specific arguments\n(e.g. `zstd_dict`)\u2026 refer to the [official Python documentation][doc-tarfile] for more\ninfo.\n\n[doc-tarfile]: https://docs.python.org/3.14/library/tarfile.html\n\nMoreover, the CLI is available as well: `python -m backports.zstd.tarfile`.\n\n### zipfile\n\n```python\nimport sys\n\nif sys.version_info >= (3, 14):\n    import zipfile\nelse:\n    from backports.zstd import zipfile\n\n\n# use the zipfile module, for example:\nwith zipfile.ZipFile(\"archive.zip\", \"w\") as zf:\n    zf.writestr(\"hello.txt\", \"Hi!\", zipfile.ZIP_ZSTANDARD)\n```\n\nThis `zipfile` modules is backported from Python 3.14 and includes Zstandard-specific\nfeatures such as the constant `ZIP_ZSTANDARD` to be used for `compress_type`\u2026 refer to\nthe [official Python documentation][doc-zipfile] for more info.\n\n[doc-zipfile]: https://docs.python.org/3.14/library/zipfile.html\n\nMoreover, the CLI is available as well: `python -m backports.zstd.zipfile`.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Backport of compression.zstd",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/rogdham/backports.zstd",
        "Source": "https://github.com/rogdham/backports.zstd"
    },
    "split_keywords": [
        "backport",
        " backports",
        " pep-784",
        " zstd"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3d93dc9317ad19a7aa19d0d0764c51f95aa92803f0aacd1467e01d937be1225",
                "md5": "1558e7592ea35c5dbb37552d9ebb3f10",
                "sha256": "04da179e5a3e07565839a95cbe11b187c8420c92fd73f7952f1851d64bfdb688"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1558e7592ea35c5dbb37552d9ebb3f10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 427266,
            "upload_time": "2025-07-17T21:27:25",
            "upload_time_iso_8601": "2025-07-17T21:27:25.562525Z",
            "url": "https://files.pythonhosted.org/packages/c3/d9/3dc9317ad19a7aa19d0d0764c51f95aa92803f0aacd1467e01d937be1225/backports_zstd-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ace4fa49bd70cb8f21783ad32c712e0912a00a8398b470edd9c3b0d0b28653e2",
                "md5": "b88a507bbf8d878e949f5a94e28bead0",
                "sha256": "04531da97c2ae3125821f99db59ab136f6a1238d2fd069cd6a0fefa679cb6c01"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b88a507bbf8d878e949f5a94e28bead0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 347154,
            "upload_time": "2025-07-17T21:27:27",
            "upload_time_iso_8601": "2025-07-17T21:27:27.172695Z",
            "url": "https://files.pythonhosted.org/packages/ac/e4/fa49bd70cb8f21783ad32c712e0912a00a8398b470edd9c3b0d0b28653e2/backports_zstd-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13dbf179893c2231dcb829524ec5d49c3611ae8a24faa4bad2dec5eb9ad85d49",
                "md5": "523c45b55e2fbedcf5a89a2b77f41698",
                "sha256": "0bb17c87c7c33028fc0aa8608da03d4fdfe3f6051f9d3e27e25c012ae941a37c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "523c45b55e2fbedcf5a89a2b77f41698",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 488616,
            "upload_time": "2025-07-17T21:27:28",
            "upload_time_iso_8601": "2025-07-17T21:27:28.678528Z",
            "url": "https://files.pythonhosted.org/packages/13/db/f179893c2231dcb829524ec5d49c3611ae8a24faa4bad2dec5eb9ad85d49/backports_zstd-0.3.0-cp310-cp310-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "636c671743eed7e9eba5be92781b04da01c400c355d83ab675eb2a31e28b7cf1",
                "md5": "654b1fe9249143ff8e7f1cf178685884",
                "sha256": "99da1e35dd78b45fd7269f05e9b5175edaad8e41040ff61771ba7b6e7f26e7d3"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "654b1fe9249143ff8e7f1cf178685884",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 456807,
            "upload_time": "2025-07-17T21:27:30",
            "upload_time_iso_8601": "2025-07-17T21:27:30.358691Z",
            "url": "https://files.pythonhosted.org/packages/63/6c/671743eed7e9eba5be92781b04da01c400c355d83ab675eb2a31e28b7cf1/backports_zstd-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ac99a6ad29834b565ff7d9935b24c9891273ec925197d29f0ad21662c245935",
                "md5": "65a030fe38601226b7f770e4cdc273b6",
                "sha256": "6a626f251adc01187787d2cbc0d6d65826bc3199b4aa73ee1ecf7107d3a7706c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "65a030fe38601226b7f770e4cdc273b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 562461,
            "upload_time": "2025-07-17T21:27:31",
            "upload_time_iso_8601": "2025-07-17T21:27:31.939213Z",
            "url": "https://files.pythonhosted.org/packages/9a/c9/9a6ad29834b565ff7d9935b24c9891273ec925197d29f0ad21662c245935/backports_zstd-0.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a43bdf13bc8edbf54d610400439c6a7b2fe0d3bd236a6fe20be03ca73a14ea2",
                "md5": "74296ab3272e6ba26bc00119d7d79b1f",
                "sha256": "b98a09fffd3e291ef983f3c7c938ba82e3acd9eeda3809fd83269b4ed32b89be"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "74296ab3272e6ba26bc00119d7d79b1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 622076,
            "upload_time": "2025-07-17T21:27:33",
            "upload_time_iso_8601": "2025-07-17T21:27:33.677853Z",
            "url": "https://files.pythonhosted.org/packages/3a/43/bdf13bc8edbf54d610400439c6a7b2fe0d3bd236a6fe20be03ca73a14ea2/backports_zstd-0.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fea05b4f0dba5ddc864c2d8516f7c6e3153f505550423360287355cb140a4e3",
                "md5": "47620663e078a9b8c012171832e8ae7b",
                "sha256": "878cc5f99066a2c2a513ad267d40477cdf999c8803c800d71e6f8cf4aaa3ce88"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47620663e078a9b8c012171832e8ae7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 472229,
            "upload_time": "2025-07-17T21:27:35",
            "upload_time_iso_8601": "2025-07-17T21:27:35.226200Z",
            "url": "https://files.pythonhosted.org/packages/9f/ea/05b4f0dba5ddc864c2d8516f7c6e3153f505550423360287355cb140a4e3/backports_zstd-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b217f33c5e047ff7e3f731ae012694bc10e083876f7f5fb928cfeb3c2f49505c",
                "md5": "dbd738ceddbc3142d072ecb1f890cea2",
                "sha256": "976d25b5daa14ecc0d3d6b36ee84d262f7a18aeb7ec728e59b6fd1cf6d551c13"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dbd738ceddbc3142d072ecb1f890cea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 462803,
            "upload_time": "2025-07-17T21:27:36",
            "upload_time_iso_8601": "2025-07-17T21:27:36.442240Z",
            "url": "https://files.pythonhosted.org/packages/b2/17/f33c5e047ff7e3f731ae012694bc10e083876f7f5fb928cfeb3c2f49505c/backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "166b698240de4a591ed7ed9d6839c80bb760ead419a1fc9b3813cd3f5a6e8114",
                "md5": "baba13a68f00a09e51e1db569fbdd001",
                "sha256": "05ad0892bbd7a0091241205176a6e24e5ce15c6032ff42d09f316d7d84a1afbd"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "baba13a68f00a09e51e1db569fbdd001",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 490634,
            "upload_time": "2025-07-17T21:27:38",
            "upload_time_iso_8601": "2025-07-17T21:27:38.046588Z",
            "url": "https://files.pythonhosted.org/packages/16/6b/698240de4a591ed7ed9d6839c80bb760ead419a1fc9b3813cd3f5a6e8114/backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2f0cd2e6dbc698abbd044f52eb3c1bfbcf29959d873e0e7ecb394d405fd7e4a",
                "md5": "0ce30d06b3e1624e86746904ce9251d6",
                "sha256": "4bb712639ab618f8e70d5b587d9b4697d19cc072350e3d5ae1ae2434fddcfbf8"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0ce30d06b3e1624e86746904ce9251d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 566796,
            "upload_time": "2025-07-17T21:27:39",
            "upload_time_iso_8601": "2025-07-17T21:27:39.790272Z",
            "url": "https://files.pythonhosted.org/packages/a2/f0/cd2e6dbc698abbd044f52eb3c1bfbcf29959d873e0e7ecb394d405fd7e4a/backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3df98639eaec7e5d3e7631f2221bea3ff3806981ab49c3e659e8e2522297f78",
                "md5": "c28e8ba1ebdf80025a5067103544d466",
                "sha256": "8dc9e17daff3f373d1c881148ddbba5f401b850973cffb4abb3772842b6107e0"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "c28e8ba1ebdf80025a5067103544d466",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 612678,
            "upload_time": "2025-07-17T21:27:41",
            "upload_time_iso_8601": "2025-07-17T21:27:41.481829Z",
            "url": "https://files.pythonhosted.org/packages/f3/df/98639eaec7e5d3e7631f2221bea3ff3806981ab49c3e659e8e2522297f78/backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13bec2a8d8f2022c6a0dbe2afeea14e3e03cd1bc3934f55e98a3060b18d68086",
                "md5": "1f8d8b2aef5f494ce8c2f2d74e6151b6",
                "sha256": "e92bac86e2098b3e07a98bb973ef49fe20f34f0164197b145ef4fcec1be83eea"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f8d8b2aef5f494ce8c2f2d74e6151b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 476335,
            "upload_time": "2025-07-17T21:27:42",
            "upload_time_iso_8601": "2025-07-17T21:27:42.870163Z",
            "url": "https://files.pythonhosted.org/packages/13/be/c2a8d8f2022c6a0dbe2afeea14e3e03cd1bc3934f55e98a3060b18d68086/backports_zstd-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da069b7631fd7805dc034c3cd795a6b2e8d34c8f2ed1fbc8f9aca9b2c759f6ae",
                "md5": "40ca480e2cf8fe6d3d95fb5b99b47d0a",
                "sha256": "e34d201f0f61cdd3909c736156d51c7dd6df5d64e9c6d1acf311381692a67d16"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "40ca480e2cf8fe6d3d95fb5b99b47d0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 269861,
            "upload_time": "2025-07-17T21:27:44",
            "upload_time_iso_8601": "2025-07-17T21:27:44.200180Z",
            "url": "https://files.pythonhosted.org/packages/da/06/9b7631fd7805dc034c3cd795a6b2e8d34c8f2ed1fbc8f9aca9b2c759f6ae/backports_zstd-0.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36a9df7df1508c3f055ab1b580504b077a5cb53dee63ea2a5bd59da2c591789f",
                "md5": "a725f96a9881fe044c026b516d53206e",
                "sha256": "e696d0346d09565622b1fb8039db803ef8021633bf231a5a3d2f5e8223fe7dc4"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a725f96a9881fe044c026b516d53206e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 294757,
            "upload_time": "2025-07-17T21:27:45",
            "upload_time_iso_8601": "2025-07-17T21:27:45.572404Z",
            "url": "https://files.pythonhosted.org/packages/36/a9/df7df1508c3f055ab1b580504b077a5cb53dee63ea2a5bd59da2c591789f/backports_zstd-0.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1feef1d85a6da8d1e2ad17df551c21467f29b98db739aaf237464a1f7d4c742e",
                "md5": "aafe1077346f5117f68d55654a0d711d",
                "sha256": "cfe19991d016fe700308ad129aed9dda37db1c1d8d279ab5c0d97d845634fd8d"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "aafe1077346f5117f68d55654a0d711d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 271580,
            "upload_time": "2025-07-17T21:27:46",
            "upload_time_iso_8601": "2025-07-17T21:27:46.816233Z",
            "url": "https://files.pythonhosted.org/packages/1f/ee/f1d85a6da8d1e2ad17df551c21467f29b98db739aaf237464a1f7d4c742e/backports_zstd-0.3.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93de37893dfb88c2094c04d0558ed73abf70254a26f97800f34419072c864ef4",
                "md5": "d534852bd0bb2a35faf4cbae5f853648",
                "sha256": "ad3aa8c07b3d14bf341d8ec9b9f8bb5f5e4832fa3440162766bf784aab840db2"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d534852bd0bb2a35faf4cbae5f853648",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 427268,
            "upload_time": "2025-07-17T21:27:48",
            "upload_time_iso_8601": "2025-07-17T21:27:48.371954Z",
            "url": "https://files.pythonhosted.org/packages/93/de/37893dfb88c2094c04d0558ed73abf70254a26f97800f34419072c864ef4/backports_zstd-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "739259aa888168abefc6607495b66a9f99929591c161adfac58a99736ac99de1",
                "md5": "a89857d7deb9061e0495604973e01d66",
                "sha256": "a001f30fe1efd9ac8a06bb40cf20546344eb3f3e29dfe0f2e3e5a62340e0280f"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a89857d7deb9061e0495604973e01d66",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 347152,
            "upload_time": "2025-07-17T21:27:49",
            "upload_time_iso_8601": "2025-07-17T21:27:49.576710Z",
            "url": "https://files.pythonhosted.org/packages/73/92/59aa888168abefc6607495b66a9f99929591c161adfac58a99736ac99de1/backports_zstd-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f33168658e836a5da75211ba906cf4170386631d301e0804e95a84507ab310c5",
                "md5": "04c90ce7f31fe799d601ece8f8a2508a",
                "sha256": "158dcd54bf3a48001b9ca3b57d71e19867b5ff6b5b093df805df688adbc9354a"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "04c90ce7f31fe799d601ece8f8a2508a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 488630,
            "upload_time": "2025-07-17T21:27:50",
            "upload_time_iso_8601": "2025-07-17T21:27:50.910342Z",
            "url": "https://files.pythonhosted.org/packages/f3/31/68658e836a5da75211ba906cf4170386631d301e0804e95a84507ab310c5/backports_zstd-0.3.0-cp311-cp311-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bbd5dce3e14e65f6a6d97f784ddcf73a799fa294cc167f2de03e29ee2cb5250",
                "md5": "89d26415631526437b82641edf8d5e70",
                "sha256": "904b0ef8c01d79599d44ef163747a8f187b1ee2cc31374751e10d11aec3ae46b"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "89d26415631526437b82641edf8d5e70",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 456808,
            "upload_time": "2025-07-17T21:27:52",
            "upload_time_iso_8601": "2025-07-17T21:27:52.643003Z",
            "url": "https://files.pythonhosted.org/packages/7b/bd/5dce3e14e65f6a6d97f784ddcf73a799fa294cc167f2de03e29ee2cb5250/backports_zstd-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7d43ec925fa222734985d13e1b328a8286424f139e6c35e48cc130b7f26ea1e",
                "md5": "485133531b77f0a54afca9b94ca0d163",
                "sha256": "263dd25c4bd8a86f3beeaf88c74a2fa9b0a2776e0398cb649e8e3bb39753fdcd"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "485133531b77f0a54afca9b94ca0d163",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 562460,
            "upload_time": "2025-07-17T21:27:53",
            "upload_time_iso_8601": "2025-07-17T21:27:53.924161Z",
            "url": "https://files.pythonhosted.org/packages/c7/d4/3ec925fa222734985d13e1b328a8286424f139e6c35e48cc130b7f26ea1e/backports_zstd-0.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3120ceb9a6aac8accfe552400b9e1360b72ca34c408c7f2df1e8fc10fa68f07",
                "md5": "637d56b4a603213cb1c5a73ed73835ec",
                "sha256": "9c06ddc7477a8700c44c3d4a4c1be4a43a044ce5fa023acf12ef5ff6d091d6a3"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "637d56b4a603213cb1c5a73ed73835ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 622123,
            "upload_time": "2025-07-17T21:27:55",
            "upload_time_iso_8601": "2025-07-17T21:27:55.276066Z",
            "url": "https://files.pythonhosted.org/packages/a3/12/0ceb9a6aac8accfe552400b9e1360b72ca34c408c7f2df1e8fc10fa68f07/backports_zstd-0.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61ec66c6a29224d4d4b9243476c14471ea62359ce07b9b286a2e5974c0a9cbba",
                "md5": "47a1060e69b499d588ae1cf54f24d167",
                "sha256": "7c9eab7853e7b00b5c9bd5563757be9181c56d958c0a6df9543115a5a0b5fee6"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47a1060e69b499d588ae1cf54f24d167",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 472219,
            "upload_time": "2025-07-17T21:27:56",
            "upload_time_iso_8601": "2025-07-17T21:27:56.922216Z",
            "url": "https://files.pythonhosted.org/packages/61/ec/66c6a29224d4d4b9243476c14471ea62359ce07b9b286a2e5974c0a9cbba/backports_zstd-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e373e3f7f023a2b25bd10a12f4901c984430968c4a4f1c21aa700ef722d4d97",
                "md5": "eb094a194356ec735dec98f4676744f0",
                "sha256": "5d6fbea75b679021e72dffb9e3edb58b69c1438ef555ba9eaaf00edb1080a04b"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb094a194356ec735dec98f4676744f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 462811,
            "upload_time": "2025-07-17T21:27:58",
            "upload_time_iso_8601": "2025-07-17T21:27:58.152119Z",
            "url": "https://files.pythonhosted.org/packages/2e/37/3e3f7f023a2b25bd10a12f4901c984430968c4a4f1c21aa700ef722d4d97/backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8da0481c051991abfcfca4961f795b1b93a6e012b8fe4f31d964a40395d6b4fe",
                "md5": "3f28606285c59709bf8a309208d00dbf",
                "sha256": "d6d518a044e16d0875dae29396a28c705a2868002595554ce81a2a75ba824d2c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3f28606285c59709bf8a309208d00dbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 490637,
            "upload_time": "2025-07-17T21:27:59",
            "upload_time_iso_8601": "2025-07-17T21:27:59.754955Z",
            "url": "https://files.pythonhosted.org/packages/8d/a0/481c051991abfcfca4961f795b1b93a6e012b8fe4f31d964a40395d6b4fe/backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b574f2d2a97eafe2ed778535b4ead63e2f547ded0173fcb4d1d45eb36495cebd",
                "md5": "c67589d9948610cdcec22ac37cd76822",
                "sha256": "52e4e410f3cf3986ec61ad4689fd81828d25ad38281dd8fdb002babc3f2615b8"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c67589d9948610cdcec22ac37cd76822",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 566808,
            "upload_time": "2025-07-17T21:28:01",
            "upload_time_iso_8601": "2025-07-17T21:28:01.040132Z",
            "url": "https://files.pythonhosted.org/packages/b5/74/f2d2a97eafe2ed778535b4ead63e2f547ded0173fcb4d1d45eb36495cebd/backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d13b0b1b7b8a13b635d5cd0c72999ec17d53003be8a9db7e96e0b1d8e05c3f5e",
                "md5": "ad069c21222c05bced8d1d8d0e2cd5a9",
                "sha256": "9e64c46babccdb1cb691d9953816023d84f422c694dddd2b317036257e4b03aa"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "ad069c21222c05bced8d1d8d0e2cd5a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 612648,
            "upload_time": "2025-07-17T21:28:03",
            "upload_time_iso_8601": "2025-07-17T21:28:03.661980Z",
            "url": "https://files.pythonhosted.org/packages/d1/3b/0b1b7b8a13b635d5cd0c72999ec17d53003be8a9db7e96e0b1d8e05c3f5e/backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80f61c7f6a530bdfdfd4b3ede0db7ad655453f7833f20f12a419259587f992c8",
                "md5": "f2ab3ec3984059e22a40d86a5d9fe8b5",
                "sha256": "33c4899812f3072745c19d3e414d8baabcc7226ef7f3ed354bb883686a3a360e"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2ab3ec3984059e22a40d86a5d9fe8b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 476330,
            "upload_time": "2025-07-17T21:28:05",
            "upload_time_iso_8601": "2025-07-17T21:28:05.422547Z",
            "url": "https://files.pythonhosted.org/packages/80/f6/1c7f6a530bdfdfd4b3ede0db7ad655453f7833f20f12a419259587f992c8/backports_zstd-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7aa3c8a6367c6d074f56ebcca0705e479eef5bf4548c816a429df8b3bee01da",
                "md5": "6c4dcbd737c12f6618758c888beb595a",
                "sha256": "a99b59e67fae3f06f1961c38ac21fc9597ddc0d6c0c1cf140a63e9698bcb16ec"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6c4dcbd737c12f6618758c888beb595a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 269966,
            "upload_time": "2025-07-17T21:28:06",
            "upload_time_iso_8601": "2025-07-17T21:28:06.605171Z",
            "url": "https://files.pythonhosted.org/packages/c7/aa/3c8a6367c6d074f56ebcca0705e479eef5bf4548c816a429df8b3bee01da/backports_zstd-0.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc3340ca03c409785d0f1fc312e2823a1d682f23f17974c8e9c647548dd52b8b",
                "md5": "0a091807dbcb830d096b8b897b97fa06",
                "sha256": "c2b30e53082fda6d3dac72eb06cf2385681e94c44f4654ec809eddbeac172b78"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a091807dbcb830d096b8b897b97fa06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 294880,
            "upload_time": "2025-07-17T21:28:08",
            "upload_time_iso_8601": "2025-07-17T21:28:08.095050Z",
            "url": "https://files.pythonhosted.org/packages/fc/33/40ca03c409785d0f1fc312e2823a1d682f23f17974c8e9c647548dd52b8b/backports_zstd-0.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a59016b4181cdea8d7b3cb08915b2a4985038b18e0c3b41b6b73f07c1d6e447d",
                "md5": "fb21b42571c274dacd4571f4f7513327",
                "sha256": "0f7c7afda2c95b2b62a71409fc2148298e52a43aeaffdfc856ae1f3c3b9743e6"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb21b42571c274dacd4571f4f7513327",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 271737,
            "upload_time": "2025-07-17T21:28:09",
            "upload_time_iso_8601": "2025-07-17T21:28:09.273135Z",
            "url": "https://files.pythonhosted.org/packages/a5/90/16b4181cdea8d7b3cb08915b2a4985038b18e0c3b41b6b73f07c1d6e447d/backports_zstd-0.3.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e33e7293c053fd276ed53e3f347507fbba3de5c1d0db25e2b4eb536754b6bd20",
                "md5": "725d650f9290aa8bccb51f45844c95fe",
                "sha256": "95f9fcf1ccc360e2347f7b45f2eee5cb13343802e8c67476fc1b688955c6deac"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "725d650f9290aa8bccb51f45844c95fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 427637,
            "upload_time": "2025-07-17T21:28:10",
            "upload_time_iso_8601": "2025-07-17T21:28:10.507935Z",
            "url": "https://files.pythonhosted.org/packages/e3/3e/7293c053fd276ed53e3f347507fbba3de5c1d0db25e2b4eb536754b6bd20/backports_zstd-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faca180f4ffac54595b7dd779abfb0e8349e052feb7d738890e35ba6eb5aceab",
                "md5": "c4a7b5cea2fe98569bd8454526ce5cda",
                "sha256": "092aef13101a197c36636e98c94a671762da83f68548f28ee9f002bd96086737"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c4a7b5cea2fe98569bd8454526ce5cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 347178,
            "upload_time": "2025-07-17T21:28:11",
            "upload_time_iso_8601": "2025-07-17T21:28:11.659361Z",
            "url": "https://files.pythonhosted.org/packages/fa/ca/180f4ffac54595b7dd779abfb0e8349e052feb7d738890e35ba6eb5aceab/backports_zstd-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "907cc25c66ce035df9e13e7de702febcd43070523afd30ae71fd698974eebb11",
                "md5": "1151330f975d2685553c3120ac05df38",
                "sha256": "74b27f5db0af39519873d27310db214e6bb418abc2ef0cc683beb10a3ef1d4b1"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "1151330f975d2685553c3120ac05df38",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 488885,
            "upload_time": "2025-07-17T21:28:13",
            "upload_time_iso_8601": "2025-07-17T21:28:13.315955Z",
            "url": "https://files.pythonhosted.org/packages/90/7c/c25c66ce035df9e13e7de702febcd43070523afd30ae71fd698974eebb11/backports_zstd-0.3.0-cp312-cp312-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0387fe0a277a2ab0c5d2d796feb0b70ff0ea4c3f4217d9dd3310e29ec6992feb",
                "md5": "efab9204be33f8b9aea50c69ca9810e1",
                "sha256": "243b3fc102e22ce39e88224201a0f482625542b654ec9b7f83050003d40658c5"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "efab9204be33f8b9aea50c69ca9810e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 457422,
            "upload_time": "2025-07-17T21:28:14",
            "upload_time_iso_8601": "2025-07-17T21:28:14.596372Z",
            "url": "https://files.pythonhosted.org/packages/03/87/fe0a277a2ab0c5d2d796feb0b70ff0ea4c3f4217d9dd3310e29ec6992feb/backports_zstd-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a41e47c0b537c1ffc6c7d69385b3305c99139f6ace99ce5f6bf9a8558741e3a3",
                "md5": "7b3ae62783189bafe8d287b0f070b39b",
                "sha256": "f00a9fd696929476a9db4949786051cd09e46681a2cb453e8eef530a24f4c79c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7b3ae62783189bafe8d287b0f070b39b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 562846,
            "upload_time": "2025-07-17T21:28:15",
            "upload_time_iso_8601": "2025-07-17T21:28:15.852630Z",
            "url": "https://files.pythonhosted.org/packages/a4/1e/47c0b537c1ffc6c7d69385b3305c99139f6ace99ce5f6bf9a8558741e3a3/backports_zstd-0.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3be731f0ec171f26d5b2d69fb6b9efb344f3087d0d7f9c648e6e0267cec32fab",
                "md5": "2baaa76a1e4f67cad74706d5edcd9bab",
                "sha256": "e4b6706044b60a9801a9c3a198cc34809200cb2d09231bd5dfd8ad928f42ab2a"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "2baaa76a1e4f67cad74706d5edcd9bab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 621598,
            "upload_time": "2025-07-17T21:28:17",
            "upload_time_iso_8601": "2025-07-17T21:28:17.099848Z",
            "url": "https://files.pythonhosted.org/packages/3b/e7/31f0ec171f26d5b2d69fb6b9efb344f3087d0d7f9c648e6e0267cec32fab/backports_zstd-0.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e6edbff90238dc75a5b9bd65ce9429b7a7e6fc5c8f1fe134185a1ff14ce7a89",
                "md5": "7c85757c5ede963b23d3d6938d19bff0",
                "sha256": "9a758efacb0907418bfca14aabc0865f17b59fbfe7b2e0b6941ac40b56d4f22e"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c85757c5ede963b23d3d6938d19bff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 475345,
            "upload_time": "2025-07-17T21:28:18",
            "upload_time_iso_8601": "2025-07-17T21:28:18.433055Z",
            "url": "https://files.pythonhosted.org/packages/9e/6e/dbff90238dc75a5b9bd65ce9429b7a7e6fc5c8f1fe134185a1ff14ce7a89/backports_zstd-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28f729330e0f8295d1b4b358349cbed898d01a9126668c0c42170c25a1950cd3",
                "md5": "8a04b1bae55c18133eb5c0f09426f855",
                "sha256": "4ac504fa6b90a075586e0bf194db1b91b231c57654f144e6a6662b11bcdd3279"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a04b1bae55c18133eb5c0f09426f855",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 463405,
            "upload_time": "2025-07-17T21:28:20",
            "upload_time_iso_8601": "2025-07-17T21:28:20.320822Z",
            "url": "https://files.pythonhosted.org/packages/28/f7/29330e0f8295d1b4b358349cbed898d01a9126668c0c42170c25a1950cd3/backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01d383715fcb8d0c3b4c2b55126bac8c7623b70097ac7bce823063564c484277",
                "md5": "1a6920b29917aa3eb81111656fd22bd4",
                "sha256": "d1cc760010f971a2f01ab81634df4eaef5da36dc5525321d640a4201e3a947ca"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1a6920b29917aa3eb81111656fd22bd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 491038,
            "upload_time": "2025-07-17T21:28:21",
            "upload_time_iso_8601": "2025-07-17T21:28:21.865373Z",
            "url": "https://files.pythonhosted.org/packages/01/d3/83715fcb8d0c3b4c2b55126bac8c7623b70097ac7bce823063564c484277/backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46053fcbc5e5c56afdd0d1d1ee16d4ab6dc888b934811a9b96a19bd27b4b584c",
                "md5": "71b27279995977a989228a958ba9d54e",
                "sha256": "92e578a80b78b94f06c831872fd2ba304811b21956cee3b75b2ac4ff7a49cb47"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "71b27279995977a989228a958ba9d54e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 567286,
            "upload_time": "2025-07-17T21:28:23",
            "upload_time_iso_8601": "2025-07-17T21:28:23.308031Z",
            "url": "https://files.pythonhosted.org/packages/46/05/3fcbc5e5c56afdd0d1d1ee16d4ab6dc888b934811a9b96a19bd27b4b584c/backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6f89dacf3ec7da696144c812391704e56bbaf2a0d08150b69b0b444a6b68000",
                "md5": "1fdfde507e5e07ef3f26f9283994e8bf",
                "sha256": "1165ed303455d9e7bfc416c208e769b6671acafb1406b01b7c3de3b16845399d"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "1fdfde507e5e07ef3f26f9283994e8bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 612047,
            "upload_time": "2025-07-17T21:28:24",
            "upload_time_iso_8601": "2025-07-17T21:28:24.753740Z",
            "url": "https://files.pythonhosted.org/packages/e6/f8/9dacf3ec7da696144c812391704e56bbaf2a0d08150b69b0b444a6b68000/backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6daa1033abe4611b99f57466f39aba87e9b5ae710d81f3a875f09487e83167ca",
                "md5": "668f0ce318b4b36c48a93d54c70611f4",
                "sha256": "d496d38f25d8a123fa94123255bda705eea59ce2f6a741fb854243e858f76fd6"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "668f0ce318b4b36c48a93d54c70611f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 479907,
            "upload_time": "2025-07-17T21:28:26",
            "upload_time_iso_8601": "2025-07-17T21:28:26.502790Z",
            "url": "https://files.pythonhosted.org/packages/6d/aa/1033abe4611b99f57466f39aba87e9b5ae710d81f3a875f09487e83167ca/backports_zstd-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38faab4bb130d074b9baba2767d26a76f72421ad0f608c59e574cbabedf24394",
                "md5": "ed66ff7ae733ace7fd99de462d8021a1",
                "sha256": "263567d99a17c1da9af2caaa64711f8c17b748c82ec19f8c9f39fdbdf4c4d2da"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ed66ff7ae733ace7fd99de462d8021a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 270080,
            "upload_time": "2025-07-17T21:28:28",
            "upload_time_iso_8601": "2025-07-17T21:28:28.246525Z",
            "url": "https://files.pythonhosted.org/packages/38/fa/ab4bb130d074b9baba2767d26a76f72421ad0f608c59e574cbabedf24394/backports_zstd-0.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f509357e8305780a911d180a4b55ad9857201d6f109704d458a5870d4361743b",
                "md5": "b4322842ddf248da604e31cc4a9e4dc3",
                "sha256": "cf34fc01936a8c82492d9c83777c099efbbcc515ce97a1067cde50e33a4b4300"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4322842ddf248da604e31cc4a9e4dc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 295040,
            "upload_time": "2025-07-17T21:28:29",
            "upload_time_iso_8601": "2025-07-17T21:28:29.704048Z",
            "url": "https://files.pythonhosted.org/packages/f5/09/357e8305780a911d180a4b55ad9857201d6f109704d458a5870d4361743b/backports_zstd-0.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27315a092dd758ecb7f4c0ee0339dd6902780426042484657630d26d277d98d1",
                "md5": "dad2b90934b6ab7d175c8a2050744ecb",
                "sha256": "24a469915ae10563cc28dcd0cf261e6b0f8e4c55bae17eb872784dfac503b31e"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "dad2b90934b6ab7d175c8a2050744ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 271935,
            "upload_time": "2025-07-17T21:28:31",
            "upload_time_iso_8601": "2025-07-17T21:28:31.170349Z",
            "url": "https://files.pythonhosted.org/packages/27/31/5a092dd758ecb7f4c0ee0339dd6902780426042484657630d26d277d98d1/backports_zstd-0.3.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32bd774d80fa4d15208b0e1219c642ea05e8d26d4e4024463b209c1c8454f561",
                "md5": "b589eaed2a7796ba49d1612b260964a2",
                "sha256": "d44256a9e835328efed583400ed9b5a66c764945884880fab8c0f9c8a3346275"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b589eaed2a7796ba49d1612b260964a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 427256,
            "upload_time": "2025-07-17T21:28:32",
            "upload_time_iso_8601": "2025-07-17T21:28:32.455211Z",
            "url": "https://files.pythonhosted.org/packages/32/bd/774d80fa4d15208b0e1219c642ea05e8d26d4e4024463b209c1c8454f561/backports_zstd-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1a5fa11cddefd09ddf5ed2fb65c95abc157b8605eaf76c38988e611dd79e152",
                "md5": "99e3841822072697863380e0d2a33d52",
                "sha256": "f341e764154ee2a34b4ae1439c849eb2f3f6b7fec9d16c2142fd76bc16003a9f"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99e3841822072697863380e0d2a33d52",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 346761,
            "upload_time": "2025-07-17T21:28:33",
            "upload_time_iso_8601": "2025-07-17T21:28:33.649966Z",
            "url": "https://files.pythonhosted.org/packages/e1/a5/fa11cddefd09ddf5ed2fb65c95abc157b8605eaf76c38988e611dd79e152/backports_zstd-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87791e507f4adc8a4bb6eaefe40a1060ae1a2fa15e98cf606b3ddc62f9fdbcad",
                "md5": "577798d6face8bd67f9a7131f31b5f24",
                "sha256": "961e323ca4ece2dddb7cec7a5bd8877c019c333f80d4968f0b7fedcaf4c5a88a"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "577798d6face8bd67f9a7131f31b5f24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 488199,
            "upload_time": "2025-07-17T21:28:35",
            "upload_time_iso_8601": "2025-07-17T21:28:35.080631Z",
            "url": "https://files.pythonhosted.org/packages/87/79/1e507f4adc8a4bb6eaefe40a1060ae1a2fa15e98cf606b3ddc62f9fdbcad/backports_zstd-0.3.0-cp313-cp313-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "361005e574129d6bc8649d9d9b7c63a65e8fde4287275418a530995559a7cdf6",
                "md5": "464adf0dd138bea6660b4a1453b3bcce",
                "sha256": "70bb3ca2ad155f4cd22cd1d79803010a247042540c1842bc2ef3b75e15c9c0fa"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "464adf0dd138bea6660b4a1453b3bcce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 457056,
            "upload_time": "2025-07-17T21:28:36",
            "upload_time_iso_8601": "2025-07-17T21:28:36.720847Z",
            "url": "https://files.pythonhosted.org/packages/36/10/05e574129d6bc8649d9d9b7c63a65e8fde4287275418a530995559a7cdf6/backports_zstd-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6d1b93571fb95aae0f6df849b7b387bf01a6a800f348e1cb748c1681e58391b",
                "md5": "3fae2f3321345ebbd1430d9589019282",
                "sha256": "5c6f261da41da7cae2fd514e47da661eea631964615aab631e473e96e7f1d57d"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3fae2f3321345ebbd1430d9589019282",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 562579,
            "upload_time": "2025-07-17T21:28:38",
            "upload_time_iso_8601": "2025-07-17T21:28:38.014810Z",
            "url": "https://files.pythonhosted.org/packages/f6/d1/b93571fb95aae0f6df849b7b387bf01a6a800f348e1cb748c1681e58391b/backports_zstd-0.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e97f7cf8fac07797a76909d6eef4ac888d68fdacbe7917315e4e83e946a0ff50",
                "md5": "3075fb28ba0d4adba6d9a92572b21375",
                "sha256": "4825802cca6486b4d991e52dc2feff49578a596b5deb643a2798bfdee148b6e3"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "3075fb28ba0d4adba6d9a92572b21375",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 623420,
            "upload_time": "2025-07-17T21:28:39",
            "upload_time_iso_8601": "2025-07-17T21:28:39.923535Z",
            "url": "https://files.pythonhosted.org/packages/e9/7f/7cf8fac07797a76909d6eef4ac888d68fdacbe7917315e4e83e946a0ff50/backports_zstd-0.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33f398154d4c0cd5b6138991fd0cdfeb955375f050aaffd51ebbbee53e33d482",
                "md5": "36ce82d4e96fde6dc844646c3802aa00",
                "sha256": "e0f91c5d36576afbc8bf1c6c97a132a526bab5f1381d8eea2b3ae9cc42416aac"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36ce82d4e96fde6dc844646c3802aa00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 472072,
            "upload_time": "2025-07-17T21:28:41",
            "upload_time_iso_8601": "2025-07-17T21:28:41.201091Z",
            "url": "https://files.pythonhosted.org/packages/33/f3/98154d4c0cd5b6138991fd0cdfeb955375f050aaffd51ebbbee53e33d482/backports_zstd-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70cdd2a9bd90c724f6e4a7e715d9f9a946bb994de74cc272591e958038752978",
                "md5": "6b69e20891bdbaca3fd4889631cf92d2",
                "sha256": "dd18749b7698a52d7611d2fc13859c5dae72b4544ccc8ca6d8b549e50c02c32c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b69e20891bdbaca3fd4889631cf92d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 462833,
            "upload_time": "2025-07-17T21:28:42",
            "upload_time_iso_8601": "2025-07-17T21:28:42.464770Z",
            "url": "https://files.pythonhosted.org/packages/70/cd/d2a9bd90c724f6e4a7e715d9f9a946bb994de74cc272591e958038752978/backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5b7fdf31d87f7ef6dfca32ffcb3677c62b0822e17aea3dcab98f5f50a166e7c",
                "md5": "8e68fd88d644433a7aeb69a09bf59fec",
                "sha256": "f573c567f48b3dcc92dfb9f6ed14756a6d149a76cdf0ee2d7d9fdc2ecfdc8c60"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8e68fd88d644433a7aeb69a09bf59fec",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 490396,
            "upload_time": "2025-07-17T21:28:43",
            "upload_time_iso_8601": "2025-07-17T21:28:43.670916Z",
            "url": "https://files.pythonhosted.org/packages/d5/b7/fdf31d87f7ef6dfca32ffcb3677c62b0822e17aea3dcab98f5f50a166e7c/backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81d8eab79abb3e6546b1aa746f55a7d7538f840e0b566e733941045b707aa18c",
                "md5": "8b6257588bae621186ba942b3516a40a",
                "sha256": "500805aade7538167fe34f3aff1ffd5bdbbeadc4d7c9f205be09177b7d4b8c9a"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8b6257588bae621186ba942b3516a40a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 567089,
            "upload_time": "2025-07-17T21:28:44",
            "upload_time_iso_8601": "2025-07-17T21:28:44.880812Z",
            "url": "https://files.pythonhosted.org/packages/81/d8/eab79abb3e6546b1aa746f55a7d7538f840e0b566e733941045b707aa18c/backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef18b6db205c4235235f05d3f0578447a060d2520957320d256bc5d63a7680a8",
                "md5": "e3625273027b14087ccfe65076030598",
                "sha256": "fab85006c0a97a74a985af4c08c190b4af77a624d1e759508f756d9d28aea40c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "e3625273027b14087ccfe65076030598",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 613818,
            "upload_time": "2025-07-17T21:28:46",
            "upload_time_iso_8601": "2025-07-17T21:28:46.154840Z",
            "url": "https://files.pythonhosted.org/packages/ef/18/b6db205c4235235f05d3f0578447a060d2520957320d256bc5d63a7680a8/backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63da9d92715dd17ea864f2fa9011b20dd7efa0b2e18e300a7af19b959e8175b9",
                "md5": "e62d91151d62aae3f3c5601a71d10a66",
                "sha256": "de9281d08db8734baa538ff9021d0aac16566713c5c64df58c66481823b157c3"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e62d91151d62aae3f3c5601a71d10a66",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 476366,
            "upload_time": "2025-07-17T21:28:47",
            "upload_time_iso_8601": "2025-07-17T21:28:47.367146Z",
            "url": "https://files.pythonhosted.org/packages/63/da/9d92715dd17ea864f2fa9011b20dd7efa0b2e18e300a7af19b959e8175b9/backports_zstd-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26d59ed69185da931630c7ccb0827412cef91380984a2c1d6d768244345dcf8c",
                "md5": "4966f17838659bcb731b46836fd08978",
                "sha256": "5bd28c9d9f6e871f7f2fce3f9b74d6f038f91c9e60b74a71387e4723cdda023b"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4966f17838659bcb731b46836fd08978",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 427792,
            "upload_time": "2025-07-17T21:28:52",
            "upload_time_iso_8601": "2025-07-17T21:28:52.940279Z",
            "url": "https://files.pythonhosted.org/packages/26/d5/9ed69185da931630c7ccb0827412cef91380984a2c1d6d768244345dcf8c/backports_zstd-0.3.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da564d5d1d0024843a51fefc8ed90c1ee0036c371794941acd30aae6e7479476",
                "md5": "a89d051982fd1494c2caf9ad667a0c58",
                "sha256": "eaee5c2c46ccbef5335c0d3cee55f036d2c4226f1154fbb9cd3537dad295ad1d"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a89d051982fd1494c2caf9ad667a0c58",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 347442,
            "upload_time": "2025-07-17T21:28:54",
            "upload_time_iso_8601": "2025-07-17T21:28:54.199035Z",
            "url": "https://files.pythonhosted.org/packages/da/56/4d5d1d0024843a51fefc8ed90c1ee0036c371794941acd30aae6e7479476/backports_zstd-0.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50e62402392482829d7c164cb0607e7087b1305918c9165e64088ea461808268",
                "md5": "7d783035a14d0fa49ec29be8060d5b09",
                "sha256": "0c35de1f3cad8e9c6a2f6c3f7286ecf290f04885769b0416241f1af140cbd7de"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "7d783035a14d0fa49ec29be8060d5b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 491578,
            "upload_time": "2025-07-17T21:28:55",
            "upload_time_iso_8601": "2025-07-17T21:28:55.410782Z",
            "url": "https://files.pythonhosted.org/packages/50/e6/2402392482829d7c164cb0607e7087b1305918c9165e64088ea461808268/backports_zstd-0.3.0-cp313-cp313t-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6739a3e7dd4b14ab872e733f20c2accf89253407ac1c15d9313bc3dd64ade863",
                "md5": "d9731749c05701379de52d40974e418b",
                "sha256": "0920996b7651c4d800e11b9a2e238a8c8bcd4e55f1f2621512b6b56fce2bd737"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9731749c05701379de52d40974e418b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 456687,
            "upload_time": "2025-07-17T21:28:56",
            "upload_time_iso_8601": "2025-07-17T21:28:56.769435Z",
            "url": "https://files.pythonhosted.org/packages/67/39/a3e7dd4b14ab872e733f20c2accf89253407ac1c15d9313bc3dd64ade863/backports_zstd-0.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "656f32b90731e692132249301b7682e415341eb7552c0f1d650ede05115a3a71",
                "md5": "4f1af8cd4dbd32fa405406d2cbc4b485",
                "sha256": "b4d85c91c23aba7f95ca2b4ef6a0acedbe21d44db0be9320f1206c0e93665dd0"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4f1af8cd4dbd32fa405406d2cbc4b485",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 562095,
            "upload_time": "2025-07-17T21:28:57",
            "upload_time_iso_8601": "2025-07-17T21:28:57.951801Z",
            "url": "https://files.pythonhosted.org/packages/65/6f/32b90731e692132249301b7682e415341eb7552c0f1d650ede05115a3a71/backports_zstd-0.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19499eaa89ea0881a56113c1456ebc74ac822d4d01b4f17ec938f13910d6b70b",
                "md5": "cf44ca5537324ed5d19f4b06ff37088b",
                "sha256": "2be90fee34b1b1f85b88d823eebcffc604231896e30519f02fbe5f14c3aa1fe8"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "cf44ca5537324ed5d19f4b06ff37088b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 621158,
            "upload_time": "2025-07-17T21:28:59",
            "upload_time_iso_8601": "2025-07-17T21:28:59.273219Z",
            "url": "https://files.pythonhosted.org/packages/19/49/9eaa89ea0881a56113c1456ebc74ac822d4d01b4f17ec938f13910d6b70b/backports_zstd-0.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e990a1cfc2626405c01271a1a6a347a03055fab5d83d262646221f723c28ec60",
                "md5": "e2b638ee2f80868777df30ac3a31e30f",
                "sha256": "7203b0c643d830311909463bc0ee1c2460413c0ead68b6c8f455b3ae82728c9c"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2b638ee2f80868777df30ac3a31e30f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 476010,
            "upload_time": "2025-07-17T21:29:00",
            "upload_time_iso_8601": "2025-07-17T21:29:00.554739Z",
            "url": "https://files.pythonhosted.org/packages/e9/90/a1cfc2626405c01271a1a6a347a03055fab5d83d262646221f723c28ec60/backports_zstd-0.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "430d93cbff2846f0e8d330c777ba261a8e5cc1ddfce91992d8ae8373f4875d2c",
                "md5": "ab6cac5c4269f9039b7f5e0279b37208",
                "sha256": "34b95deaeabc5166a230e8c2fee1a68c2a78d47b79824d34c83e19c6d4b67e7f"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab6cac5c4269f9039b7f5e0279b37208",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 463096,
            "upload_time": "2025-07-17T21:29:01",
            "upload_time_iso_8601": "2025-07-17T21:29:01.879352Z",
            "url": "https://files.pythonhosted.org/packages/43/0d/93cbff2846f0e8d330c777ba261a8e5cc1ddfce91992d8ae8373f4875d2c/backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "979bc4ca845d02eb47eff52911eabd37f5ef34c41aa8cd445cf2ff60baf6b0bb",
                "md5": "c77f697e68d73a588bce598fd576763e",
                "sha256": "6e0aaa4c86f3d02d251ca282911df8d0a5c7a91bafd195c34a4128b8bde810e7"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c77f697e68d73a588bce598fd576763e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 492580,
            "upload_time": "2025-07-17T21:29:03",
            "upload_time_iso_8601": "2025-07-17T21:29:03.156981Z",
            "url": "https://files.pythonhosted.org/packages/97/9b/c4ca845d02eb47eff52911eabd37f5ef34c41aa8cd445cf2ff60baf6b0bb/backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e11a9f132c7e8e5a22e2c104ffb57c7b8647654b9ec0737e82d3ec018d5d28e",
                "md5": "5a735a8187125e681d0538b3f952310f",
                "sha256": "be0b0e01a453c20788be9afe4c71af5d16e2ff214e9eff1923377cd29f11c402"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5a735a8187125e681d0538b3f952310f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 566690,
            "upload_time": "2025-07-17T21:29:04",
            "upload_time_iso_8601": "2025-07-17T21:29:04.375707Z",
            "url": "https://files.pythonhosted.org/packages/9e/11/a9f132c7e8e5a22e2c104ffb57c7b8647654b9ec0737e82d3ec018d5d28e/backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fed64cbe37bc00144960b842459226e3aeedbf41efdfcf474f242b34d424477",
                "md5": "5c9c3100f746920cd95ee724bede8f7c",
                "sha256": "fb18b612ecbd0437c6aaabe37776b7c2a9681f1f2f7ad53c8050f0bced91eb60"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "5c9c3100f746920cd95ee724bede8f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 611804,
            "upload_time": "2025-07-17T21:29:05",
            "upload_time_iso_8601": "2025-07-17T21:29:05.737608Z",
            "url": "https://files.pythonhosted.org/packages/6f/ed/64cbe37bc00144960b842459226e3aeedbf41efdfcf474f242b34d424477/backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a7caaf39c76f81689883b5f05cc26053cd731cb59f419645aa2d06f9d2de49b",
                "md5": "c1a467f1d8aa629ff219b1c105b6cc66",
                "sha256": "d43a7444748d5109ee70c52564c79adfa814c4ee0fc4079c7178ddac44c59acd"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1a467f1d8aa629ff219b1c105b6cc66",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 480651,
            "upload_time": "2025-07-17T21:29:07",
            "upload_time_iso_8601": "2025-07-17T21:29:07.064756Z",
            "url": "https://files.pythonhosted.org/packages/6a/7c/aaf39c76f81689883b5f05cc26053cd731cb59f419645aa2d06f9d2de49b/backports_zstd-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98c13a58afebc967946ba34bd6c7f42289a93aedbc35a754a556e4ecff2179a5",
                "md5": "d90d400a982cd7f3f482dc0400da768f",
                "sha256": "e43cc4c7226a37c3f9c32623ec88dd5a4917b415965429fc760222de2b83436d"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "d90d400a982cd7f3f482dc0400da768f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 270649,
            "upload_time": "2025-07-17T21:29:08",
            "upload_time_iso_8601": "2025-07-17T21:29:08.359317Z",
            "url": "https://files.pythonhosted.org/packages/98/c1/3a58afebc967946ba34bd6c7f42289a93aedbc35a754a556e4ecff2179a5/backports_zstd-0.3.0-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ce9b7bf7c30a8c8bdf45c2493d71104c0749181f705d473d3c96835fffe4bd4",
                "md5": "2d53b1f1e612a8efeffa7640e8a1b577",
                "sha256": "24e4135078bcd715956b4ff2c28bda2273f60066d458fe958fac3e37edc13972"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2d53b1f1e612a8efeffa7640e8a1b577",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 296062,
            "upload_time": "2025-07-17T21:29:09",
            "upload_time_iso_8601": "2025-07-17T21:29:09.582727Z",
            "url": "https://files.pythonhosted.org/packages/3c/e9/b7bf7c30a8c8bdf45c2493d71104c0749181f705d473d3c96835fffe4bd4/backports_zstd-0.3.0-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbf54a34353e906e4f502d28794d8e9b1fcf8a2b06c582a9f2df475221d51bb9",
                "md5": "dd04b8f986ff789fc55eaca951ca517b",
                "sha256": "23ee720bb978c7ce224fbb4c5964fe0223a0ed1c7c69f1335aa5603a605aecd7"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd04b8f986ff789fc55eaca951ca517b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 272165,
            "upload_time": "2025-07-17T21:29:10",
            "upload_time_iso_8601": "2025-07-17T21:29:10.855496Z",
            "url": "https://files.pythonhosted.org/packages/fb/f5/4a34353e906e4f502d28794d8e9b1fcf8a2b06c582a9f2df475221d51bb9/backports_zstd-0.3.0-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0967c108152c77e89f59f2c5b2585558d40ef99f3b61f80659e44ec7fc53164",
                "md5": "e866b98574719ac28d876a9182672bdd",
                "sha256": "23817dc34540c4f5aea3fbecb42071858daafcf7e244168c8e06c8a8afbeff22"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "e866b98574719ac28d876a9182672bdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 269754,
            "upload_time": "2025-07-17T21:28:48",
            "upload_time_iso_8601": "2025-07-17T21:28:48.984698Z",
            "url": "https://files.pythonhosted.org/packages/b0/96/7c108152c77e89f59f2c5b2585558d40ef99f3b61f80659e44ec7fc53164/backports_zstd-0.3.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbbbb6c9d3f6ae3212c47a5c368197a20ab373712021518e4495c835bf33c523",
                "md5": "133f43eb218aebccccf08c799a895834",
                "sha256": "b36da3711005e4fbf8d1931e528477746e3d08ff81231822a3d10aed94dea7a6"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "133f43eb218aebccccf08c799a895834",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 294940,
            "upload_time": "2025-07-17T21:28:50",
            "upload_time_iso_8601": "2025-07-17T21:28:50.685741Z",
            "url": "https://files.pythonhosted.org/packages/cb/bb/b6c9d3f6ae3212c47a5c368197a20ab373712021518e4495c835bf33c523/backports_zstd-0.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35575e59cd80b9fd3e35fe385e504f71846d897d2dc6d666428616ac96dcaec3",
                "md5": "68cc0aefd6b0d4d10878220f722c6542",
                "sha256": "de2846f5fa7d5b3ef7525dc8ff83014480a408b043dd1131d84b793d89b503c3"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "68cc0aefd6b0d4d10878220f722c6542",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 271604,
            "upload_time": "2025-07-17T21:28:51",
            "upload_time_iso_8601": "2025-07-17T21:28:51.820417Z",
            "url": "https://files.pythonhosted.org/packages/35/57/5e59cd80b9fd3e35fe385e504f71846d897d2dc6d666428616ac96dcaec3/backports_zstd-0.3.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e3f0f9ea426ac4ae38c47114791eb9076aa13e5d00052b5531da3b261773ae8",
                "md5": "acb1ba1326fce04e33bfb8474dc8191a",
                "sha256": "9fda7e50d673dc4fc325e15030c1833b59f68def855c8cde80321e3690ba3d24"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acb1ba1326fce04e33bfb8474dc8191a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 427334,
            "upload_time": "2025-07-17T21:29:12",
            "upload_time_iso_8601": "2025-07-17T21:29:12.199669Z",
            "url": "https://files.pythonhosted.org/packages/0e/3f/0f9ea426ac4ae38c47114791eb9076aa13e5d00052b5531da3b261773ae8/backports_zstd-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2218e72205755761e313c271fba150f5b5fd1e63b2cf9f7f4d09ed0ce878828a",
                "md5": "188d05d600404202cf033ee62c0baa64",
                "sha256": "4762fe67032e300070b139c74ecf0ff0a4f1e4c42c80b40b0dda4d94775cfbc5"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "188d05d600404202cf033ee62c0baa64",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 347239,
            "upload_time": "2025-07-17T21:29:13",
            "upload_time_iso_8601": "2025-07-17T21:29:13.447838Z",
            "url": "https://files.pythonhosted.org/packages/22/18/e72205755761e313c271fba150f5b5fd1e63b2cf9f7f4d09ed0ce878828a/backports_zstd-0.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e305307958aeca76d55c05097b227fbd22bed32cc77ecbe95789c17f87a1350d",
                "md5": "cd2d40177b4ca36af6accb354e08de1e",
                "sha256": "143a13f27ea30bd3502615759685aa80deb40b553623f40452bc6cf8aae24a57"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "cd2d40177b4ca36af6accb354e08de1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 488783,
            "upload_time": "2025-07-17T21:29:14",
            "upload_time_iso_8601": "2025-07-17T21:29:14.729128Z",
            "url": "https://files.pythonhosted.org/packages/e3/05/307958aeca76d55c05097b227fbd22bed32cc77ecbe95789c17f87a1350d/backports_zstd-0.3.0-cp39-cp39-manylinux2010_i686.manylinux2014_i686.manylinux_2_12_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6adf193d2eddfba04c8e5b7950af50072cb57b1d71f293de19346312a5f7c0cb",
                "md5": "7bb0fa9ab87607c5c75860f8209b260c",
                "sha256": "07c9cb4738a79d0434a51af941fc6668f43e833f1d184f390cd74cd8fd290785"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7bb0fa9ab87607c5c75860f8209b260c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 456926,
            "upload_time": "2025-07-17T21:29:16",
            "upload_time_iso_8601": "2025-07-17T21:29:16.020133Z",
            "url": "https://files.pythonhosted.org/packages/6a/df/193d2eddfba04c8e5b7950af50072cb57b1d71f293de19346312a5f7c0cb/backports_zstd-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5950b6d970da22c98a135dd9e93aafb0d6eaeda147bfeb7fe7f075a946ece653",
                "md5": "510e786e734e7791fe2bf92dac3c2565",
                "sha256": "3bc0eca37d618e1c02d2b6dce7076e0c704675d876f020ba4b9a8080fe6bdcd9"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "510e786e734e7791fe2bf92dac3c2565",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 562592,
            "upload_time": "2025-07-17T21:29:17",
            "upload_time_iso_8601": "2025-07-17T21:29:17.313108Z",
            "url": "https://files.pythonhosted.org/packages/59/50/b6d970da22c98a135dd9e93aafb0d6eaeda147bfeb7fe7f075a946ece653/backports_zstd-0.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2d2989e991f78eda86db56d6da168d3bcd49fb19fac1801d2ef549e0c74cc67",
                "md5": "041dacd4a092b2c3c1127085ca618bcc",
                "sha256": "d7848ee66d3b0b9b033e6c13ba3e8e7110aeaabef7dc7d15f47b9d2a9acb4ffc"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "041dacd4a092b2c3c1127085ca618bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 622290,
            "upload_time": "2025-07-17T21:29:18",
            "upload_time_iso_8601": "2025-07-17T21:29:18.625505Z",
            "url": "https://files.pythonhosted.org/packages/f2/d2/989e991f78eda86db56d6da168d3bcd49fb19fac1801d2ef549e0c74cc67/backports_zstd-0.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eb713bfbb98846d9d7a389b4bfdf5ef14b9249e4ca6cbd5586b512b635eaa93",
                "md5": "c92398a6db7c22fa19b9529a150fa91e",
                "sha256": "d48b8db5db3b4efd7f9e22b0b55e33c2e6a3375fae685417afb655fdc8acc9ff"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c92398a6db7c22fa19b9529a150fa91e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 472391,
            "upload_time": "2025-07-17T21:29:19",
            "upload_time_iso_8601": "2025-07-17T21:29:19.921741Z",
            "url": "https://files.pythonhosted.org/packages/0e/b7/13bfbb98846d9d7a389b4bfdf5ef14b9249e4ca6cbd5586b512b635eaa93/backports_zstd-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c4badb38d8e6d70a0bf4aae7c37ddf9fc113e6f2a7c57244383078138da5f96",
                "md5": "a5b76aac7278c511876972c8f4fdacf6",
                "sha256": "4297cf1e87227e342a611fc7ae59683febbf4b1c98b5771d9a2df759113ea9fe"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5b76aac7278c511876972c8f4fdacf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 462924,
            "upload_time": "2025-07-17T21:29:21",
            "upload_time_iso_8601": "2025-07-17T21:29:21.533930Z",
            "url": "https://files.pythonhosted.org/packages/5c/4b/adb38d8e6d70a0bf4aae7c37ddf9fc113e6f2a7c57244383078138da5f96/backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f32772a8695f1469e8acd43f67cee7a2f1bfe34aeb8024d1e91f918d7d632fa1",
                "md5": "6dfab8420415e89b2136d1b8dd448afb",
                "sha256": "dd56663480f267f62b1d39011f6e27783e5fc9c582f59f1f0fed008b2b580a49"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6dfab8420415e89b2136d1b8dd448afb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 490781,
            "upload_time": "2025-07-17T21:29:23",
            "upload_time_iso_8601": "2025-07-17T21:29:23.142704Z",
            "url": "https://files.pythonhosted.org/packages/f3/27/72a8695f1469e8acd43f67cee7a2f1bfe34aeb8024d1e91f918d7d632fa1/backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bd34d979665d45300d60b2ceaf4cb7508b46038e0e7a1014eb2195e4a6f6fd7",
                "md5": "09d96fdb104d237e8878264a8ae09792",
                "sha256": "ca2085ad4f12906fbf47df2e3441bc14cd33af69a569ba4ed5e7b23896d35dc0"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "09d96fdb104d237e8878264a8ae09792",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 566867,
            "upload_time": "2025-07-17T21:29:24",
            "upload_time_iso_8601": "2025-07-17T21:29:24.368388Z",
            "url": "https://files.pythonhosted.org/packages/4b/d3/4d979665d45300d60b2ceaf4cb7508b46038e0e7a1014eb2195e4a6f6fd7/backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3db8cb837ab4a983e09ccdb14408c2c093c21bb46446949d390096245f4e0797",
                "md5": "5c56283bcb525aaeef72857d209f241b",
                "sha256": "e06ad6ecff35d419672c09bd72a5cb7ce7ed0d832980f3ae51fa4f4961ce5aff"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "5c56283bcb525aaeef72857d209f241b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 612703,
            "upload_time": "2025-07-17T21:29:26",
            "upload_time_iso_8601": "2025-07-17T21:29:26.533010Z",
            "url": "https://files.pythonhosted.org/packages/3d/b8/cb837ab4a983e09ccdb14408c2c093c21bb46446949d390096245f4e0797/backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9d724173bad01832b6fbf83b24ed6e659cae65c7a794f172ee659888c4e1743",
                "md5": "39e9a5ae789dcedc5739a364b9be389e",
                "sha256": "42f932a98edd592793a7e0d08dc77faa1d510198390295d5adb2e557d71ae605"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39e9a5ae789dcedc5739a364b9be389e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 476476,
            "upload_time": "2025-07-17T21:29:27",
            "upload_time_iso_8601": "2025-07-17T21:29:27.812490Z",
            "url": "https://files.pythonhosted.org/packages/d9/d7/24173bad01832b6fbf83b24ed6e659cae65c7a794f172ee659888c4e1743/backports_zstd-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bbe7fab09e7f053f5d7f7b8f35f29b4a74551a74812bea62b9730d2f28790f3",
                "md5": "42a550ea6b562084eb22d203078457e2",
                "sha256": "08ab9e1c1a4f212943695e8c3f49b568568ce8555942a4f0c763ab252c73d54b"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "42a550ea6b562084eb22d203078457e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 269923,
            "upload_time": "2025-07-17T21:29:29",
            "upload_time_iso_8601": "2025-07-17T21:29:29.203823Z",
            "url": "https://files.pythonhosted.org/packages/1b/be/7fab09e7f053f5d7f7b8f35f29b4a74551a74812bea62b9730d2f28790f3/backports_zstd-0.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d018bceaddbb7f0f793e4b01cca01de34952f12361665e15fa321fc54b11bd70",
                "md5": "c99d141391eb5e6d0bf1331d736f7e23",
                "sha256": "d4a340a1a4084e056443fafa85f78e1259d43d9b4c0704eda8eb7ff6e8ea1674"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c99d141391eb5e6d0bf1331d736f7e23",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 294752,
            "upload_time": "2025-07-17T21:29:31",
            "upload_time_iso_8601": "2025-07-17T21:29:31.110064Z",
            "url": "https://files.pythonhosted.org/packages/d0/18/bceaddbb7f0f793e4b01cca01de34952f12361665e15fa321fc54b11bd70/backports_zstd-0.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "030bb63f1d3d26867309e56b116d7285344631dfb538683b312518c23e330b00",
                "md5": "e1982a6a7ebb74f803ec03d90341f86d",
                "sha256": "4f310e3f4ba9af4681089d9023f62a216611b90214ec53e4b62ef437fd4e25d8"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1982a6a7ebb74f803ec03d90341f86d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 271657,
            "upload_time": "2025-07-17T21:29:32",
            "upload_time_iso_8601": "2025-07-17T21:29:32.365325Z",
            "url": "https://files.pythonhosted.org/packages/03/0b/b63f1d3d26867309e56b116d7285344631dfb538683b312518c23e330b00/backports_zstd-0.3.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9cc80903746f011b400b188319666e091e92b7ed4a879a182c07f8fe48b837e",
                "md5": "9a66b91364ef89255a22afdf939fe95d",
                "sha256": "773c0f7463968c9c387e725e520f4b4f31cddd3a2c39055e46212adde6829542"
            },
            "downloads": -1,
            "filename": "backports_zstd-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9a66b91364ef89255a22afdf939fe95d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.9",
            "size": 976073,
            "upload_time": "2025-07-17T21:29:33",
            "upload_time_iso_8601": "2025-07-17T21:29:33.888491Z",
            "url": "https://files.pythonhosted.org/packages/c9/cc/80903746f011b400b188319666e091e92b7ed4a879a182c07f8fe48b837e/backports_zstd-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-17 21:29:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rogdham",
    "github_project": "backports.zstd",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "backports.zstd"
}
        
Elapsed time: 1.14045s