jiter


Namejiter JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://github.com/pydantic/jiter/
SummaryFast iterable JSON parser.
upload_time2024-06-12 09:34:48
maintainerNone
docs_urlNone
authorSamuel Colvin <samuel@pydantic.dev>
requires_python>=3.8
licenseMIT
keywords json parsing deserialization iter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # jiter

[![CI](https://github.com/pydantic/jiter/workflows/CI/badge.svg?event=push)](https://github.com/pydantic/jiter/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[![pypi](https://img.shields.io/pypi/v/jiter.svg)](https://pypi.python.org/pypi/jiter)
[![versions](https://img.shields.io/pypi/pyversions/jiter.svg)](https://github.com/pydantic/jiter)
[![license](https://img.shields.io/github/license/pydantic/jiter.svg)](https://github.com/pydantic/jiter/blob/main/LICENSE)

This is a standalone version of the JSON parser used in `pydantic-core`. The recommendation is to only use this package directly if you do not use `pydantic`.

The API is extremely minimal:

```python
def from_json(
    json_data: bytes,
    /,
    *,
    allow_inf_nan: bool = True,
    cache_mode: Literal[True, False, "all", "keys", "none"] = "all",
    partial_mode: Literal[True, False, "off", "on", "trailing-strings"] = False,
    catch_duplicate_keys: bool = False,
    lossless_floats: bool = False,
) -> Any:
    """
    Parse input bytes into a JSON object.

    Arguments:
        json_data: The JSON data to parse
        allow_inf_nan: Whether to allow infinity (`Infinity` an `-Infinity`) and `NaN` values to float fields.
            Defaults to True.
        cache_mode: cache Python strings to improve performance at the cost of some memory usage
            - True / 'all' - cache all strings
            - 'keys' - cache only object keys
            - False / 'none' - cache nothing
        partial_mode: How to handle incomplete strings:
            - False / 'off' - raise an exception if the input is incomplete
            - True / 'on' - allow incomplete JSON but discard the last string if it is incomplete
            - 'trailing-strings' - allow incomplete JSON, and include the last incomplete string in the output
        catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times
        lossless_floats: if True, preserve full detail on floats using `LosslessFloat`

    Returns:
        Python object built from the JSON input.
    """

def cache_clear() -> None:
    """
    Reset the string cache.
    """

def cache_usage() -> int:
    """
    get the size of the string cache.

    Returns:
        Size of the string cache in bytes.
    """
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pydantic/jiter/",
    "name": "jiter",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "JSON, parsing, deserialization, iter",
    "author": "Samuel Colvin <samuel@pydantic.dev>",
    "author_email": "Samuel Colvin <s@muelcolvin.com>",
    "download_url": "https://files.pythonhosted.org/packages/3e/7c/030735d07ef00562ae0a6cde7ccebdbc38f26d1d861ed8f5d6364600727f/jiter-0.4.2.tar.gz",
    "platform": null,
    "description": "# jiter\n\n[![CI](https://github.com/pydantic/jiter/workflows/CI/badge.svg?event=push)](https://github.com/pydantic/jiter/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)\n[![pypi](https://img.shields.io/pypi/v/jiter.svg)](https://pypi.python.org/pypi/jiter)\n[![versions](https://img.shields.io/pypi/pyversions/jiter.svg)](https://github.com/pydantic/jiter)\n[![license](https://img.shields.io/github/license/pydantic/jiter.svg)](https://github.com/pydantic/jiter/blob/main/LICENSE)\n\nThis is a standalone version of the JSON parser used in `pydantic-core`. The recommendation is to only use this package directly if you do not use `pydantic`.\n\nThe API is extremely minimal:\n\n```python\ndef from_json(\n    json_data: bytes,\n    /,\n    *,\n    allow_inf_nan: bool = True,\n    cache_mode: Literal[True, False, \"all\", \"keys\", \"none\"] = \"all\",\n    partial_mode: Literal[True, False, \"off\", \"on\", \"trailing-strings\"] = False,\n    catch_duplicate_keys: bool = False,\n    lossless_floats: bool = False,\n) -> Any:\n    \"\"\"\n    Parse input bytes into a JSON object.\n\n    Arguments:\n        json_data: The JSON data to parse\n        allow_inf_nan: Whether to allow infinity (`Infinity` an `-Infinity`) and `NaN` values to float fields.\n            Defaults to True.\n        cache_mode: cache Python strings to improve performance at the cost of some memory usage\n            - True / 'all' - cache all strings\n            - 'keys' - cache only object keys\n            - False / 'none' - cache nothing\n        partial_mode: How to handle incomplete strings:\n            - False / 'off' - raise an exception if the input is incomplete\n            - True / 'on' - allow incomplete JSON but discard the last string if it is incomplete\n            - 'trailing-strings' - allow incomplete JSON, and include the last incomplete string in the output\n        catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times\n        lossless_floats: if True, preserve full detail on floats using `LosslessFloat`\n\n    Returns:\n        Python object built from the JSON input.\n    \"\"\"\n\ndef cache_clear() -> None:\n    \"\"\"\n    Reset the string cache.\n    \"\"\"\n\ndef cache_usage() -> int:\n    \"\"\"\n    get the size of the string cache.\n\n    Returns:\n        Size of the string cache in bytes.\n    \"\"\"\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast iterable JSON parser.",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://github.com/pydantic/jiter/",
        "Source Code": "https://github.com/pydantic/jiter/"
    },
    "split_keywords": [
        "json",
        " parsing",
        " deserialization",
        " iter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39f72f9818e31a96c48ef7a5ae177dc973ce00c1f83c54df151c394f4e21da3b",
                "md5": "deba5f4b50d4e9bbe040a3bc7d952612",
                "sha256": "c2b003ff58d14f5e182b875acd5177b2367245c19a03be9a2230535d296f7550"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "deba5f4b50d4e9bbe040a3bc7d952612",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 305280,
            "upload_time": "2024-06-12T09:33:21",
            "upload_time_iso_8601": "2024-06-12T09:33:21.542397Z",
            "url": "https://files.pythonhosted.org/packages/39/f7/2f9818e31a96c48ef7a5ae177dc973ce00c1f83c54df151c394f4e21da3b/jiter-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0615643fafdaaadc15698846ef371dc1fb81389dc75fb1ad855b90afebfc19b5",
                "md5": "fb7e91070f245759f7fbe8f954dc3e2e",
                "sha256": "b48c77c25f094707731cd5bad6b776046846b60a27ee20efc8fadfb10a89415f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb7e91070f245759f7fbe8f954dc3e2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 314150,
            "upload_time": "2024-06-12T09:33:22",
            "upload_time_iso_8601": "2024-06-12T09:33:22.765286Z",
            "url": "https://files.pythonhosted.org/packages/06/15/643fafdaaadc15698846ef371dc1fb81389dc75fb1ad855b90afebfc19b5/jiter-0.4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05bac4bf4ba4e1bad7ff92d4116832cd066eb2bacd6a5ebc4dd8c0a1db380983",
                "md5": "c03486ccec3958343ddc8e0d7e8ddda1",
                "sha256": "9f50ad6b172bde4d45f4d4ea10c49282a337b8bb735afc99763dfa55ea84a743"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c03486ccec3958343ddc8e0d7e8ddda1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1083312,
            "upload_time": "2024-06-12T09:33:24",
            "upload_time_iso_8601": "2024-06-12T09:33:24.230862Z",
            "url": "https://files.pythonhosted.org/packages/05/ba/c4bf4ba4e1bad7ff92d4116832cd066eb2bacd6a5ebc4dd8c0a1db380983/jiter-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9bbaaab54db1c57d046d88a105edefd84f248a638caa25c21af6725a2183e26",
                "md5": "100fa1d3cc8b8176196d3e3895383948",
                "sha256": "95f6001e86f525fbbc9706db2078dc22be078b0950de55b92d37041930f5f940"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "100fa1d3cc8b8176196d3e3895383948",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1105006,
            "upload_time": "2024-06-12T09:33:25",
            "upload_time_iso_8601": "2024-06-12T09:33:25.868904Z",
            "url": "https://files.pythonhosted.org/packages/b9/bb/aaab54db1c57d046d88a105edefd84f248a638caa25c21af6725a2183e26/jiter-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18b11c7ecb09b74c33127659b39247aec32976a76d639e75868a2f5a2d653ed9",
                "md5": "9fc1a529c594c9ee5d4932a9bf8739cd",
                "sha256": "16646ef23b62b007de80460d303ebb2d81e355dac9389c787cec87cdd7ffef2f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9fc1a529c594c9ee5d4932a9bf8739cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1118801,
            "upload_time": "2024-06-12T09:33:27",
            "upload_time_iso_8601": "2024-06-12T09:33:27.080703Z",
            "url": "https://files.pythonhosted.org/packages/18/b1/1c7ecb09b74c33127659b39247aec32976a76d639e75868a2f5a2d653ed9/jiter-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79ba5255c3bfbed0851e6633c760cdf48eaa04ba8c74a9f0e3d5f35e5f2d061d",
                "md5": "8d67ea688ad86d569b7323c46039f08c",
                "sha256": "4b4e847c13b0bf1255c711a92330e7a8cb8b5cdd1e37d7db309627bcdd3367ff"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8d67ea688ad86d569b7323c46039f08c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1250179,
            "upload_time": "2024-06-12T09:33:28",
            "upload_time_iso_8601": "2024-06-12T09:33:28.759112Z",
            "url": "https://files.pythonhosted.org/packages/79/ba/5255c3bfbed0851e6633c760cdf48eaa04ba8c74a9f0e3d5f35e5f2d061d/jiter-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a9ca1b58666553e19dfc206c7f6a9babb25085c019c086475611c44c16f360f",
                "md5": "d32e3a89cfca8ac77f64f44bebcdc1da",
                "sha256": "3c536589be60e4c5f2b20fadc4db7e9f55d4c9df3551f29ddf1c4a18dcc9dd54"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d32e3a89cfca8ac77f64f44bebcdc1da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 327554,
            "upload_time": "2024-06-12T09:33:30",
            "upload_time_iso_8601": "2024-06-12T09:33:30.532313Z",
            "url": "https://files.pythonhosted.org/packages/0a/9c/a1b58666553e19dfc206c7f6a9babb25085c019c086475611c44c16f360f/jiter-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f78f5c4631b9f3185e21604b04a5aa04117fc808c49c8039caf9361f5cc02f1",
                "md5": "e82e5d1f8267716928abf43ac7d6a273",
                "sha256": "b3b2763996167830889a854b4ded30bb90897f9b76be78069c50c3ec4540950e"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e82e5d1f8267716928abf43ac7d6a273",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1126361,
            "upload_time": "2024-06-12T09:33:32",
            "upload_time_iso_8601": "2024-06-12T09:33:32.133556Z",
            "url": "https://files.pythonhosted.org/packages/4f/78/f5c4631b9f3185e21604b04a5aa04117fc808c49c8039caf9361f5cc02f1/jiter-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a25467e972fc7f8f8c6c11bd4bb9390e23b5d366bfa0a519b81a478585fb6f0b",
                "md5": "cbb0e73bb13b38f7217d9cb400eca87b",
                "sha256": "675e8ab98c99495091af6b6e9bf2b6353bcf81f25ab6ce27d36127e315b4505d"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbb0e73bb13b38f7217d9cb400eca87b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1246472,
            "upload_time": "2024-06-12T09:33:33",
            "upload_time_iso_8601": "2024-06-12T09:33:33.876146Z",
            "url": "https://files.pythonhosted.org/packages/a2/54/67e972fc7f8f8c6c11bd4bb9390e23b5d366bfa0a519b81a478585fb6f0b/jiter-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c006da4784c04da2efe625566fc754fa4afd1b8eb4fe15202c8be5e26ac5901e",
                "md5": "3d68c6623d8ceba2e80ede7b32553089",
                "sha256": "e48e43d9d999aaf55f53406b8846ff8cbe3e47ee4b9dc37e5a10a65ce760809f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d68c6623d8ceba2e80ede7b32553089",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1250393,
            "upload_time": "2024-06-12T09:33:35",
            "upload_time_iso_8601": "2024-06-12T09:33:35.353686Z",
            "url": "https://files.pythonhosted.org/packages/c0/06/da4784c04da2efe625566fc754fa4afd1b8eb4fe15202c8be5e26ac5901e/jiter-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3189864c69a7747eeb561680d77e83fcbd6978fbbd788246c4988c22980b8fd",
                "md5": "a20018aa149d5d6c87bfbe8380d0107e",
                "sha256": "881b6e67c50bc36acb3570eda693763c8cd77d590940e06fa6d325d0da52ec1b"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a20018aa149d5d6c87bfbe8380d0107e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 207384,
            "upload_time": "2024-06-12T09:33:37",
            "upload_time_iso_8601": "2024-06-12T09:33:37.104880Z",
            "url": "https://files.pythonhosted.org/packages/f3/18/9864c69a7747eeb561680d77e83fcbd6978fbbd788246c4988c22980b8fd/jiter-0.4.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d59a7ca923facab92c3274e8617542487103d48d3fab40406e175602679ff5a0",
                "md5": "763cb1449579384901e8312964cfee98",
                "sha256": "bb8f7b43259efc6add0d721ade2953e064b24e2026d26d979bc09ec080844cef"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "763cb1449579384901e8312964cfee98",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 203863,
            "upload_time": "2024-06-12T09:33:38",
            "upload_time_iso_8601": "2024-06-12T09:33:38.501954Z",
            "url": "https://files.pythonhosted.org/packages/d5/9a/7ca923facab92c3274e8617542487103d48d3fab40406e175602679ff5a0/jiter-0.4.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d2390d8045fb8a082e06d6a290f1add325209025b16f681c4e5f779f2d19e95",
                "md5": "dde12cb26ef5b7a1ac3abf5bc3cfe299",
                "sha256": "24ad336ac47f274fa83f6fbedcabff9d3387c80f67c66b992688e6a8ba2c47e9"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dde12cb26ef5b7a1ac3abf5bc3cfe299",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 304382,
            "upload_time": "2024-06-12T09:33:39",
            "upload_time_iso_8601": "2024-06-12T09:33:39.695872Z",
            "url": "https://files.pythonhosted.org/packages/7d/23/90d8045fb8a082e06d6a290f1add325209025b16f681c4e5f779f2d19e95/jiter-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5edbaed8e4fb6961eb60f13c9efb99d681cf308dd2cb651670e167daef87979b",
                "md5": "c00a73effe2a54f308a518f41a3984ea",
                "sha256": "fc392a220095730afe365ce1516f2f88bb085a2fd29ea191be9c6e3c71713d9a"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c00a73effe2a54f308a518f41a3984ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 313278,
            "upload_time": "2024-06-12T09:33:41",
            "upload_time_iso_8601": "2024-06-12T09:33:41.193084Z",
            "url": "https://files.pythonhosted.org/packages/5e/db/aed8e4fb6961eb60f13c9efb99d681cf308dd2cb651670e167daef87979b/jiter-0.4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0687213927c2be78c1343e16413f96f75d810ade9c9d0fe29b40ef26757585",
                "md5": "98674e58bd76f8b761928110197ca820",
                "sha256": "c1fdc408de36c81460896de0176f2f7b9f3574dcd35693a0b2c00f4ca34c98e4"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98674e58bd76f8b761928110197ca820",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1082767,
            "upload_time": "2024-06-12T09:33:42",
            "upload_time_iso_8601": "2024-06-12T09:33:42.709673Z",
            "url": "https://files.pythonhosted.org/packages/4b/06/87213927c2be78c1343e16413f96f75d810ade9c9d0fe29b40ef26757585/jiter-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a9ae277e9415e8a86de7ab780a671e0e8bc08d897a71a2cff1ceb37186c6915",
                "md5": "974d938cc8a304e420a471b4c5233b76",
                "sha256": "c10ad76722ee6a8c820b0db06a793c08b7d679e5201b9563015bd1e06c959a09"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "974d938cc8a304e420a471b4c5233b76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1104911,
            "upload_time": "2024-06-12T09:33:44",
            "upload_time_iso_8601": "2024-06-12T09:33:44.453795Z",
            "url": "https://files.pythonhosted.org/packages/6a/9a/e277e9415e8a86de7ab780a671e0e8bc08d897a71a2cff1ceb37186c6915/jiter-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4bb5b9755f2055b2f534a5a753e6060b07aa783e031a77086da74b5106f03b2",
                "md5": "fb63769bad809b64adaa57640ffbd1d5",
                "sha256": "dbb46d1e9c82bba87f0cbda38413e49448a7df35b1e55917124bff9f38974a23"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fb63769bad809b64adaa57640ffbd1d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1118984,
            "upload_time": "2024-06-12T09:33:45",
            "upload_time_iso_8601": "2024-06-12T09:33:45.626010Z",
            "url": "https://files.pythonhosted.org/packages/e4/bb/5b9755f2055b2f534a5a753e6060b07aa783e031a77086da74b5106f03b2/jiter-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42b078f5434279e9fdadc604332fb5cb061f7d0c483771ff57e602b5e053be3c",
                "md5": "476e659f6e5878661b9d0f752d99d79c",
                "sha256": "194e28ef4b5f3b61408cb2ee6b6dcbcdb0c9063d01b92b01345b7605692849f5"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "476e659f6e5878661b9d0f752d99d79c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1250373,
            "upload_time": "2024-06-12T09:33:47",
            "upload_time_iso_8601": "2024-06-12T09:33:47.273077Z",
            "url": "https://files.pythonhosted.org/packages/42/b0/78f5434279e9fdadc604332fb5cb061f7d0c483771ff57e602b5e053be3c/jiter-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deb3eaf649816fe36ef7eece53c2ebbf12b9acad3f798e32c9895a3f9ffd5d5e",
                "md5": "df5339c92bc4e99fd1ee71d9076ba5a7",
                "sha256": "1f0a447533eccd62748a727e058efa10a8d7cf1de8ffe1a4d705ecb41dad9090"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df5339c92bc4e99fd1ee71d9076ba5a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 327465,
            "upload_time": "2024-06-12T09:33:48",
            "upload_time_iso_8601": "2024-06-12T09:33:48.929678Z",
            "url": "https://files.pythonhosted.org/packages/de/b3/eaf649816fe36ef7eece53c2ebbf12b9acad3f798e32c9895a3f9ffd5d5e/jiter-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85859a5415c3e0dbaf9063142c532c78f5dcf116aa9df5f205a0bd0d010a54ba",
                "md5": "af668688352fa7208dcc5dcab7b35d5d",
                "sha256": "5f7704d7260bbb88cca3453951af739589132b26e896a3144fa2dae2263716d7"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "af668688352fa7208dcc5dcab7b35d5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1126402,
            "upload_time": "2024-06-12T09:33:50",
            "upload_time_iso_8601": "2024-06-12T09:33:50.791236Z",
            "url": "https://files.pythonhosted.org/packages/85/85/9a5415c3e0dbaf9063142c532c78f5dcf116aa9df5f205a0bd0d010a54ba/jiter-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22dbc44176ef6b976ab9018cb4fdf2ab0b6f263864ce19ded02d9dee1b5a47c5",
                "md5": "d4de70ca6727696c3a6f17fc25720571",
                "sha256": "01427458bc9550f2eda09d425755330e7d0eb09adce099577433bebf05d28d59"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4de70ca6727696c3a6f17fc25720571",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1247009,
            "upload_time": "2024-06-12T09:33:52",
            "upload_time_iso_8601": "2024-06-12T09:33:52.097094Z",
            "url": "https://files.pythonhosted.org/packages/22/db/c44176ef6b976ab9018cb4fdf2ab0b6f263864ce19ded02d9dee1b5a47c5/jiter-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b15f4f702e03dc8569a21fb859abba2595798dad7dcd57e87036c7db98da6148",
                "md5": "425c97a45e24bce194e51e160acb6507",
                "sha256": "159b8416879c0053b17c352f70b67b749ef5b2924c6154318ecf71918aab0905"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "425c97a45e24bce194e51e160acb6507",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1250364,
            "upload_time": "2024-06-12T09:33:53",
            "upload_time_iso_8601": "2024-06-12T09:33:53.429773Z",
            "url": "https://files.pythonhosted.org/packages/b1/5f/4f702e03dc8569a21fb859abba2595798dad7dcd57e87036c7db98da6148/jiter-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1db185a340bbdd72f936a4824d6d5abdc16940bae2eb2d37e9d8302451a04714",
                "md5": "ce15f6cf4fb2fc2fb02054648963a972",
                "sha256": "f2445234acfb79048ce1a0d5d0e181abb9afd9e4a29d8d9988fe26cc5773a81a"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ce15f6cf4fb2fc2fb02054648963a972",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 207001,
            "upload_time": "2024-06-12T09:33:54",
            "upload_time_iso_8601": "2024-06-12T09:33:54.565786Z",
            "url": "https://files.pythonhosted.org/packages/1d/b1/85a340bbdd72f936a4824d6d5abdc16940bae2eb2d37e9d8302451a04714/jiter-0.4.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "daf16f4c976b4354fe15125814717a7718701135a5e07058aaec43f0e972a94d",
                "md5": "2b214cc7feff12d62c87d0c4d6be3aa0",
                "sha256": "e15a65f233b6b0e5ac10ddf3b97ceb18aa9ffba096259961641d78b4ee321bd5"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2b214cc7feff12d62c87d0c4d6be3aa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 201695,
            "upload_time": "2024-06-12T09:33:56",
            "upload_time_iso_8601": "2024-06-12T09:33:56.164255Z",
            "url": "https://files.pythonhosted.org/packages/da/f1/6f4c976b4354fe15125814717a7718701135a5e07058aaec43f0e972a94d/jiter-0.4.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab6f20865d95b8f0159426ff55d125a2dcd920f04aead696458922d226096241",
                "md5": "9807ca0f93a9f4aa17e8a11749e74a83",
                "sha256": "d61d59521aea9745447ce50f74d39a16ef74ec9d6477d9350d77e75a3d774ad2"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9807ca0f93a9f4aa17e8a11749e74a83",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 303435,
            "upload_time": "2024-06-12T09:33:57",
            "upload_time_iso_8601": "2024-06-12T09:33:57.414876Z",
            "url": "https://files.pythonhosted.org/packages/ab/6f/20865d95b8f0159426ff55d125a2dcd920f04aead696458922d226096241/jiter-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13e9d1eae3fe386a7f8f9a210d19e18bbd4afe44eee73a9e08a424c260c0a365",
                "md5": "ae432f095bd2c5f9b61db9ceb370dfe2",
                "sha256": "8eef607dc0acc251923427808dbd017f1998ae3c1a0430a261527aa5cbb3a942"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae432f095bd2c5f9b61db9ceb370dfe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 312045,
            "upload_time": "2024-06-12T09:33:58",
            "upload_time_iso_8601": "2024-06-12T09:33:58.789525Z",
            "url": "https://files.pythonhosted.org/packages/13/e9/d1eae3fe386a7f8f9a210d19e18bbd4afe44eee73a9e08a424c260c0a365/jiter-0.4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce5749be4b56f4ad7ff7547f378aa9268fc2d250f029f77f286a5131f010a0a5",
                "md5": "87b21a7baa9f98e92729f215923b727b",
                "sha256": "af6bf39954646e374fc47429c656372ac731a6a26b644158a5a84bcdbed33a47"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87b21a7baa9f98e92729f215923b727b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1080203,
            "upload_time": "2024-06-12T09:34:00",
            "upload_time_iso_8601": "2024-06-12T09:34:00.113099Z",
            "url": "https://files.pythonhosted.org/packages/ce/57/49be4b56f4ad7ff7547f378aa9268fc2d250f029f77f286a5131f010a0a5/jiter-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4244583fdcdb8d8e0e73d5b7d129119cda67f92bde72f8f51518f4883a53e6e3",
                "md5": "a2ce39c50517c4689195a9dab01e8c70",
                "sha256": "8f509d23606e476852ee46a2b65b5c4ad3905f17424d9cc19c1dffa1c94ba3c6"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a2ce39c50517c4689195a9dab01e8c70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1103879,
            "upload_time": "2024-06-12T09:34:01",
            "upload_time_iso_8601": "2024-06-12T09:34:01.901218Z",
            "url": "https://files.pythonhosted.org/packages/42/44/583fdcdb8d8e0e73d5b7d129119cda67f92bde72f8f51518f4883a53e6e3/jiter-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3179f1c0bae2a14a8f27d31121b6e725ca0d6e73066c4bc4dde98b0b06bde44a",
                "md5": "8b2eb18f6130fbf7d774dac521db74b8",
                "sha256": "59672774daa44ee140aada0c781c82bee4d9ac5e522966186cfb6b3c217d8a51"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8b2eb18f6130fbf7d774dac521db74b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1116790,
            "upload_time": "2024-06-12T09:34:03",
            "upload_time_iso_8601": "2024-06-12T09:34:03.798019Z",
            "url": "https://files.pythonhosted.org/packages/31/79/f1c0bae2a14a8f27d31121b6e725ca0d6e73066c4bc4dde98b0b06bde44a/jiter-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "672f33e51effdd869eec6cdd7270ca52b5edc2e156fef94a6752750c619127a2",
                "md5": "d86e17b0ebe69fffd1af4f2a860e976d",
                "sha256": "24a0458efac5afeca254cf557b8a654e17013075a69905c78f88d557f129d871"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d86e17b0ebe69fffd1af4f2a860e976d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1240021,
            "upload_time": "2024-06-12T09:34:05",
            "upload_time_iso_8601": "2024-06-12T09:34:05.475118Z",
            "url": "https://files.pythonhosted.org/packages/67/2f/33e51effdd869eec6cdd7270ca52b5edc2e156fef94a6752750c619127a2/jiter-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc82a000e84840d6483fe2afdbb6fd78122ba589a9df387b79c3207d76a5c2da",
                "md5": "11b490df0982ec85d1f006389d5ca8b7",
                "sha256": "d8860766d1c293e75c1bb4e25b74fa987e3adf199cac3f5f9e6e49c2bebf092f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11b490df0982ec85d1f006389d5ca8b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 326243,
            "upload_time": "2024-06-12T09:34:06",
            "upload_time_iso_8601": "2024-06-12T09:34:06.796340Z",
            "url": "https://files.pythonhosted.org/packages/cc/82/a000e84840d6483fe2afdbb6fd78122ba589a9df387b79c3207d76a5c2da/jiter-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "853f7801819d7f15a931993aecdc94289ca141846cb6ececac8d70a78da86d02",
                "md5": "eb2375eb251e1fabb69a14a2a568221d",
                "sha256": "a109f3281b72bbf4921fe43db1005c004a38559ca0b6c4985add81777dfe0a44"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "eb2375eb251e1fabb69a14a2a568221d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1125380,
            "upload_time": "2024-06-12T09:34:07",
            "upload_time_iso_8601": "2024-06-12T09:34:07.889768Z",
            "url": "https://files.pythonhosted.org/packages/85/3f/7801819d7f15a931993aecdc94289ca141846cb6ececac8d70a78da86d02/jiter-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "264ad77d4be6aa2ac992e5f6cc53b123346ad7a2f756a3d9af981116a6dc42da",
                "md5": "e6eb7e2a422568bcf4cbb59a3ab3b7e5",
                "sha256": "faa7e667454b77ad2f0ef87db39f4944de759617aadf210ea2b73f26bb24755f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e6eb7e2a422568bcf4cbb59a3ab3b7e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1245803,
            "upload_time": "2024-06-12T09:34:09",
            "upload_time_iso_8601": "2024-06-12T09:34:09.291671Z",
            "url": "https://files.pythonhosted.org/packages/26/4a/d77d4be6aa2ac992e5f6cc53b123346ad7a2f756a3d9af981116a6dc42da/jiter-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfafe28da40333afdee984d43420fdb5b35bdd00beb9efd4e31696a893372a2b",
                "md5": "8fc5a397c15c9ef88494ffa98ab2bbb5",
                "sha256": "3512f8b00cafb6780b427cb6282800d2bf8277161d9c917830661bd4ed1d3528"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fc5a397c15c9ef88494ffa98ab2bbb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1249226,
            "upload_time": "2024-06-12T09:34:10",
            "upload_time_iso_8601": "2024-06-12T09:34:10.918322Z",
            "url": "https://files.pythonhosted.org/packages/df/af/e28da40333afdee984d43420fdb5b35bdd00beb9efd4e31696a893372a2b/jiter-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3118442533b5b1d33473cfe69ca93136f6c109cff4c8c5a0b710b9a8f0606fe9",
                "md5": "2b3e10b9cc4eb50d1e3e4e04ae413ec9",
                "sha256": "853b35d508ee5b66d06630473c1c0b7bb5e29bf4785c9d2202437116c94f7e21"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2b3e10b9cc4eb50d1e3e4e04ae413ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 208283,
            "upload_time": "2024-06-12T09:34:13",
            "upload_time_iso_8601": "2024-06-12T09:34:13.028695Z",
            "url": "https://files.pythonhosted.org/packages/31/18/442533b5b1d33473cfe69ca93136f6c109cff4c8c5a0b710b9a8f0606fe9/jiter-0.4.2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a39e97cfe748420a5290893113b44d82f6415870269d61a3469bf96eac53886e",
                "md5": "d01e67370d996749bdd7fb7b8a14f09c",
                "sha256": "4a3a8197784278eb8b24cb02c45e1cad67c2ce5b5b758adfb19b87f74bbdff9c"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d01e67370d996749bdd7fb7b8a14f09c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 200023,
            "upload_time": "2024-06-12T09:34:14",
            "upload_time_iso_8601": "2024-06-12T09:34:14.561352Z",
            "url": "https://files.pythonhosted.org/packages/a3/9e/97cfe748420a5290893113b44d82f6415870269d61a3469bf96eac53886e/jiter-0.4.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d646023d1717f1a5d577c8293518b01ec8abf2a6579ccc58292d24993c212c0",
                "md5": "8a554a2aff5a92cc2b2bc1ee4998047d",
                "sha256": "ca2a4d750aed3154b89f2efb148609fc985fad8db739460797aaf9b478acedda"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a554a2aff5a92cc2b2bc1ee4998047d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 305188,
            "upload_time": "2024-06-12T09:34:15",
            "upload_time_iso_8601": "2024-06-12T09:34:15.571196Z",
            "url": "https://files.pythonhosted.org/packages/9d/64/6023d1717f1a5d577c8293518b01ec8abf2a6579ccc58292d24993c212c0/jiter-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e03b24148b7ee054c16302866e498cc5d688b1ccfe77041e6c8b7fd51f47a2c2",
                "md5": "a6af50c98021300db3ed042974a19d3f",
                "sha256": "0e6c304b3cc6896256727e1fb8991c7179a345eca8224e201795e9cacf4683b0"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a6af50c98021300db3ed042974a19d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 304218,
            "upload_time": "2024-06-12T09:34:16",
            "upload_time_iso_8601": "2024-06-12T09:34:16.681096Z",
            "url": "https://files.pythonhosted.org/packages/e0/3b/24148b7ee054c16302866e498cc5d688b1ccfe77041e6c8b7fd51f47a2c2/jiter-0.4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8332225df9af317334eb4bc2912435bb94d9a87e3cd931d7d2a3f9eca45f97c",
                "md5": "622c5099e7764abae4938e636788fa82",
                "sha256": "7cc34ac708ae1750d077e490321761ec4b9a055b994cbdd1d6fbd37099e4aa7b"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "622c5099e7764abae4938e636788fa82",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1082257,
            "upload_time": "2024-06-12T09:34:17",
            "upload_time_iso_8601": "2024-06-12T09:34:17.917075Z",
            "url": "https://files.pythonhosted.org/packages/e8/33/2225df9af317334eb4bc2912435bb94d9a87e3cd931d7d2a3f9eca45f97c/jiter-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1af127d07bbed4ede4002f7a1fbfbdda65b6f8f9cc09a40b5fdbc53754a2b3fa",
                "md5": "c0ac4332286c66fd9492fadae72316f9",
                "sha256": "8c93383875ab8d2e4f760aaff335b4a12ff32d4f9cf49c4498d657734f611466"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c0ac4332286c66fd9492fadae72316f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1105660,
            "upload_time": "2024-06-12T09:34:19",
            "upload_time_iso_8601": "2024-06-12T09:34:19.360287Z",
            "url": "https://files.pythonhosted.org/packages/1a/f1/27d07bbed4ede4002f7a1fbfbdda65b6f8f9cc09a40b5fdbc53754a2b3fa/jiter-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32022a2f4488e5c98115e257ae48b003bdf354ee28f5c924f0d165410186079b",
                "md5": "b3c63e15b66712592dff2119210cdd6a",
                "sha256": "ce197ee044add576afca0955b42142dd0312639adb6ebadbdbe4277f2855614f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3c63e15b66712592dff2119210cdd6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1119361,
            "upload_time": "2024-06-12T09:34:20",
            "upload_time_iso_8601": "2024-06-12T09:34:20.885085Z",
            "url": "https://files.pythonhosted.org/packages/32/02/2a2f4488e5c98115e257ae48b003bdf354ee28f5c924f0d165410186079b/jiter-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8714b75a34519c1b9098d8f1f69689bb3debad0964dfae53b735188168c2cdfd",
                "md5": "36d583f9b894de2a3f6c9b18890fb7f9",
                "sha256": "5a427716813ff65480ca5b5117cfa099f49b49cd38051f8609bd0d5493013ca0"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "36d583f9b894de2a3f6c9b18890fb7f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1251603,
            "upload_time": "2024-06-12T09:34:22",
            "upload_time_iso_8601": "2024-06-12T09:34:22.365508Z",
            "url": "https://files.pythonhosted.org/packages/87/14/b75a34519c1b9098d8f1f69689bb3debad0964dfae53b735188168c2cdfd/jiter-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23589a61f7645a35b707c8690b6f901764071105389501e00053f5b2b7760a3d",
                "md5": "d53f39faf6a0e6820a3824ff90091760",
                "sha256": "479990218353356234669e70fac53e5eb6f739a10db25316171aede2c97d9364"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d53f39faf6a0e6820a3824ff90091760",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 327673,
            "upload_time": "2024-06-12T09:34:24",
            "upload_time_iso_8601": "2024-06-12T09:34:24.080906Z",
            "url": "https://files.pythonhosted.org/packages/23/58/9a61f7645a35b707c8690b6f901764071105389501e00053f5b2b7760a3d/jiter-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "954ce5c4418e155c56fef6f4a8cb629a557c11bb97a320709ed5e417c142f96c",
                "md5": "7c98b32b044a61c69fa29fd5effbe5bd",
                "sha256": "d35a91ec5ac74cf33234c431505299fa91c0a197c2dbafd47400aca7c69489d4"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7c98b32b044a61c69fa29fd5effbe5bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1127117,
            "upload_time": "2024-06-12T09:34:25",
            "upload_time_iso_8601": "2024-06-12T09:34:25.502572Z",
            "url": "https://files.pythonhosted.org/packages/95/4c/e5c4418e155c56fef6f4a8cb629a557c11bb97a320709ed5e417c142f96c/jiter-0.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ed31d99f59967f7722ed2921002542f12400eb4f6defe0ef664d9f85e55064a",
                "md5": "0d3e4eb04bed202093d942fed9f34350",
                "sha256": "b27189847193708c94ad10ca0d891309342ae882725d2187cf5d2db02bde8d1b"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d3e4eb04bed202093d942fed9f34350",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1246531,
            "upload_time": "2024-06-12T09:34:26",
            "upload_time_iso_8601": "2024-06-12T09:34:26.890740Z",
            "url": "https://files.pythonhosted.org/packages/1e/d3/1d99f59967f7722ed2921002542f12400eb4f6defe0ef664d9f85e55064a/jiter-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42af22f391a41764230ee91a3a27a17b6add5d9ed203037200934060ff4d158d",
                "md5": "fc0862324e7d28849dde61bfeefc8e9c",
                "sha256": "76c255308cd1093fb411a03756b7bb220e48d4a98c30cbc79ed448bf3978e27d"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc0862324e7d28849dde61bfeefc8e9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1250365,
            "upload_time": "2024-06-12T09:34:28",
            "upload_time_iso_8601": "2024-06-12T09:34:28.410716Z",
            "url": "https://files.pythonhosted.org/packages/42/af/22f391a41764230ee91a3a27a17b6add5d9ed203037200934060ff4d158d/jiter-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "349cfa1aa245dae7440c5327d6f0314baab7dfd75aaf7b41176caedae57f2236",
                "md5": "a7474385a80644dadf575791ad347c65",
                "sha256": "bb77438060bad49cc251941e6701b31138365c8a0ddaf10cdded2fcc6dd30701"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a7474385a80644dadf575791ad347c65",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 208442,
            "upload_time": "2024-06-12T09:34:30",
            "upload_time_iso_8601": "2024-06-12T09:34:30.081699Z",
            "url": "https://files.pythonhosted.org/packages/34/9c/fa1aa245dae7440c5327d6f0314baab7dfd75aaf7b41176caedae57f2236/jiter-0.4.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00cbdb1ead2da26bd6108f7f53557350945ada37f38144483d8b5fdc4a510487",
                "md5": "596d81bb9703dfba4ef46afbc891e29b",
                "sha256": "ce858af19f7ce0d4b51c9f6c0c9d08f1e9dcef1986c5875efd0674a7054292ca"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "596d81bb9703dfba4ef46afbc891e29b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 202159,
            "upload_time": "2024-06-12T09:34:31",
            "upload_time_iso_8601": "2024-06-12T09:34:31.803005Z",
            "url": "https://files.pythonhosted.org/packages/00/cb/db1ead2da26bd6108f7f53557350945ada37f38144483d8b5fdc4a510487/jiter-0.4.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9019053996c9e8cc60c9a0f133afa1c5c1ec0e7fad2e181469bc46de8c1d1256",
                "md5": "526681275d033367c28224597242c0e5",
                "sha256": "6128838a2f357b3921b2a3242d5dc002ae4255ecc8f9f05c20d56d7d2d79c5ad"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "526681275d033367c28224597242c0e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 305348,
            "upload_time": "2024-06-12T09:34:33",
            "upload_time_iso_8601": "2024-06-12T09:34:33.090546Z",
            "url": "https://files.pythonhosted.org/packages/90/19/053996c9e8cc60c9a0f133afa1c5c1ec0e7fad2e181469bc46de8c1d1256/jiter-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbcb9e9fbf842d417e84c5d6a91c114e23eec3cc4282482c73e10c89f748e185",
                "md5": "e58c1a662c65358a000f236547cf2a88",
                "sha256": "f2420cebb9ba856cb57dcab1d2d8def949b464b0db09c22a4e4dbd52fff7b200"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e58c1a662c65358a000f236547cf2a88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 304594,
            "upload_time": "2024-06-12T09:34:34",
            "upload_time_iso_8601": "2024-06-12T09:34:34.413566Z",
            "url": "https://files.pythonhosted.org/packages/db/cb/9e9fbf842d417e84c5d6a91c114e23eec3cc4282482c73e10c89f748e185/jiter-0.4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ef5bda2691aabfc126456e87c25dd580a85012622e6d24afec3fd3bc3c60cff",
                "md5": "d6064f5c588d592965d4c1908da5724b",
                "sha256": "c5d13d8128e853b320e00bb18bd4bb8b136cc0936091dc87633648fc688eb705"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6064f5c588d592965d4c1908da5724b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1083345,
            "upload_time": "2024-06-12T09:34:35",
            "upload_time_iso_8601": "2024-06-12T09:34:35.777079Z",
            "url": "https://files.pythonhosted.org/packages/2e/f5/bda2691aabfc126456e87c25dd580a85012622e6d24afec3fd3bc3c60cff/jiter-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07b590a0e6bfcd3f347624c63638d5cb10e8f455c6059fb593c597847f2040c8",
                "md5": "d56fde16ae88adc95db8249144e14e80",
                "sha256": "eba5d6e54f149c508ba88677f97d3dc7dd75e9980d234bbac8027ac6db0763a3"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d56fde16ae88adc95db8249144e14e80",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1105703,
            "upload_time": "2024-06-12T09:34:37",
            "upload_time_iso_8601": "2024-06-12T09:34:37.097082Z",
            "url": "https://files.pythonhosted.org/packages/07/b5/90a0e6bfcd3f347624c63638d5cb10e8f455c6059fb593c597847f2040c8/jiter-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40e93ab58704e92a4e386dee76a3e09b03b83f1e11c9aa3a0a55014a00e5e0bd",
                "md5": "07154a9fe902bb41429b29c5338a6a76",
                "sha256": "0fad5d64af0bc0545237419bf4150d8de56f0bd217434bdd1a59730327252bef"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "07154a9fe902bb41429b29c5338a6a76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1119793,
            "upload_time": "2024-06-12T09:34:38",
            "upload_time_iso_8601": "2024-06-12T09:34:38.454438Z",
            "url": "https://files.pythonhosted.org/packages/40/e9/3ab58704e92a4e386dee76a3e09b03b83f1e11c9aa3a0a55014a00e5e0bd/jiter-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba4c13d39a07bc37bf6ca61783ecdf6309e170a849c0d3f9e6de31990f2864bf",
                "md5": "bd302637f27963186125340f75efa373",
                "sha256": "8d179e7bca89cf5719bd761dd37a341ff0f98199ecaa9c14af09792e47e977cc"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bd302637f27963186125340f75efa373",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1251362,
            "upload_time": "2024-06-12T09:34:39",
            "upload_time_iso_8601": "2024-06-12T09:34:39.714600Z",
            "url": "https://files.pythonhosted.org/packages/ba/4c/13d39a07bc37bf6ca61783ecdf6309e170a849c0d3f9e6de31990f2864bf/jiter-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63c4c4a033af6c56beab152844b01acc9262ba1d8d9c8df8b11dd3f58fe32471",
                "md5": "e424df9ebbeb8fc24a247409039b87d6",
                "sha256": "36353caee9f103d8ee7bda077f6400505b0f370e27eabcab33a33d21de12a2a6"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e424df9ebbeb8fc24a247409039b87d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 327827,
            "upload_time": "2024-06-12T09:34:41",
            "upload_time_iso_8601": "2024-06-12T09:34:41.251571Z",
            "url": "https://files.pythonhosted.org/packages/63/c4/c4a033af6c56beab152844b01acc9262ba1d8d9c8df8b11dd3f58fe32471/jiter-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c424e9d8ca117f37f9e4c8b0de335a813a961d2eb7c238ce4c10381074c44aa",
                "md5": "3fc19c2f90aae795620ef09bbab64341",
                "sha256": "dd146c25bce576ca5db64fc7eccb8862af00f1f0e30108796953f12a53660e4c"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3fc19c2f90aae795620ef09bbab64341",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1127260,
            "upload_time": "2024-06-12T09:34:42",
            "upload_time_iso_8601": "2024-06-12T09:34:42.606894Z",
            "url": "https://files.pythonhosted.org/packages/4c/42/4e9d8ca117f37f9e4c8b0de335a813a961d2eb7c238ce4c10381074c44aa/jiter-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "174b0dd1853158c167a17e1dd6715eba446cbf493786c11978d46ca23bb2bf84",
                "md5": "64c527ff91126a53d80209753dec0f6d",
                "sha256": "14b7c08cadbcd703041c66dc30e24e17de2f340281cac0e69374223ecf153aa4"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "64c527ff91126a53d80209753dec0f6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1247185,
            "upload_time": "2024-06-12T09:34:44",
            "upload_time_iso_8601": "2024-06-12T09:34:44.109084Z",
            "url": "https://files.pythonhosted.org/packages/17/4b/0dd1853158c167a17e1dd6715eba446cbf493786c11978d46ca23bb2bf84/jiter-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b29e3e6e29645d8728c604062a3a6da93b05b903969025ee416054d6f11f1680",
                "md5": "a68d086945803d95aa2561c4677cfe14",
                "sha256": "a90f1a8b3d29aea198f8ea2b01148276ced8056e5103f32525266b3d880e65c9"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a68d086945803d95aa2561c4677cfe14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1250381,
            "upload_time": "2024-06-12T09:34:45",
            "upload_time_iso_8601": "2024-06-12T09:34:45.527349Z",
            "url": "https://files.pythonhosted.org/packages/b2/9e/3e6e29645d8728c604062a3a6da93b05b903969025ee416054d6f11f1680/jiter-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d62031ab842eee87ec0e5f50b2aeb4a91886fa74eb30374f26ec1eaffe3ffbee",
                "md5": "5f836bbbf8c1c74ea1346976fd3f5e89",
                "sha256": "25b174997c780337b61ae57b1723455eecae9a17a9659044fd3c3b369190063f"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5f836bbbf8c1c74ea1346976fd3f5e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 208603,
            "upload_time": "2024-06-12T09:34:46",
            "upload_time_iso_8601": "2024-06-12T09:34:46.760145Z",
            "url": "https://files.pythonhosted.org/packages/d6/20/31ab842eee87ec0e5f50b2aeb4a91886fa74eb30374f26ec1eaffe3ffbee/jiter-0.4.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41abf382fcc61fb9e4f31b86297d7e28475e89f5abb6c787691b701bbb78b7db",
                "md5": "6d74accb35f7c0181bc33059ce49e47b",
                "sha256": "bef62cea18521c5b99368147040c7e560c55098a35c93456f110678a2d34189a"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d74accb35f7c0181bc33059ce49e47b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 204506,
            "upload_time": "2024-06-12T09:34:47",
            "upload_time_iso_8601": "2024-06-12T09:34:47.889611Z",
            "url": "https://files.pythonhosted.org/packages/41/ab/f382fcc61fb9e4f31b86297d7e28475e89f5abb6c787691b701bbb78b7db/jiter-0.4.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e7c030735d07ef00562ae0a6cde7ccebdbc38f26d1d861ed8f5d6364600727f",
                "md5": "cff0adc0ffc5dba276358c7f5953740e",
                "sha256": "29b9d44f23f0c05f46d482f4ebf03213ee290d77999525d0975a17f875bf1eea"
            },
            "downloads": -1,
            "filename": "jiter-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "cff0adc0ffc5dba276358c7f5953740e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 159226,
            "upload_time": "2024-06-12T09:34:48",
            "upload_time_iso_8601": "2024-06-12T09:34:48.980527Z",
            "url": "https://files.pythonhosted.org/packages/3e/7c/030735d07ef00562ae0a6cde7ccebdbc38f26d1d861ed8f5d6364600727f/jiter-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-12 09:34:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pydantic",
    "github_project": "jiter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jiter"
}
        
Elapsed time: 0.26946s