# 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,
float_mode: Literal["float", "decimal", "lossless-float"] = 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
float_mode: How to return floats: as a `float`, `Decimal` or `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.
"""
```
## Examples
The main function provided by Jiter is `from_json()`, which accepts a bytes object containing JSON and returns a Python dictionary, list or other value.
```python
import jiter
json_data = b'{"name": "John", "age": 30}'
parsed_data = jiter.from_json(json_data)
print(parsed_data) # Output: {'name': 'John', 'age': 30}
```
### Handling Partial JSON
Incomplete JSON objects can be parsed using the `partial_mode=` parameter.
```python
import jiter
partial_json = b'{"name": "John", "age": 30, "city": "New Yor'
# Raise error on incomplete JSON
try:
jiter.from_json(partial_json, partial_mode=False)
except ValueError as e:
print(f"Error: {e}")
# Parse incomplete JSON, discarding incomplete last field
result = jiter.from_json(partial_json, partial_mode=True)
print(result) # Output: {'name': 'John', 'age': 30}
# Parse incomplete JSON, including incomplete last field
result = jiter.from_json(partial_json, partial_mode='trailing-strings')
print(result) # Output: {'name': 'John', 'age': 30, 'city': 'New Yor'}
```
### Catching Duplicate Keys
The `catch_duplicate_keys=True` option can be used to raise a `ValueError` if an object contains duplicate keys.
```python
import jiter
json_with_dupes = b'{"foo": 1, "foo": 2}'
# Default behavior (last value wins)
result = jiter.from_json(json_with_dupes)
print(result) # Output: {'foo': 2}
# Catch duplicate keys
try:
jiter.from_json(json_with_dupes, catch_duplicate_keys=True)
except ValueError as e:
print(f"Error: {e}")
```
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/46/e5/50ff23c9bba2722d2f0f55ba51e57f7cbab9a4be758e6b9b263ef51e6024/jiter-0.7.1.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 float_mode: Literal[\"float\", \"decimal\", \"lossless-float\"] = 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 float_mode: How to return floats: as a `float`, `Decimal` or `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## Examples\n\nThe main function provided by Jiter is `from_json()`, which accepts a bytes object containing JSON and returns a Python dictionary, list or other value.\n\n```python\nimport jiter\n\njson_data = b'{\"name\": \"John\", \"age\": 30}'\nparsed_data = jiter.from_json(json_data)\nprint(parsed_data) # Output: {'name': 'John', 'age': 30}\n```\n\n### Handling Partial JSON\n\nIncomplete JSON objects can be parsed using the `partial_mode=` parameter.\n\n```python\nimport jiter\n\npartial_json = b'{\"name\": \"John\", \"age\": 30, \"city\": \"New Yor'\n\n# Raise error on incomplete JSON\ntry:\n jiter.from_json(partial_json, partial_mode=False)\nexcept ValueError as e:\n print(f\"Error: {e}\")\n\n# Parse incomplete JSON, discarding incomplete last field\nresult = jiter.from_json(partial_json, partial_mode=True)\nprint(result) # Output: {'name': 'John', 'age': 30}\n\n# Parse incomplete JSON, including incomplete last field\nresult = jiter.from_json(partial_json, partial_mode='trailing-strings')\nprint(result) # Output: {'name': 'John', 'age': 30, 'city': 'New Yor'}\n```\n\n### Catching Duplicate Keys\n\nThe `catch_duplicate_keys=True` option can be used to raise a `ValueError` if an object contains duplicate keys.\n\n```python\nimport jiter\n\njson_with_dupes = b'{\"foo\": 1, \"foo\": 2}'\n\n# Default behavior (last value wins)\nresult = jiter.from_json(json_with_dupes)\nprint(result) # Output: {'foo': 2}\n\n# Catch duplicate keys\ntry:\n jiter.from_json(json_with_dupes, catch_duplicate_keys=True)\nexcept ValueError as e:\n print(f\"Error: {e}\")\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Fast iterable JSON parser.",
"version": "0.7.1",
"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": "36f5c6ccaa2331037cbb69d82e3ab2f2beaec485dd9e42a2ac409e6219b2d7f0",
"md5": "33af00e2404caa625c66944e00ed3925",
"sha256": "262e96d06696b673fad6f257e6a0abb6e873dc22818ca0e0600f4a1189eb334f"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "33af00e2404caa625c66944e00ed3925",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 291030,
"upload_time": "2024-11-12T13:51:08",
"upload_time_iso_8601": "2024-11-12T13:51:08.404565Z",
"url": "https://files.pythonhosted.org/packages/36/f5/c6ccaa2331037cbb69d82e3ab2f2beaec485dd9e42a2ac409e6219b2d7f0/jiter-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "317e6abbccd6f22c4d90b836b654a3e12fa56c167f65439249c23ee36644630b",
"md5": "60dc032a356c9ba4222f208fef95d160",
"sha256": "be6de02939aac5be97eb437f45cfd279b1dc9de358b13ea6e040e63a3221c40d"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "60dc032a356c9ba4222f208fef95d160",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 303756,
"upload_time": "2024-11-12T13:51:10",
"upload_time_iso_8601": "2024-11-12T13:51:10.684951Z",
"url": "https://files.pythonhosted.org/packages/31/7e/6abbccd6f22c4d90b836b654a3e12fa56c167f65439249c23ee36644630b/jiter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f765a20de47be232547ee8a32f47989ac6a8f912a357af12eb48365ba7497003",
"md5": "e1ef69217313a1a92fca86839ec5bba9",
"sha256": "935f10b802bc1ce2b2f61843e498c7720aa7f4e4bb7797aa8121eab017293c3d"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e1ef69217313a1a92fca86839ec5bba9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 328525,
"upload_time": "2024-11-12T13:51:11",
"upload_time_iso_8601": "2024-11-12T13:51:11.899152Z",
"url": "https://files.pythonhosted.org/packages/f7/65/a20de47be232547ee8a32f47989ac6a8f912a357af12eb48365ba7497003/jiter-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b73b62c385cd8389a984449e749840d3ffcac727eadb59d636514b30681144e",
"md5": "4cc991be9d0b0df4b5ad9aa5ef1752f6",
"sha256": "9cd3cccccabf5064e4bb3099c87bf67db94f805c1e62d1aefd2b7476e90e0ee2"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4cc991be9d0b0df4b5ad9aa5ef1752f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 347344,
"upload_time": "2024-11-12T13:51:13",
"upload_time_iso_8601": "2024-11-12T13:51:13.098308Z",
"url": "https://files.pythonhosted.org/packages/5b/73/b62c385cd8389a984449e749840d3ffcac727eadb59d636514b30681144e/jiter-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75b76cd1e8b42a1dbc9d4c3a05401a80383ddb5d3d740015bf786cfb0a1c36db",
"md5": "dbc7534952807247716d13daf98d113c",
"sha256": "4aa919ebfc5f7b027cc368fe3964c0015e1963b92e1db382419dadb098a05192"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbc7534952807247716d13daf98d113c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 373480,
"upload_time": "2024-11-12T13:51:15",
"upload_time_iso_8601": "2024-11-12T13:51:15.195801Z",
"url": "https://files.pythonhosted.org/packages/75/b7/6cd1e8b42a1dbc9d4c3a05401a80383ddb5d3d740015bf786cfb0a1c36db/jiter-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a25e6bb5d28e9e7e046737b617ad9a05777ffa45d5ba355edd116efdad1fcd14",
"md5": "f38369b41455bbadfccae7f7c60ee0f4",
"sha256": "5ae2d01e82c94491ce4d6f461a837f63b6c4e6dd5bb082553a70c509034ff3d4"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f38369b41455bbadfccae7f7c60ee0f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 390794,
"upload_time": "2024-11-12T13:51:17",
"upload_time_iso_8601": "2024-11-12T13:51:17.623045Z",
"url": "https://files.pythonhosted.org/packages/a2/5e/6bb5d28e9e7e046737b617ad9a05777ffa45d5ba355edd116efdad1fcd14/jiter-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d0ce7ac4ac5327eff2b93bcd70e74ca76a0d6b0a6d2fc27f40707ddabfe7739",
"md5": "984bd79993a66ab74f8eace91b264756",
"sha256": "9f9568cd66dbbdab67ae1b4c99f3f7da1228c5682d65913e3f5f95586b3cb9a9"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "984bd79993a66ab74f8eace91b264756",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 325247,
"upload_time": "2024-11-12T13:51:19",
"upload_time_iso_8601": "2024-11-12T13:51:19.641374Z",
"url": "https://files.pythonhosted.org/packages/1d/0c/e7ac4ac5327eff2b93bcd70e74ca76a0d6b0a6d2fc27f40707ddabfe7739/jiter-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72190188794f2e3f8aedd16e4758fff810438f9f4207977553a8453c7e7382c4",
"md5": "4756fc714adec6417546797acc09941e",
"sha256": "9ecbf4e20ec2c26512736284dc1a3f8ed79b6ca7188e3b99032757ad48db97dc"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4756fc714adec6417546797acc09941e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 365216,
"upload_time": "2024-11-12T13:51:20",
"upload_time_iso_8601": "2024-11-12T13:51:20.876301Z",
"url": "https://files.pythonhosted.org/packages/72/19/0188794f2e3f8aedd16e4758fff810438f9f4207977553a8453c7e7382c4/jiter-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55ddf4c0c9bbff937fd90de576df44feb310a533b9389a7b61542261fd9b29be",
"md5": "78bda1f29087422708d449466d72280d",
"sha256": "b1a0508fddc70ce00b872e463b387d49308ef02b0787992ca471c8d4ba1c0fa1"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "78bda1f29087422708d449466d72280d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 514977,
"upload_time": "2024-11-12T13:51:23",
"upload_time_iso_8601": "2024-11-12T13:51:23.535667Z",
"url": "https://files.pythonhosted.org/packages/55/dd/f4c0c9bbff937fd90de576df44feb310a533b9389a7b61542261fd9b29be/jiter-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8256f1dc02e26f780aa8e1c7bd856a7cd8d343c8e0e8111bdab2d2c0b77972c7",
"md5": "6161ebdf206bd6df8c086ded43aeef69",
"sha256": "f84c9996664c460f24213ff1e5881530abd8fafd82058d39af3682d5fd2d6316"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6161ebdf206bd6df8c086ded43aeef69",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 498020,
"upload_time": "2024-11-12T13:51:25",
"upload_time_iso_8601": "2024-11-12T13:51:25.893754Z",
"url": "https://files.pythonhosted.org/packages/82/56/f1dc02e26f780aa8e1c7bd856a7cd8d343c8e0e8111bdab2d2c0b77972c7/jiter-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16b7489465de0f73896a3507c028faff791f16e0010c790264717fb557d299cb",
"md5": "7efa10bad134958d278c07d2908f39d7",
"sha256": "c915e1a1960976ba4dfe06551ea87063b2d5b4d30759012210099e712a414d9f"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "7efa10bad134958d278c07d2908f39d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 198725,
"upload_time": "2024-11-12T13:51:27",
"upload_time_iso_8601": "2024-11-12T13:51:27.952975Z",
"url": "https://files.pythonhosted.org/packages/16/b7/489465de0f73896a3507c028faff791f16e0010c790264717fb557d299cb/jiter-0.7.1-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b61b79d038a632e2d00657ca4965b6f93454eb0e563ad9168f40050f320e5460",
"md5": "a7248cf2eb0ef7bf667062a0b1e266d0",
"sha256": "75bf3b7fdc5c0faa6ffffcf8028a1f974d126bac86d96490d1b51b3210aa0f3f"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "a7248cf2eb0ef7bf667062a0b1e266d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 201730,
"upload_time": "2024-11-12T13:51:29",
"upload_time_iso_8601": "2024-11-12T13:51:29.142250Z",
"url": "https://files.pythonhosted.org/packages/b6/1b/79d038a632e2d00657ca4965b6f93454eb0e563ad9168f40050f320e5460/jiter-0.7.1-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26e518b30b3015ae1df916cadd42b428f9a47a7277a52b041e4caf939e6c3c21",
"md5": "889c2a446db9382ff4aadee91e61c8e8",
"sha256": "ad04a23a91f3d10d69d6c87a5f4471b61c2c5cd6e112e85136594a02043f462c"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "889c2a446db9382ff4aadee91e61c8e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 291198,
"upload_time": "2024-11-12T13:51:30",
"upload_time_iso_8601": "2024-11-12T13:51:30.947486Z",
"url": "https://files.pythonhosted.org/packages/26/e5/18b30b3015ae1df916cadd42b428f9a47a7277a52b041e4caf939e6c3c21/jiter-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7de3a70e5b98602d24c617e829d6714b3e4f7f9912fdc2844682653dafb5eba0",
"md5": "7d4c9d93a4b463e7f4230505d16597aa",
"sha256": "1e47a554de88dff701226bb5722b7f1b6bccd0b98f1748459b7e56acac2707a5"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7d4c9d93a4b463e7f4230505d16597aa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 303513,
"upload_time": "2024-11-12T13:51:32",
"upload_time_iso_8601": "2024-11-12T13:51:32.607738Z",
"url": "https://files.pythonhosted.org/packages/7d/e3/a70e5b98602d24c617e829d6714b3e4f7f9912fdc2844682653dafb5eba0/jiter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3435c44064c12e2d189dd3a6135e3b4f9f64167d81abada4eeb0dd75313ad9ad",
"md5": "54d65adcc1ab1413cee19ac0d52eb1b3",
"sha256": "1e44fff69c814a2e96a20b4ecee3e2365e9b15cf5fe4e00869d18396daa91dab"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "54d65adcc1ab1413cee19ac0d52eb1b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 328470,
"upload_time": "2024-11-12T13:51:34",
"upload_time_iso_8601": "2024-11-12T13:51:34.598429Z",
"url": "https://files.pythonhosted.org/packages/34/35/c44064c12e2d189dd3a6135e3b4f9f64167d81abada4eeb0dd75313ad9ad/jiter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de8855747df3d3472a08d25ab59752cc7a2682c9bfb38d8dbe00d5fadc35ae49",
"md5": "9e995721491f80722e4dca5ee8b4cd13",
"sha256": "df0a1d05081541b45743c965436f8b5a1048d6fd726e4a030113a2699a6046ea"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9e995721491f80722e4dca5ee8b4cd13",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 347484,
"upload_time": "2024-11-12T13:51:36",
"upload_time_iso_8601": "2024-11-12T13:51:36.540374Z",
"url": "https://files.pythonhosted.org/packages/de/88/55747df3d3472a08d25ab59752cc7a2682c9bfb38d8dbe00d5fadc35ae49/jiter-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ef6afa8d156b7c166dceae66e01d0aa9933f7c3afcc5af3901e717237e5b98c",
"md5": "1befd9c3219f854d661c98f8aa7f4d32",
"sha256": "f22cf8f236a645cb6d8ffe2a64edb5d2b66fb148bf7c75eea0cb36d17014a7bc"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1befd9c3219f854d661c98f8aa7f4d32",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 373483,
"upload_time": "2024-11-12T13:51:37",
"upload_time_iso_8601": "2024-11-12T13:51:37.937479Z",
"url": "https://files.pythonhosted.org/packages/8e/f6/afa8d156b7c166dceae66e01d0aa9933f7c3afcc5af3901e717237e5b98c/jiter-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7ab38c652c71bfd7a8e00fc0962a6985186e9741cfd9dde00a0d8c0138a9c07",
"md5": "67ede598b618e3b0453fc0186aec1fb8",
"sha256": "da8589f50b728ea4bf22e0632eefa125c8aa9c38ed202a5ee6ca371f05eeb3ff"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "67ede598b618e3b0453fc0186aec1fb8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 390563,
"upload_time": "2024-11-12T13:51:39",
"upload_time_iso_8601": "2024-11-12T13:51:39.881351Z",
"url": "https://files.pythonhosted.org/packages/b7/ab/38c652c71bfd7a8e00fc0962a6985186e9741cfd9dde00a0d8c0138a9c07/jiter-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62021dacf3b95d13f36298a261723c52b45701db485ee104f7677cb931697395",
"md5": "301a82a862794efb6a9686709a682e22",
"sha256": "f20de711224f2ca2dbb166a8d512f6ff48c9c38cc06b51f796520eb4722cc2ce"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "301a82a862794efb6a9686709a682e22",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 325508,
"upload_time": "2024-11-12T13:51:41",
"upload_time_iso_8601": "2024-11-12T13:51:41.283558Z",
"url": "https://files.pythonhosted.org/packages/62/02/1dacf3b95d13f36298a261723c52b45701db485ee104f7677cb931697395/jiter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9a8ac3509099030304b28c226b432347f5420297e8bec4cb1f27f716a4f23cf",
"md5": "c19c82ea6365d5a72685757eeed675ff",
"sha256": "8a9803396032117b85ec8cbf008a54590644a062fedd0425cbdb95e4b2b60479"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c19c82ea6365d5a72685757eeed675ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 365355,
"upload_time": "2024-11-12T13:51:43",
"upload_time_iso_8601": "2024-11-12T13:51:43.443766Z",
"url": "https://files.pythonhosted.org/packages/b9/a8/ac3509099030304b28c226b432347f5420297e8bec4cb1f27f716a4f23cf/jiter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92fe85fc2dd31473bf71b1e78311d09bb1f90211b5b327b9b884684d45e9ae48",
"md5": "ebfd65a35e194217f3ed9daee80fff55",
"sha256": "3d8bae77c82741032e9d89a4026479061aba6e646de3bf5f2fc1ae2bbd9d06e0"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ebfd65a35e194217f3ed9daee80fff55",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 514802,
"upload_time": "2024-11-12T13:51:45",
"upload_time_iso_8601": "2024-11-12T13:51:45.105190Z",
"url": "https://files.pythonhosted.org/packages/92/fe/85fc2dd31473bf71b1e78311d09bb1f90211b5b327b9b884684d45e9ae48/jiter-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "068cfa1f8b98618b476c346ad57e9eb85293cd2acd7680926b2f27f884c7aebc",
"md5": "42ebba6f88be0942cec87533273af372",
"sha256": "3dc9939e576bbc68c813fc82f6620353ed68c194c7bcf3d58dc822591ec12490"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "42ebba6f88be0942cec87533273af372",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 497983,
"upload_time": "2024-11-12T13:51:46",
"upload_time_iso_8601": "2024-11-12T13:51:46.522398Z",
"url": "https://files.pythonhosted.org/packages/06/8c/fa1f8b98618b476c346ad57e9eb85293cd2acd7680926b2f27f884c7aebc/jiter-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee130e726eaee6c5dcd14582d28e90a1381ff4ab1c6b583e597f4e0d4a0950bd",
"md5": "ddf2ac18f43d8dbfe5b8cd09ddd0d12d",
"sha256": "f7605d24cd6fab156ec89e7924578e21604feee9c4f1e9da34d8b67f63e54892"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "ddf2ac18f43d8dbfe5b8cd09ddd0d12d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 198800,
"upload_time": "2024-11-12T13:51:48",
"upload_time_iso_8601": "2024-11-12T13:51:48.387630Z",
"url": "https://files.pythonhosted.org/packages/ee/13/0e726eaee6c5dcd14582d28e90a1381ff4ab1c6b583e597f4e0d4a0950bd/jiter-0.7.1-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b306a79fd25f36660cec4fb46c5fd0d52375584fdc7a874889b24111cb666af",
"md5": "57ee61f056be1c7ba07f4bd2f278fc53",
"sha256": "f3ea649e7751a1a29ea5ecc03c4ada0a833846c59c6da75d747899f9b48b7282"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "57ee61f056be1c7ba07f4bd2f278fc53",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 203785,
"upload_time": "2024-11-12T13:51:49",
"upload_time_iso_8601": "2024-11-12T13:51:49.870214Z",
"url": "https://files.pythonhosted.org/packages/2b/30/6a79fd25f36660cec4fb46c5fd0d52375584fdc7a874889b24111cb666af/jiter-0.7.1-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10b3de89eae8f57dc0ee5f6e3aa1ffcdee0364ef9ef85be81006fd17d7710ffa",
"md5": "85eb7ce4b1b0cf5d582e269f51038760",
"sha256": "ad36a1155cbd92e7a084a568f7dc6023497df781adf2390c345dd77a120905ca"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "85eb7ce4b1b0cf5d582e269f51038760",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 291900,
"upload_time": "2024-11-12T13:51:51",
"upload_time_iso_8601": "2024-11-12T13:51:51.150696Z",
"url": "https://files.pythonhosted.org/packages/10/b3/de89eae8f57dc0ee5f6e3aa1ffcdee0364ef9ef85be81006fd17d7710ffa/jiter-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0ff0d804eff4751fceeabc6311d4b07e956daa06fa58f05931887dc7454466b",
"md5": "fe47bafc1758c64f9794333a948ab83e",
"sha256": "7ba52e6aaed2dc5c81a3d9b5e4ab95b039c4592c66ac973879ba57c3506492bb"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fe47bafc1758c64f9794333a948ab83e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 304390,
"upload_time": "2024-11-12T13:51:52",
"upload_time_iso_8601": "2024-11-12T13:51:52.535963Z",
"url": "https://files.pythonhosted.org/packages/c0/ff/0d804eff4751fceeabc6311d4b07e956daa06fa58f05931887dc7454466b/jiter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e826c258bef532d113a7ac26242893fc9760040a4846dec731098b7f5ac3fca7",
"md5": "d0fab8d0d5f527ac130efbb5c5ae9229",
"sha256": "2b7de0b6f6728b678540c7927587e23f715284596724be203af952418acb8a2d"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d0fab8d0d5f527ac130efbb5c5ae9229",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 328710,
"upload_time": "2024-11-12T13:51:54",
"upload_time_iso_8601": "2024-11-12T13:51:54.465697Z",
"url": "https://files.pythonhosted.org/packages/e8/26/c258bef532d113a7ac26242893fc9760040a4846dec731098b7f5ac3fca7/jiter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7192644dc215cbb9816112e28f3b43a8c8e769f083434a05fc3afd269c444f51",
"md5": "df3407721c027dadd2c6afb171d62451",
"sha256": "9463b62bd53c2fb85529c700c6a3beb2ee54fde8bef714b150601616dcb184a6"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "df3407721c027dadd2c6afb171d62451",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347569,
"upload_time": "2024-11-12T13:51:55",
"upload_time_iso_8601": "2024-11-12T13:51:55.821905Z",
"url": "https://files.pythonhosted.org/packages/71/92/644dc215cbb9816112e28f3b43a8c8e769f083434a05fc3afd269c444f51/jiter-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c602795a3535262c54595bd97e375cc03b443717febb37723a7f9c077049825b",
"md5": "dc0f75309f378993cf2d8945ad101009",
"sha256": "627164ec01d28af56e1f549da84caf0fe06da3880ebc7b7ee1ca15df106ae172"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dc0f75309f378993cf2d8945ad101009",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 373641,
"upload_time": "2024-11-12T13:52:00",
"upload_time_iso_8601": "2024-11-12T13:52:00.569367Z",
"url": "https://files.pythonhosted.org/packages/c6/02/795a3535262c54595bd97e375cc03b443717febb37723a7f9c077049825b/jiter-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d35c7e9a06a49116e3618954f6c8a26816a7959c0f9e5617b0073e4145c5d6d",
"md5": "1d4e9baa5976228b040f7e2c23ca7b59",
"sha256": "25d0e5bf64e368b0aa9e0a559c3ab2f9b67e35fe7269e8a0d81f48bbd10e8963"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1d4e9baa5976228b040f7e2c23ca7b59",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 388828,
"upload_time": "2024-11-12T13:52:01",
"upload_time_iso_8601": "2024-11-12T13:52:01.893916Z",
"url": "https://files.pythonhosted.org/packages/7d/35/c7e9a06a49116e3618954f6c8a26816a7959c0f9e5617b0073e4145c5d6d/jiter-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb05894144e4cbc1b9d46756db512268a90f84fc1d8bd28f1a17e0fef5aaf5c5",
"md5": "c2375f174c0d092f1717969884b426a7",
"sha256": "c244261306f08f8008b3087059601997016549cb8bb23cf4317a4827f07b7d74"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c2375f174c0d092f1717969884b426a7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 325511,
"upload_time": "2024-11-12T13:52:04",
"upload_time_iso_8601": "2024-11-12T13:52:04.408854Z",
"url": "https://files.pythonhosted.org/packages/fb/05/894144e4cbc1b9d46756db512268a90f84fc1d8bd28f1a17e0fef5aaf5c5/jiter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19d3e6674ac34de53787504e4fb309084f824df321f24113121d94bf53808be3",
"md5": "2f6dffade56290c430483bb7178e25cc",
"sha256": "7ded4e4b75b68b843b7cea5cd7c55f738c20e1394c68c2cb10adb655526c5f1b"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "2f6dffade56290c430483bb7178e25cc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 365940,
"upload_time": "2024-11-12T13:52:05",
"upload_time_iso_8601": "2024-11-12T13:52:05.759651Z",
"url": "https://files.pythonhosted.org/packages/19/d3/e6674ac34de53787504e4fb309084f824df321f24113121d94bf53808be3/jiter-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9cac773f0ce186090cc69a2c97b8dab3dad14ae9988a657a20d879458a8407e",
"md5": "4405b56a9096cb885e1757f9a43403b0",
"sha256": "80dae4f1889b9d09e5f4de6b58c490d9c8ce7730e35e0b8643ab62b1538f095c"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4405b56a9096cb885e1757f9a43403b0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 515430,
"upload_time": "2024-11-12T13:52:07",
"upload_time_iso_8601": "2024-11-12T13:52:07.025631Z",
"url": "https://files.pythonhosted.org/packages/e9/ca/c773f0ce186090cc69a2c97b8dab3dad14ae9988a657a20d879458a8407e/jiter-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "165fc98f6e6362fbc7c87ad384ba8506983fca9bb55ea0af7efcb23e7dd22817",
"md5": "3b1455054393a400804b576ebf772ee0",
"sha256": "5970cf8ec943b51bce7f4b98d2e1ed3ada170c2a789e2db3cb484486591a176a"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3b1455054393a400804b576ebf772ee0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 497389,
"upload_time": "2024-11-12T13:52:09",
"upload_time_iso_8601": "2024-11-12T13:52:09.073025Z",
"url": "https://files.pythonhosted.org/packages/16/5f/c98f6e6362fbc7c87ad384ba8506983fca9bb55ea0af7efcb23e7dd22817/jiter-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3060f60e12469afc9096bac3df0fda53de707ed5105d84322a0d1bc4ad03ee3e",
"md5": "4dfea3172b83c61455348bfb50b7086f",
"sha256": "701d90220d6ecb3125d46853c8ca8a5bc158de8c49af60fd706475a49fee157e"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "4dfea3172b83c61455348bfb50b7086f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 198546,
"upload_time": "2024-11-12T13:52:10",
"upload_time_iso_8601": "2024-11-12T13:52:10.497359Z",
"url": "https://files.pythonhosted.org/packages/30/60/f60e12469afc9096bac3df0fda53de707ed5105d84322a0d1bc4ad03ee3e/jiter-0.7.1-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01d2d8ec257544f7991384a46fccee6abdc5065cfede26354bb2c86251858a92",
"md5": "4baac0880b972a79946bd1b38d30be34",
"sha256": "7824c3ecf9ecf3321c37f4e4d4411aad49c666ee5bc2a937071bdd80917e4533"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "4baac0880b972a79946bd1b38d30be34",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 202792,
"upload_time": "2024-11-12T13:52:11",
"upload_time_iso_8601": "2024-11-12T13:52:11.809766Z",
"url": "https://files.pythonhosted.org/packages/01/d2/d8ec257544f7991384a46fccee6abdc5065cfede26354bb2c86251858a92/jiter-0.7.1-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5cf00a93a9968fc21b9ecfcabb130a8c822138594ac4a00b7bff9cbb38daa7f",
"md5": "5709eccae538d2c03c8d2d2f75301629",
"sha256": "097676a37778ba3c80cb53f34abd6943ceb0848263c21bf423ae98b090f6c6ba"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5709eccae538d2c03c8d2d2f75301629",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 291039,
"upload_time": "2024-11-12T13:52:13",
"upload_time_iso_8601": "2024-11-12T13:52:13.739673Z",
"url": "https://files.pythonhosted.org/packages/b5/cf/00a93a9968fc21b9ecfcabb130a8c822138594ac4a00b7bff9cbb38daa7f/jiter-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "229a0eb3eddffeca703f6adaaf117ba93ac3336fb323206259a86c2993cec9ad",
"md5": "7b1f525cc76ad914a489e91370fbdc93",
"sha256": "3298af506d4271257c0a8f48668b0f47048d69351675dd8500f22420d4eec378"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7b1f525cc76ad914a489e91370fbdc93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 302468,
"upload_time": "2024-11-12T13:52:15",
"upload_time_iso_8601": "2024-11-12T13:52:15.020069Z",
"url": "https://files.pythonhosted.org/packages/22/9a/0eb3eddffeca703f6adaaf117ba93ac3336fb323206259a86c2993cec9ad/jiter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b195b4da75e93752edfd6dd0df8f7723a6575e8a8bdce2e82f4458eb5564936a",
"md5": "4619314355e8c98c0db98d91ed0c6cd8",
"sha256": "12fd88cfe6067e2199964839c19bd2b422ca3fd792949b8f44bb8a4e7d21946a"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4619314355e8c98c0db98d91ed0c6cd8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 328401,
"upload_time": "2024-11-12T13:52:16",
"upload_time_iso_8601": "2024-11-12T13:52:16.529893Z",
"url": "https://files.pythonhosted.org/packages/b1/95/b4da75e93752edfd6dd0df8f7723a6575e8a8bdce2e82f4458eb5564936a/jiter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28af7fa53804a2e7e309ce66822c9484fd7d4f8ef452be3937aab8a93a82c54b",
"md5": "3645534cb350d85da4313e40f3bf361f",
"sha256": "dacca921efcd21939123c8ea8883a54b9fa7f6545c8019ffcf4f762985b6d0c8"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3645534cb350d85da4313e40f3bf361f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 347237,
"upload_time": "2024-11-12T13:52:18",
"upload_time_iso_8601": "2024-11-12T13:52:18.579171Z",
"url": "https://files.pythonhosted.org/packages/28/af/7fa53804a2e7e309ce66822c9484fd7d4f8ef452be3937aab8a93a82c54b/jiter-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "300c0b89bd3dce7d330d8ee878b0a95899b73e30cb55d2b2c41998276350d4a0",
"md5": "5f7149065a348be09743f94a63882cec",
"sha256": "de3674a5fe1f6713a746d25ad9c32cd32fadc824e64b9d6159b3b34fd9134143"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5f7149065a348be09743f94a63882cec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 373558,
"upload_time": "2024-11-12T13:52:21",
"upload_time_iso_8601": "2024-11-12T13:52:21.482951Z",
"url": "https://files.pythonhosted.org/packages/30/0c/0b89bd3dce7d330d8ee878b0a95899b73e30cb55d2b2c41998276350d4a0/jiter-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2496c75633b99d57dd8b8457f88f51201805c93b314e369fba69829d726bc2a5",
"md5": "76341339c111d6e0fe61816478c3b91f",
"sha256": "65df9dbae6d67e0788a05b4bad5706ad40f6f911e0137eb416b9eead6ba6f044"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "76341339c111d6e0fe61816478c3b91f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 388251,
"upload_time": "2024-11-12T13:52:22",
"upload_time_iso_8601": "2024-11-12T13:52:22.800800Z",
"url": "https://files.pythonhosted.org/packages/24/96/c75633b99d57dd8b8457f88f51201805c93b314e369fba69829d726bc2a5/jiter-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6439369e6ff198003f55acfcdb58169c774473082d3303cddcd24334af534c4e",
"md5": "5432b8e481a4e71f1967cab63f43b819",
"sha256": "7ba9a358d59a0a55cccaa4957e6ae10b1a25ffdabda863c0343c51817610501d"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5432b8e481a4e71f1967cab63f43b819",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 325020,
"upload_time": "2024-11-12T13:52:24",
"upload_time_iso_8601": "2024-11-12T13:52:24.135737Z",
"url": "https://files.pythonhosted.org/packages/64/39/369e6ff198003f55acfcdb58169c774473082d3303cddcd24334af534c4e/jiter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80260c386fa233a78997db5fa7b362e6f35a37d2656d09e521b0600f29933992",
"md5": "20542e8c8d5940639e4ced24a7f16621",
"sha256": "576eb0f0c6207e9ede2b11ec01d9c2182973986514f9c60bc3b3b5d5798c8f50"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "20542e8c8d5940639e4ced24a7f16621",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 365211,
"upload_time": "2024-11-12T13:52:25",
"upload_time_iso_8601": "2024-11-12T13:52:25.537198Z",
"url": "https://files.pythonhosted.org/packages/80/26/0c386fa233a78997db5fa7b362e6f35a37d2656d09e521b0600f29933992/jiter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "214ebfebe799924a39f181874b5e9041b792ee67768a8b160814e016a7c9a40d",
"md5": "6859810bb47fa4b89e843d74b8b24c1f",
"sha256": "e550e29cdf3577d2c970a18f3959e6b8646fd60ef1b0507e5947dc73703b5627"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6859810bb47fa4b89e843d74b8b24c1f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 514904,
"upload_time": "2024-11-12T13:52:26",
"upload_time_iso_8601": "2024-11-12T13:52:26.875145Z",
"url": "https://files.pythonhosted.org/packages/21/4e/bfebe799924a39f181874b5e9041b792ee67768a8b160814e016a7c9a40d/jiter-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a781b3c72c6691acd29cf707df1a0b300e6726385b3c1ced8dc20424c4452699",
"md5": "6a545518ef4b7f5547aaf63366400b66",
"sha256": "81d968dbf3ce0db2e0e4dec6b0a0d5d94f846ee84caf779b07cab49f5325ae43"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6a545518ef4b7f5547aaf63366400b66",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 497102,
"upload_time": "2024-11-12T13:52:28",
"upload_time_iso_8601": "2024-11-12T13:52:28.271392Z",
"url": "https://files.pythonhosted.org/packages/a7/81/b3c72c6691acd29cf707df1a0b300e6726385b3c1ced8dc20424c4452699/jiter-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ec3766f9ec97df0441597878c7949da2b241a12a381c3affa7ca761734c8c74",
"md5": "9264e174cb3b1ca5b63a6a6003a7db4c",
"sha256": "f892e547e6e79a1506eb571a676cf2f480a4533675f834e9ae98de84f9b941ac"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-none-win32.whl",
"has_sig": false,
"md5_digest": "9264e174cb3b1ca5b63a6a6003a7db4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 198119,
"upload_time": "2024-11-12T13:52:29",
"upload_time_iso_8601": "2024-11-12T13:52:29.627858Z",
"url": "https://files.pythonhosted.org/packages/1e/c3/766f9ec97df0441597878c7949da2b241a12a381c3affa7ca761734c8c74/jiter-0.7.1-cp313-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7601cbc0136784a3ffefb5ca5326f8167780c5c3de0c81b6b81b773a973c571e",
"md5": "7dc4deb67224681e7b9cbf58a2303bb8",
"sha256": "0302f0940b1455b2a7fb0409b8d5b31183db70d2b07fd177906d83bf941385d1"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "7dc4deb67224681e7b9cbf58a2303bb8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 199236,
"upload_time": "2024-11-12T13:52:31",
"upload_time_iso_8601": "2024-11-12T13:52:31.828058Z",
"url": "https://files.pythonhosted.org/packages/76/01/cbc0136784a3ffefb5ca5326f8167780c5c3de0c81b6b81b773a973c571e/jiter-0.7.1-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e7563851ce9e4f88356712b7815cee9914866679de8b3515a57e75eaf80cead",
"md5": "9f335871395ceb81372b5853b09ad2f7",
"sha256": "c65a3ce72b679958b79d556473f192a4dfc5895e8cc1030c9f4e434690906076"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9f335871395ceb81372b5853b09ad2f7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 291760,
"upload_time": "2024-11-12T13:52:34",
"upload_time_iso_8601": "2024-11-12T13:52:34.797592Z",
"url": "https://files.pythonhosted.org/packages/8e/75/63851ce9e4f88356712b7815cee9914866679de8b3515a57e75eaf80cead/jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "188abda0b6b92a5096a201d065a8c8a62f595d18eccaf680c4c88f62e0c547ac",
"md5": "0d55bf8324932791f3bd76834c6937de",
"sha256": "e80052d3db39f9bb8eb86d207a1be3d9ecee5e05fdec31380817f9609ad38e60"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0d55bf8324932791f3bd76834c6937de",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 290734,
"upload_time": "2024-11-12T13:52:36",
"upload_time_iso_8601": "2024-11-12T13:52:36.214902Z",
"url": "https://files.pythonhosted.org/packages/18/8a/bda0b6b92a5096a201d065a8c8a62f595d18eccaf680c4c88f62e0c547ac/jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "072750ee10576a0fda794e6d5c36da72e663ee7683f8b2924c56d0f3797ffafa",
"md5": "0464e09002ecdb8cb0955206da5d3540",
"sha256": "70a497859c4f3f7acd71c8bd89a6f9cf753ebacacf5e3e799138b8e1843084e3"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0464e09002ecdb8cb0955206da5d3540",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 329316,
"upload_time": "2024-11-12T13:52:37",
"upload_time_iso_8601": "2024-11-12T13:52:37.578377Z",
"url": "https://files.pythonhosted.org/packages/07/27/50ee10576a0fda794e6d5c36da72e663ee7683f8b2924c56d0f3797ffafa/jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b244deeb8a461ac32a9a750608b259366dbb8cfca8d7d08bbca0330369984df",
"md5": "1c21b6423337eb58918406196fe660b0",
"sha256": "c1288bc22b9e36854a0536ba83666c3b1fb066b811019d7b682c9cf0269cdf9f"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1c21b6423337eb58918406196fe660b0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 348168,
"upload_time": "2024-11-12T13:52:38",
"upload_time_iso_8601": "2024-11-12T13:52:38.870493Z",
"url": "https://files.pythonhosted.org/packages/3b/24/4deeb8a461ac32a9a750608b259366dbb8cfca8d7d08bbca0330369984df/jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a9ed037747b119ebf0026bae2d5e4474686842dae13f1334a661a0625aa0d179",
"md5": "0cf3f69f3c6f6b896fa9ab5afa484535",
"sha256": "b096ca72dd38ef35675e1d3b01785874315182243ef7aea9752cb62266ad516f"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0cf3f69f3c6f6b896fa9ab5afa484535",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 373498,
"upload_time": "2024-11-12T13:52:40",
"upload_time_iso_8601": "2024-11-12T13:52:40.170184Z",
"url": "https://files.pythonhosted.org/packages/a9/ed/037747b119ebf0026bae2d5e4474686842dae13f1334a661a0625aa0d179/jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b70acd67cd34730f1b18e814cfc869ee9ea2b788041c3abd5b04310bbcc1c770",
"md5": "eb1bfacadabfa94eaa3c7a5b0de48b16",
"sha256": "8dbbd52c50b605af13dbee1a08373c520e6fcc6b5d32f17738875847fea4e2cd"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "eb1bfacadabfa94eaa3c7a5b0de48b16",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 390612,
"upload_time": "2024-11-12T13:52:41",
"upload_time_iso_8601": "2024-11-12T13:52:41.486755Z",
"url": "https://files.pythonhosted.org/packages/b7/0a/cd67cd34730f1b18e814cfc869ee9ea2b788041c3abd5b04310bbcc1c770/jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aea1c3726f3392c2552e3a550a93114fd3478eb0015032f576f4ca6a9e281f27",
"md5": "e54a8b45465a34c7228d0a5259477e94",
"sha256": "af29c5c6eb2517e71ffa15c7ae9509fa5e833ec2a99319ac88cc271eca865519"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e54a8b45465a34c7228d0a5259477e94",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 325911,
"upload_time": "2024-11-12T13:52:42",
"upload_time_iso_8601": "2024-11-12T13:52:42.914950Z",
"url": "https://files.pythonhosted.org/packages/ae/a1/c3726f3392c2552e3a550a93114fd3478eb0015032f576f4ca6a9e281f27/jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4662d93e05782c782b66f3bab78e989af49e18cc0619aabbdfa0076e79875528",
"md5": "12baf1a3a5f2bbdc65f0b763e82512db",
"sha256": "f114a4df1e40c03c0efbf974b376ed57756a1141eb27d04baee0680c5af3d424"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "12baf1a3a5f2bbdc65f0b763e82512db",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 365777,
"upload_time": "2024-11-12T13:52:44",
"upload_time_iso_8601": "2024-11-12T13:52:44.668562Z",
"url": "https://files.pythonhosted.org/packages/46/62/d93e05782c782b66f3bab78e989af49e18cc0619aabbdfa0076e79875528/jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a37788d7c59b53b0ab6fc01ce5e07d0019ca9b7b4293b1b41a8b8fd58b45232e",
"md5": "4d3450de728d77821e2b2f963c1b0b32",
"sha256": "191fbaee7cf46a9dd9b817547bf556facde50f83199d07fc48ebeff4082f9df4"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4d3450de728d77821e2b2f963c1b0b32",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 515866,
"upload_time": "2024-11-12T13:52:46",
"upload_time_iso_8601": "2024-11-12T13:52:46.757836Z",
"url": "https://files.pythonhosted.org/packages/a3/77/88d7c59b53b0ab6fc01ce5e07d0019ca9b7b4293b1b41a8b8fd58b45232e/jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba3ef44c9795c59600c87dde581465d3088e759b5d7ab1aa05b5353d3688ac1d",
"md5": "c3367318c2b9dc45c4315ac1788a6a32",
"sha256": "0e2b445e5ee627fb4ee6bbceeb486251e60a0c881a8e12398dfdff47c56f0723"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c3367318c2b9dc45c4315ac1788a6a32",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 497509,
"upload_time": "2024-11-12T13:52:48",
"upload_time_iso_8601": "2024-11-12T13:52:48.359520Z",
"url": "https://files.pythonhosted.org/packages/ba/3e/f44c9795c59600c87dde581465d3088e759b5d7ab1aa05b5353d3688ac1d/jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adad8231dbc50192c730afe3f57ef89c39c93b3d88e85109392d17cadc7b52c2",
"md5": "d8739213c19e0fb4aa04cc980ff75697",
"sha256": "47ac4c3cf8135c83e64755b7276339b26cd3c7ddadf9e67306ace4832b283edf"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "d8739213c19e0fb4aa04cc980ff75697",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 198739,
"upload_time": "2024-11-12T13:52:51",
"upload_time_iso_8601": "2024-11-12T13:52:51.119703Z",
"url": "https://files.pythonhosted.org/packages/ad/ad/8231dbc50192c730afe3f57ef89c39c93b3d88e85109392d17cadc7b52c2/jiter-0.7.1-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43423bc9041ef35ae35a964f8250c2e9e4ee0b659484e4e22ebc62fd188169c4",
"md5": "85bbea22c7fc3e6cfd6e525194d9412b",
"sha256": "60b49c245cd90cde4794f5c30f123ee06ccf42fb8730a019a2870cd005653ebd"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "85bbea22c7fc3e6cfd6e525194d9412b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 190911,
"upload_time": "2024-11-12T13:52:52",
"upload_time_iso_8601": "2024-11-12T13:52:52.475036Z",
"url": "https://files.pythonhosted.org/packages/43/42/3bc9041ef35ae35a964f8250c2e9e4ee0b659484e4e22ebc62fd188169c4/jiter-0.7.1-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e8a255d604a3c4f7d4a561f3154dbc46f7e9ee07d680e876c7777f1225dcf26",
"md5": "7869c00207a045a268cbd64077442b82",
"sha256": "8f212eeacc7203256f526f550d105d8efa24605828382cd7d296b703181ff11d"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7869c00207a045a268cbd64077442b82",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 292049,
"upload_time": "2024-11-12T13:52:53",
"upload_time_iso_8601": "2024-11-12T13:52:53.829477Z",
"url": "https://files.pythonhosted.org/packages/8e/8a/255d604a3c4f7d4a561f3154dbc46f7e9ee07d680e876c7777f1225dcf26/jiter-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87c6d9fa1c21a96b1b64c67b348f30d3e27906db7c0e07ea9c286bf6014da1b3",
"md5": "1c2a4418e3ae1b277173648b0edca1e1",
"sha256": "d9e247079d88c00e75e297e6cb3a18a039ebcd79fefc43be9ba4eb7fb43eb726"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1c2a4418e3ae1b277173648b0edca1e1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 290739,
"upload_time": "2024-11-12T13:52:55",
"upload_time_iso_8601": "2024-11-12T13:52:55.496315Z",
"url": "https://files.pythonhosted.org/packages/87/c6/d9fa1c21a96b1b64c67b348f30d3e27906db7c0e07ea9c286bf6014da1b3/jiter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cff4e2ea79dc299cf3aa664bc668dcb82ede23ed49ff75696ef19d0969abae33",
"md5": "5b11efeea51c15dbfffa9f50c8dfaa34",
"sha256": "f0aacaa56360139c53dcf352992b0331f4057a0373bbffd43f64ba0c32d2d155"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5b11efeea51c15dbfffa9f50c8dfaa34",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 329199,
"upload_time": "2024-11-12T13:52:56",
"upload_time_iso_8601": "2024-11-12T13:52:56.854108Z",
"url": "https://files.pythonhosted.org/packages/cf/f4/e2ea79dc299cf3aa664bc668dcb82ede23ed49ff75696ef19d0969abae33/jiter-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c0fa272f19755618714d82de4f61d8f97fe2b0d6104551d4ce77b390e5bd5ca",
"md5": "6931271c732f42d2f0225720019240a9",
"sha256": "bc1b55314ca97dbb6c48d9144323896e9c1a25d41c65bcb9550b3e0c270ca560"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6931271c732f42d2f0225720019240a9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 348147,
"upload_time": "2024-11-12T13:52:58",
"upload_time_iso_8601": "2024-11-12T13:52:58.278208Z",
"url": "https://files.pythonhosted.org/packages/3c/0f/a272f19755618714d82de4f61d8f97fe2b0d6104551d4ce77b390e5bd5ca/jiter-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "079dd361cb3d242771b2d2c695a6c6d24e685f2fb321f28e1f40a4a46c9c7a5a",
"md5": "aa0a66649ea88f8653922109b91a0cb3",
"sha256": "f281aae41b47e90deb70e7386558e877a8e62e1693e0086f37d015fa1c102289"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "aa0a66649ea88f8653922109b91a0cb3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 373812,
"upload_time": "2024-11-12T13:53:00",
"upload_time_iso_8601": "2024-11-12T13:53:00.467089Z",
"url": "https://files.pythonhosted.org/packages/07/9d/d361cb3d242771b2d2c695a6c6d24e685f2fb321f28e1f40a4a46c9c7a5a/jiter-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0abaccb2132633faa7ba517b8264db5e2c4299077356a0ca88fa4464423c120a",
"md5": "273da7331aad71fd965289f2111ddcf5",
"sha256": "93c20d2730a84d43f7c0b6fb2579dc54335db742a59cf9776d0b80e99d587382"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "273da7331aad71fd965289f2111ddcf5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 390909,
"upload_time": "2024-11-12T13:53:01",
"upload_time_iso_8601": "2024-11-12T13:53:01.860296Z",
"url": "https://files.pythonhosted.org/packages/0a/ba/ccb2132633faa7ba517b8264db5e2c4299077356a0ca88fa4464423c120a/jiter-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65aed503db7183fdc46295e8e88a4cbb71438e7f959c5635b03c5e839b4f3d33",
"md5": "a7c912e879d82a550abd457c41e466d5",
"sha256": "e81ccccd8069110e150613496deafa10da2f6ff322a707cbec2b0d52a87b9671"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a7c912e879d82a550abd457c41e466d5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 326263,
"upload_time": "2024-11-12T13:53:03",
"upload_time_iso_8601": "2024-11-12T13:53:03.345344Z",
"url": "https://files.pythonhosted.org/packages/65/ae/d503db7183fdc46295e8e88a4cbb71438e7f959c5635b03c5e839b4f3d33/jiter-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "612ffe51bb7b28674e8f612fa138aec7838e6778e567a2b3e79429925d444deb",
"md5": "7ff2aee1c4fdff46cbb2de9c0c9a6170",
"sha256": "0a7d5e85766eff4c9be481d77e2226b4c259999cb6862ccac5ef6621d3c8dcce"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7ff2aee1c4fdff46cbb2de9c0c9a6170",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 365950,
"upload_time": "2024-11-12T13:53:04",
"upload_time_iso_8601": "2024-11-12T13:53:04.970543Z",
"url": "https://files.pythonhosted.org/packages/61/2f/fe51bb7b28674e8f612fa138aec7838e6778e567a2b3e79429925d444deb/jiter-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6698a9b9a321a471d297f21a1427ea74480459792902c00ab56d3fa012aadb2",
"md5": "4d6a5aa4f60f0f24aefb54e2744eee78",
"sha256": "f52ce5799df5b6975439ecb16b1e879d7655e1685b6e3758c9b1b97696313bfb"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4d6a5aa4f60f0f24aefb54e2744eee78",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 516159,
"upload_time": "2024-11-12T13:53:06",
"upload_time_iso_8601": "2024-11-12T13:53:06.327823Z",
"url": "https://files.pythonhosted.org/packages/d6/69/8a9b9a321a471d297f21a1427ea74480459792902c00ab56d3fa012aadb2/jiter-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab29dc69d8a345163336ed1aebf6bf61c7f8ce0b984799975662db81af13ca35",
"md5": "e6c3c6327f2afad173125b78eb39cf6a",
"sha256": "e0c91a0304373fdf97d56f88356a010bba442e6d995eb7773cbe32885b71cdd8"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e6c3c6327f2afad173125b78eb39cf6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 498034,
"upload_time": "2024-11-12T13:53:07",
"upload_time_iso_8601": "2024-11-12T13:53:07.784786Z",
"url": "https://files.pythonhosted.org/packages/ab/29/dc69d8a345163336ed1aebf6bf61c7f8ce0b984799975662db81af13ca35/jiter-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f82046fbd90d4792bf2b3e03fe3a906c5e6381e0b2cc2e959999902fba01f7f1",
"md5": "e9e6809729db1567b7d1954cf426ba23",
"sha256": "5c08adf93e41ce2755970e8aa95262298afe2bf58897fb9653c47cd93c3c6cdc"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "e9e6809729db1567b7d1954cf426ba23",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 198981,
"upload_time": "2024-11-12T13:53:09",
"upload_time_iso_8601": "2024-11-12T13:53:09.239182Z",
"url": "https://files.pythonhosted.org/packages/f8/20/46fbd90d4792bf2b3e03fe3a906c5e6381e0b2cc2e959999902fba01f7f1/jiter-0.7.1-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e575fc5a34b0376437eaac80c22886840d8f39ee7f0992c2e3bd4c246b91cab3",
"md5": "579f9bbab59e850d0d19b784debd7dc7",
"sha256": "6592f4067c74176e5f369228fb2995ed01400c9e8e1225fb73417183a5e635f0"
},
"downloads": -1,
"filename": "jiter-0.7.1-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "579f9bbab59e850d0d19b784debd7dc7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 202098,
"upload_time": "2024-11-12T13:53:11",
"upload_time_iso_8601": "2024-11-12T13:53:11.503962Z",
"url": "https://files.pythonhosted.org/packages/e5/75/fc5a34b0376437eaac80c22886840d8f39ee7f0992c2e3bd4c246b91cab3/jiter-0.7.1-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46e550ff23c9bba2722d2f0f55ba51e57f7cbab9a4be758e6b9b263ef51e6024",
"md5": "48e09ef7228be9e3dcd50d4b904c0989",
"sha256": "448cf4f74f7363c34cdef26214da527e8eeffd88ba06d0b80b485ad0667baf5d"
},
"downloads": -1,
"filename": "jiter-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "48e09ef7228be9e3dcd50d4b904c0989",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 162334,
"upload_time": "2024-11-12T13:53:13",
"upload_time_iso_8601": "2024-11-12T13:53:13.325871Z",
"url": "https://files.pythonhosted.org/packages/46/e5/50ff23c9bba2722d2f0f55ba51e57f7cbab9a4be758e6b9b263ef51e6024/jiter-0.7.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-12 13:53:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pydantic",
"github_project": "jiter",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "jiter"
}