# 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/f8/70/90bc7bd3932e651486861df5c8ffea4ca7c77d28e8532ddefe2abc561a53/jiter-0.8.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 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.8.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": "f2f38c11e0e87bd5934c414f9b1cfae3cbfd4a938d4669d57cb427e1c4d11a7f",
"md5": "83155fe94713ed8007fb6f6ac58db8ee",
"sha256": "ca8577f6a413abe29b079bc30f907894d7eb07a865c4df69475e868d73e71c7b"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "83155fe94713ed8007fb6f6ac58db8ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 303381,
"upload_time": "2024-12-09T18:09:00",
"upload_time_iso_8601": "2024-12-09T18:09:00.301845Z",
"url": "https://files.pythonhosted.org/packages/f2/f3/8c11e0e87bd5934c414f9b1cfae3cbfd4a938d4669d57cb427e1c4d11a7f/jiter-0.8.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea284cd3f0bcbf40e946bc6a62a82c951afc386a25673d3d8d5ee461f1559bbe",
"md5": "ccb4daaf4391559e261faf85b6437c12",
"sha256": "b25bd626bde7fb51534190c7e3cb97cee89ee76b76d7585580e22f34f5e3f393"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ccb4daaf4391559e261faf85b6437c12",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 311718,
"upload_time": "2024-12-09T18:09:02",
"upload_time_iso_8601": "2024-12-09T18:09:02.530404Z",
"url": "https://files.pythonhosted.org/packages/ea/28/4cd3f0bcbf40e946bc6a62a82c951afc386a25673d3d8d5ee461f1559bbe/jiter-0.8.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d1757acab00507e60bd954eaec0837d9d7b119b4117ff49b8a62f2b646f32ed",
"md5": "309727b247f8458f65fdfc2458be7979",
"sha256": "d5c826a221851a8dc028eb6d7d6429ba03184fa3c7e83ae01cd6d3bd1d4bd17d"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "309727b247f8458f65fdfc2458be7979",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 335465,
"upload_time": "2024-12-09T18:09:04",
"upload_time_iso_8601": "2024-12-09T18:09:04.044927Z",
"url": "https://files.pythonhosted.org/packages/0d/17/57acab00507e60bd954eaec0837d9d7b119b4117ff49b8a62f2b646f32ed/jiter-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74b91a3ddd2bc95ae17c815b021521020f40c60b32137730126bada962ef32b4",
"md5": "6c2cb1d28eede2a977d911a9b0734973",
"sha256": "d35c864c2dff13dfd79fb070fc4fc6235d7b9b359efe340e1261deb21b9fcb66"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6c2cb1d28eede2a977d911a9b0734973",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 355570,
"upload_time": "2024-12-09T18:09:05",
"upload_time_iso_8601": "2024-12-09T18:09:05.445161Z",
"url": "https://files.pythonhosted.org/packages/74/b9/1a3ddd2bc95ae17c815b021521020f40c60b32137730126bada962ef32b4/jiter-0.8.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78696d29e2296a934199a7d0dde673ecccf98c9c8db44caf0248b3f2b65483cb",
"md5": "6d5b2e9700194e7aeb99273793970563",
"sha256": "f557c55bc2b7676e74d39d19bcb8775ca295c7a028246175d6a8b431e70835e5"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6d5b2e9700194e7aeb99273793970563",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 381383,
"upload_time": "2024-12-09T18:09:07",
"upload_time_iso_8601": "2024-12-09T18:09:07.499753Z",
"url": "https://files.pythonhosted.org/packages/78/69/6d29e2296a934199a7d0dde673ecccf98c9c8db44caf0248b3f2b65483cb/jiter-0.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22d7fbc4c3fb1bf65f9be22a32759b539f88e897aeb13fe84ab0266e4423487a",
"md5": "98a43f5e7e540cc72710fc9d003dca20",
"sha256": "580ccf358539153db147e40751a0b41688a5ceb275e6f3e93d91c9467f42b2e3"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "98a43f5e7e540cc72710fc9d003dca20",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 390454,
"upload_time": "2024-12-09T18:09:09",
"upload_time_iso_8601": "2024-12-09T18:09:09.587380Z",
"url": "https://files.pythonhosted.org/packages/22/d7/fbc4c3fb1bf65f9be22a32759b539f88e897aeb13fe84ab0266e4423487a/jiter-0.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4da03993cda2e267fe679b45d0bcc2cef0b4504b0aa810659cdae9737d6bace9",
"md5": "718e3ccbcad8aa4213d9b7f99b46754c",
"sha256": "af102d3372e917cffce49b521e4c32c497515119dc7bd8a75665e90a718bbf08"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "718e3ccbcad8aa4213d9b7f99b46754c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 345039,
"upload_time": "2024-12-09T18:09:11",
"upload_time_iso_8601": "2024-12-09T18:09:11.045748Z",
"url": "https://files.pythonhosted.org/packages/4d/a0/3993cda2e267fe679b45d0bcc2cef0b4504b0aa810659cdae9737d6bace9/jiter-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9ef69c18562b4c09ce88fab5df1dcaf643f6b1a8b970b65216e7221169b81c4",
"md5": "c52313d26c586832bc1080e80a7de5e9",
"sha256": "cadcc978f82397d515bb2683fc0d50103acff2a180552654bb92d6045dec2c49"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c52313d26c586832bc1080e80a7de5e9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 376200,
"upload_time": "2024-12-09T18:09:13",
"upload_time_iso_8601": "2024-12-09T18:09:13.104620Z",
"url": "https://files.pythonhosted.org/packages/b9/ef/69c18562b4c09ce88fab5df1dcaf643f6b1a8b970b65216e7221169b81c4/jiter-0.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d170b5a8de46a6ab4d836f70934036278b49b8530c292b29dde3483326d4555",
"md5": "9beb19b12b360cfd5e5278db78a14fd6",
"sha256": "ba5bdf56969cad2019d4e8ffd3f879b5fdc792624129741d3d83fc832fef8c7d"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9beb19b12b360cfd5e5278db78a14fd6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 511158,
"upload_time": "2024-12-09T18:09:15",
"upload_time_iso_8601": "2024-12-09T18:09:15.222420Z",
"url": "https://files.pythonhosted.org/packages/4d/17/0b5a8de46a6ab4d836f70934036278b49b8530c292b29dde3483326d4555/jiter-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cb2c401a0a2554b36c9e6d6e4876b43790d75139cf3936f0222e675cbc23451",
"md5": "731977b675996401134baa04d7c42b9e",
"sha256": "3b94a33a241bee9e34b8481cdcaa3d5c2116f575e0226e421bed3f7a6ea71cff"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "731977b675996401134baa04d7c42b9e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 503956,
"upload_time": "2024-12-09T18:09:16",
"upload_time_iso_8601": "2024-12-09T18:09:16.595760Z",
"url": "https://files.pythonhosted.org/packages/6c/b2/c401a0a2554b36c9e6d6e4876b43790d75139cf3936f0222e675cbc23451/jiter-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d402a0291ed7d72c0ac130f172354ee3cf0b2556b69584de391463a8ee534f40",
"md5": "e113039294e059835c91c02e3572e335",
"sha256": "6e5337bf454abddd91bd048ce0dca5134056fc99ca0205258766db35d0a2ea43"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "e113039294e059835c91c02e3572e335",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 202846,
"upload_time": "2024-12-09T18:09:19",
"upload_time_iso_8601": "2024-12-09T18:09:19.347062Z",
"url": "https://files.pythonhosted.org/packages/d4/02/a0291ed7d72c0ac130f172354ee3cf0b2556b69584de391463a8ee534f40/jiter-0.8.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad208c988831ae4bf437e29f1671e198fc99ba8fe49f2895f23789acad1d1811",
"md5": "cde631b0514520bfb4d55e00be6a3af2",
"sha256": "4a9220497ca0cb1fe94e3f334f65b9b5102a0b8147646118f020d8ce1de70105"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "cde631b0514520bfb4d55e00be6a3af2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 204414,
"upload_time": "2024-12-09T18:09:20",
"upload_time_iso_8601": "2024-12-09T18:09:20.904597Z",
"url": "https://files.pythonhosted.org/packages/ad/20/8c988831ae4bf437e29f1671e198fc99ba8fe49f2895f23789acad1d1811/jiter-0.8.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbb0c1a7caa7f9dc5f1f6cfa08722867790fe2d3645d6e7170ca280e6e52d163",
"md5": "f9c22849ee3957db5a05b2c397768515",
"sha256": "2dd61c5afc88a4fda7d8b2cf03ae5947c6ac7516d32b7a15bf4b49569a5c076b"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f9c22849ee3957db5a05b2c397768515",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 303666,
"upload_time": "2024-12-09T18:09:23",
"upload_time_iso_8601": "2024-12-09T18:09:23.145568Z",
"url": "https://files.pythonhosted.org/packages/cb/b0/c1a7caa7f9dc5f1f6cfa08722867790fe2d3645d6e7170ca280e6e52d163/jiter-0.8.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5970468bc9eeae43079aaa5feb9267964e496bf13133d469cfdc135498f8dd0",
"md5": "4e6fae137aaa8ad25b25ff8ae81f1c6e",
"sha256": "a6c710d657c8d1d2adbbb5c0b0c6bfcec28fd35bd6b5f016395f9ac43e878a15"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4e6fae137aaa8ad25b25ff8ae81f1c6e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 311934,
"upload_time": "2024-12-09T18:09:25",
"upload_time_iso_8601": "2024-12-09T18:09:25.098253Z",
"url": "https://files.pythonhosted.org/packages/f5/97/0468bc9eeae43079aaa5feb9267964e496bf13133d469cfdc135498f8dd0/jiter-0.8.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e56964058e18263d9a5f1e10f90c436853616d5f047d997c37c7b2df11b085ec",
"md5": "5b425ac9914791fad4ad5b478c14b8a3",
"sha256": "a9584de0cd306072635fe4b89742bf26feae858a0683b399ad0c2509011b9dc0"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5b425ac9914791fad4ad5b478c14b8a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 335506,
"upload_time": "2024-12-09T18:09:26",
"upload_time_iso_8601": "2024-12-09T18:09:26.407856Z",
"url": "https://files.pythonhosted.org/packages/e5/69/64058e18263d9a5f1e10f90c436853616d5f047d997c37c7b2df11b085ec/jiter-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d14b747f9a77b8c0542141d77ca1e2a7523e854754af2c339ac89a8b66527d6",
"md5": "25466fcd8122cfc9dfd431918a46ead1",
"sha256": "5a90a923338531b7970abb063cfc087eebae6ef8ec8139762007188f6bc69a9f"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "25466fcd8122cfc9dfd431918a46ead1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 355849,
"upload_time": "2024-12-09T18:09:27",
"upload_time_iso_8601": "2024-12-09T18:09:27.686436Z",
"url": "https://files.pythonhosted.org/packages/9d/14/b747f9a77b8c0542141d77ca1e2a7523e854754af2c339ac89a8b66527d6/jiter-0.8.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53e298a08161db7cc9d0e39bc385415890928ff09709034982f48eccfca40733",
"md5": "b7442df64a8d84619f019f0d553595df",
"sha256": "d21974d246ed0181558087cd9f76e84e8321091ebfb3a93d4c341479a736f099"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b7442df64a8d84619f019f0d553595df",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 381700,
"upload_time": "2024-12-09T18:09:28",
"upload_time_iso_8601": "2024-12-09T18:09:28.989385Z",
"url": "https://files.pythonhosted.org/packages/53/e2/98a08161db7cc9d0e39bc385415890928ff09709034982f48eccfca40733/jiter-0.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a381674672954d35bce3b1c9af99d5849f9256ac8f5b672e020ac7821581206",
"md5": "93aef91586cba06ab9003bac4c0c258a",
"sha256": "32475a42b2ea7b344069dc1e81445cfc00b9d0e3ca837f0523072432332e9f74"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "93aef91586cba06ab9003bac4c0c258a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 389710,
"upload_time": "2024-12-09T18:09:30",
"upload_time_iso_8601": "2024-12-09T18:09:30.565986Z",
"url": "https://files.pythonhosted.org/packages/7a/38/1674672954d35bce3b1c9af99d5849f9256ac8f5b672e020ac7821581206/jiter-0.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f89b92f9da9a9e107d019bcf883cd9125fa1690079f323f5a9d5c6986eeec3c0",
"md5": "52b87fa205bcf1220836ac36d5ed8419",
"sha256": "8b9931fd36ee513c26b5bf08c940b0ac875de175341cbdd4fa3be109f0492586"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "52b87fa205bcf1220836ac36d5ed8419",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 345553,
"upload_time": "2024-12-09T18:09:32",
"upload_time_iso_8601": "2024-12-09T18:09:32.735611Z",
"url": "https://files.pythonhosted.org/packages/f8/9b/92f9da9a9e107d019bcf883cd9125fa1690079f323f5a9d5c6986eeec3c0/jiter-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44a66d030003394e9659cd0d7136bbeabd82e869849ceccddc34d40abbbbb269",
"md5": "c2e82075f05f157264953e94e92cfb7d",
"sha256": "ce0820f4a3a59ddced7fce696d86a096d5cc48d32a4183483a17671a61edfddc"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c2e82075f05f157264953e94e92cfb7d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 376388,
"upload_time": "2024-12-09T18:09:34",
"upload_time_iso_8601": "2024-12-09T18:09:34.723362Z",
"url": "https://files.pythonhosted.org/packages/44/a6/6d030003394e9659cd0d7136bbeabd82e869849ceccddc34d40abbbbb269/jiter-0.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad8d87b09e648e4aca5f9af89e3ab3cfb93db2d1e633b2f2931ede8dabd9b19a",
"md5": "b35cc86dd03662f65b0ae3357b411eaf",
"sha256": "8ffc86ae5e3e6a93765d49d1ab47b6075a9c978a2b3b80f0f32628f39caa0c88"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b35cc86dd03662f65b0ae3357b411eaf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 511226,
"upload_time": "2024-12-09T18:09:36",
"upload_time_iso_8601": "2024-12-09T18:09:36.130700Z",
"url": "https://files.pythonhosted.org/packages/ad/8d/87b09e648e4aca5f9af89e3ab3cfb93db2d1e633b2f2931ede8dabd9b19a/jiter-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77958008ebe4cdc82eac1c97864a8042ca7e383ed67e0ec17bfd03797045c727",
"md5": "421ef5e7c237b76333c1797d9fcb820d",
"sha256": "5127dc1abd809431172bc3fbe8168d6b90556a30bb10acd5ded41c3cfd6f43b6"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "421ef5e7c237b76333c1797d9fcb820d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 504134,
"upload_time": "2024-12-09T18:09:37",
"upload_time_iso_8601": "2024-12-09T18:09:37.581127Z",
"url": "https://files.pythonhosted.org/packages/77/95/8008ebe4cdc82eac1c97864a8042ca7e383ed67e0ec17bfd03797045c727/jiter-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "260d3056a74de13e8b2562e4d526de6dac2f65d91ace63a8234deb9284a1d24d",
"md5": "60a4fe4f4f801d327025172d2ec2b4e3",
"sha256": "66227a2c7b575720c1871c8800d3a0122bb8ee94edb43a5685aa9aceb2782d44"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "60a4fe4f4f801d327025172d2ec2b4e3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 203103,
"upload_time": "2024-12-09T18:09:38",
"upload_time_iso_8601": "2024-12-09T18:09:38.881866Z",
"url": "https://files.pythonhosted.org/packages/26/0d/3056a74de13e8b2562e4d526de6dac2f65d91ace63a8234deb9284a1d24d/jiter-0.8.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e1e7f96b798f356e531ffc0f53dd2f37185fac60fae4d6c612bbbd4639b90aa",
"md5": "b228a0a84c07add1c8533593811a97ba",
"sha256": "cde031d8413842a1e7501e9129b8e676e62a657f8ec8166e18a70d94d4682855"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "b228a0a84c07add1c8533593811a97ba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 206717,
"upload_time": "2024-12-09T18:09:41",
"upload_time_iso_8601": "2024-12-09T18:09:41.064596Z",
"url": "https://files.pythonhosted.org/packages/4e/1e/7f96b798f356e531ffc0f53dd2f37185fac60fae4d6c612bbbd4639b90aa/jiter-0.8.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a117c8747af8ea4e045f57d6cfd6fc180752cab9bc3de0e8a0c9ca4e8af333b1",
"md5": "74c4c6aec149bab8a6ef9388387bfb7c",
"sha256": "e6ec2be506e7d6f9527dae9ff4b7f54e68ea44a0ef6b098256ddf895218a2f8f"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "74c4c6aec149bab8a6ef9388387bfb7c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 302027,
"upload_time": "2024-12-09T18:09:43",
"upload_time_iso_8601": "2024-12-09T18:09:43.110682Z",
"url": "https://files.pythonhosted.org/packages/a1/17/c8747af8ea4e045f57d6cfd6fc180752cab9bc3de0e8a0c9ca4e8af333b1/jiter-0.8.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3cc16da849640cd35a41e91085723b76acc818d4b7d92b0b6e5111736ce1dd10",
"md5": "08de3d8053fb13628d10e0c673ac043f",
"sha256": "76e324da7b5da060287c54f2fabd3db5f76468006c811831f051942bf68c9d44"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "08de3d8053fb13628d10e0c673ac043f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 310326,
"upload_time": "2024-12-09T18:09:44",
"upload_time_iso_8601": "2024-12-09T18:09:44.426250Z",
"url": "https://files.pythonhosted.org/packages/3c/c1/6da849640cd35a41e91085723b76acc818d4b7d92b0b6e5111736ce1dd10/jiter-0.8.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0699a2bf660d8ccffee9ad7ed46b4f860d2108a148d0ea36043fd16f4dc37e94",
"md5": "90e4aeab81cb20d1a1f1d32ca8cc357d",
"sha256": "180a8aea058f7535d1c84183c0362c710f4750bef66630c05f40c93c2b152a0f"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "90e4aeab81cb20d1a1f1d32ca8cc357d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 334242,
"upload_time": "2024-12-09T18:09:45",
"upload_time_iso_8601": "2024-12-09T18:09:45.915734Z",
"url": "https://files.pythonhosted.org/packages/06/99/a2bf660d8ccffee9ad7ed46b4f860d2108a148d0ea36043fd16f4dc37e94/jiter-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a75fcea1c17864828731f11427b9d1ab7f24764dbd9aaf4648a7f851164d2718",
"md5": "9f3d74fc56f816dc0ed765f2a34313c5",
"sha256": "025337859077b41548bdcbabe38698bcd93cfe10b06ff66617a48ff92c9aec60"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9f3d74fc56f816dc0ed765f2a34313c5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 356654,
"upload_time": "2024-12-09T18:09:47",
"upload_time_iso_8601": "2024-12-09T18:09:47.619702Z",
"url": "https://files.pythonhosted.org/packages/a7/5f/cea1c17864828731f11427b9d1ab7f24764dbd9aaf4648a7f851164d2718/jiter-0.8.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e91362774b7e5e7f5d5043efe1d0f94ead66e6d0f894ae010adb56b3f788de71",
"md5": "6d35714ea871a8d79b8247a4a153db70",
"sha256": "ecff0dc14f409599bbcafa7e470c00b80f17abc14d1405d38ab02e4b42e55b57"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6d35714ea871a8d79b8247a4a153db70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 379967,
"upload_time": "2024-12-09T18:09:49",
"upload_time_iso_8601": "2024-12-09T18:09:49.987306Z",
"url": "https://files.pythonhosted.org/packages/e9/13/62774b7e5e7f5d5043efe1d0f94ead66e6d0f894ae010adb56b3f788de71/jiter-0.8.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecfb096b34c553bb0bd3f2289d5013dcad6074948b8d55212aa13a10d44c5326",
"md5": "55eca4f70cc7b654a1833e2232cb2db4",
"sha256": "ffd9fee7d0775ebaba131f7ca2e2d83839a62ad65e8e02fe2bd8fc975cedeb9e"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "55eca4f70cc7b654a1833e2232cb2db4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 389252,
"upload_time": "2024-12-09T18:09:51",
"upload_time_iso_8601": "2024-12-09T18:09:51.329881Z",
"url": "https://files.pythonhosted.org/packages/ec/fb/096b34c553bb0bd3f2289d5013dcad6074948b8d55212aa13a10d44c5326/jiter-0.8.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1761beea645c0bf398ced8b199e377b61eb999d8e46e053bb285c91c3d3eaab0",
"md5": "5fddd36b0846ff0bef330405a2639410",
"sha256": "14601dcac4889e0a1c75ccf6a0e4baf70dbc75041e51bcf8d0e9274519df6887"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5fddd36b0846ff0bef330405a2639410",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 345490,
"upload_time": "2024-12-09T18:09:52",
"upload_time_iso_8601": "2024-12-09T18:09:52.646341Z",
"url": "https://files.pythonhosted.org/packages/17/61/beea645c0bf398ced8b199e377b61eb999d8e46e053bb285c91c3d3eaab0/jiter-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5df834aa17ad5dcc3cf0118821da0a0cf1589ea7db9832589278553640366bc",
"md5": "a139af52bedba8db1c003bda606d5e5f",
"sha256": "92249669925bc1c54fcd2ec73f70f2c1d6a817928480ee1c65af5f6b81cdf12d"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a139af52bedba8db1c003bda606d5e5f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 376991,
"upload_time": "2024-12-09T18:09:53",
"upload_time_iso_8601": "2024-12-09T18:09:53.972630Z",
"url": "https://files.pythonhosted.org/packages/d5/df/834aa17ad5dcc3cf0118821da0a0cf1589ea7db9832589278553640366bc/jiter-0.8.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "678087d140399d382fb4ea5b3d56e7ecaa4efdca17cd7411ff904c1517855314",
"md5": "2cbc05868cb64d765892d6b5e4e1aecb",
"sha256": "e725edd0929fa79f8349ab4ec7f81c714df51dc4e991539a578e5018fa4a7152"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2cbc05868cb64d765892d6b5e4e1aecb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 510822,
"upload_time": "2024-12-09T18:09:55",
"upload_time_iso_8601": "2024-12-09T18:09:55.439540Z",
"url": "https://files.pythonhosted.org/packages/67/80/87d140399d382fb4ea5b3d56e7ecaa4efdca17cd7411ff904c1517855314/jiter-0.8.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c373394bb47bac1ad2cb0465601f86828a0518d07828a650722e55268cdb7e6",
"md5": "94191c5f5a2b0f562707cb933d007bb7",
"sha256": "bf55846c7b7a680eebaf9c3c48d630e1bf51bdf76c68a5f654b8524335b0ad29"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "94191c5f5a2b0f562707cb933d007bb7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 503730,
"upload_time": "2024-12-09T18:09:59",
"upload_time_iso_8601": "2024-12-09T18:09:59.494750Z",
"url": "https://files.pythonhosted.org/packages/5c/37/3394bb47bac1ad2cb0465601f86828a0518d07828a650722e55268cdb7e6/jiter-0.8.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9e2253fc1fa59103bb4e3aa0665d6ceb1818df1cd7bf3eb492c4dad229b1cd4",
"md5": "93139a515f9761064a043c9378112f9e",
"sha256": "7efe4853ecd3d6110301665a5178b9856be7e2a9485f49d91aa4d737ad2ae49e"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "93139a515f9761064a043c9378112f9e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 203375,
"upload_time": "2024-12-09T18:10:00",
"upload_time_iso_8601": "2024-12-09T18:10:00.814211Z",
"url": "https://files.pythonhosted.org/packages/f9/e2/253fc1fa59103bb4e3aa0665d6ceb1818df1cd7bf3eb492c4dad229b1cd4/jiter-0.8.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41696d4bbe66b3b3b4507e47aa1dd5d075919ad242b4b1115b3f80eecd443687",
"md5": "ba7aea9616f3aefe5cb5ee8762840286",
"sha256": "83c0efd80b29695058d0fd2fa8a556490dbce9804eac3e281f373bbc99045f6c"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "ba7aea9616f3aefe5cb5ee8762840286",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 204740,
"upload_time": "2024-12-09T18:10:02",
"upload_time_iso_8601": "2024-12-09T18:10:02.146798Z",
"url": "https://files.pythonhosted.org/packages/41/69/6d4bbe66b3b3b4507e47aa1dd5d075919ad242b4b1115b3f80eecd443687/jiter-0.8.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cb0bfa1f6f2c956b948802ef5a021281978bf53b7a6ca54bb126fd88a5d014e",
"md5": "97174f5d2e982dcc36dc8ca39af4d520",
"sha256": "ca1f08b8e43dc3bd0594c992fb1fd2f7ce87f7bf0d44358198d6da8034afdf84"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "97174f5d2e982dcc36dc8ca39af4d520",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 301190,
"upload_time": "2024-12-09T18:10:03",
"upload_time_iso_8601": "2024-12-09T18:10:03.463461Z",
"url": "https://files.pythonhosted.org/packages/6c/b0/bfa1f6f2c956b948802ef5a021281978bf53b7a6ca54bb126fd88a5d014e/jiter-0.8.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a48f396ddb4e292b5ea57e45ade5dc48229556b9044bad29a3b4b2dddeaedd52",
"md5": "655b6911de74d8849e9e12a1855c5ca7",
"sha256": "5672a86d55416ccd214c778efccf3266b84f87b89063b582167d803246354be4"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "655b6911de74d8849e9e12a1855c5ca7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 309334,
"upload_time": "2024-12-09T18:10:05",
"upload_time_iso_8601": "2024-12-09T18:10:05.774036Z",
"url": "https://files.pythonhosted.org/packages/a4/8f/396ddb4e292b5ea57e45ade5dc48229556b9044bad29a3b4b2dddeaedd52/jiter-0.8.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f68805978f2f446fa6362ba0cc2e4489b945695940656edd844e110a61c98f8",
"md5": "7a9dbed6762f5fbbe0e1411206201256",
"sha256": "58dc9bc9767a1101f4e5e22db1b652161a225874d66f0e5cb8e2c7d1c438b587"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7a9dbed6762f5fbbe0e1411206201256",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 333918,
"upload_time": "2024-12-09T18:10:07",
"upload_time_iso_8601": "2024-12-09T18:10:07.158436Z",
"url": "https://files.pythonhosted.org/packages/7f/68/805978f2f446fa6362ba0cc2e4489b945695940656edd844e110a61c98f8/jiter-0.8.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3990f71f7be667c33403fa9706e5b50583ae5106d96fab997fa7e2f38ee8347",
"md5": "8ebacb898eb8a03a8cea678cb7f9338a",
"sha256": "37b2998606d6dadbb5ccda959a33d6a5e853252d921fec1792fc902351bb4e2c"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8ebacb898eb8a03a8cea678cb7f9338a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 356057,
"upload_time": "2024-12-09T18:10:09",
"upload_time_iso_8601": "2024-12-09T18:10:09.341401Z",
"url": "https://files.pythonhosted.org/packages/b3/99/0f71f7be667c33403fa9706e5b50583ae5106d96fab997fa7e2f38ee8347/jiter-0.8.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d50a82796e421a22b699ee4d2ce527e5bcb29471a2351cbdc931819d941a167",
"md5": "5639491ce609103dc53876a9fb66ada9",
"sha256": "4ab9a87f3784eb0e098f84a32670cfe4a79cb6512fd8f42ae3d0709f06405d18"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5639491ce609103dc53876a9fb66ada9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 379790,
"upload_time": "2024-12-09T18:10:10",
"upload_time_iso_8601": "2024-12-09T18:10:10.702421Z",
"url": "https://files.pythonhosted.org/packages/8d/50/a82796e421a22b699ee4d2ce527e5bcb29471a2351cbdc931819d941a167/jiter-0.8.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c3110fb012b00f6d83342ca9e2c9618869ab449f1aa78c8f1b2193a6b49647c",
"md5": "6e5a510e396fe916cd9afdedd55c166c",
"sha256": "79aec8172b9e3c6d05fd4b219d5de1ac616bd8da934107325a6c0d0e866a21b6"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6e5a510e396fe916cd9afdedd55c166c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 388285,
"upload_time": "2024-12-09T18:10:12",
"upload_time_iso_8601": "2024-12-09T18:10:12.721360Z",
"url": "https://files.pythonhosted.org/packages/3c/31/10fb012b00f6d83342ca9e2c9618869ab449f1aa78c8f1b2193a6b49647c/jiter-0.8.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c881f15ebf7de57be488aa22944bf4274962aca8092e4f7817f92ffa50d3ee46",
"md5": "8244aa2f5769469dbd99da743eff19bc",
"sha256": "711e408732d4e9a0208008e5892c2966b485c783cd2d9a681f3eb147cf36c7ef"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8244aa2f5769469dbd99da743eff19bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 344764,
"upload_time": "2024-12-09T18:10:14",
"upload_time_iso_8601": "2024-12-09T18:10:14.075422Z",
"url": "https://files.pythonhosted.org/packages/c8/81/f15ebf7de57be488aa22944bf4274962aca8092e4f7817f92ffa50d3ee46/jiter-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3e80cae550d72b48829ba653eb348cdc25f3f06f8a62363723702ec18e7be9c",
"md5": "73a7bc94b57e2de68bdfecbc82a47dc7",
"sha256": "653cf462db4e8c41995e33d865965e79641ef45369d8a11f54cd30888b7e6ff1"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "73a7bc94b57e2de68bdfecbc82a47dc7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 376620,
"upload_time": "2024-12-09T18:10:15",
"upload_time_iso_8601": "2024-12-09T18:10:15.487017Z",
"url": "https://files.pythonhosted.org/packages/b3/e8/0cae550d72b48829ba653eb348cdc25f3f06f8a62363723702ec18e7be9c/jiter-0.8.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b850e5478ff9d82534a944c03b63bc217c5f37019d4a34d288db0f079b13c10b",
"md5": "13c02f98d4083b7e32693088e54c7d8f",
"sha256": "9c63eaef32b7bebac8ebebf4dabebdbc6769a09c127294db6babee38e9f405b9"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "13c02f98d4083b7e32693088e54c7d8f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 510402,
"upload_time": "2024-12-09T18:10:17",
"upload_time_iso_8601": "2024-12-09T18:10:17.499701Z",
"url": "https://files.pythonhosted.org/packages/b8/50/e5478ff9d82534a944c03b63bc217c5f37019d4a34d288db0f079b13c10b/jiter-0.8.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e1e3de48bbebbc8f7025bd454cedc8c62378c0e32dd483dece5f4a814a5cb55",
"md5": "ece56fbcca64989551a290eb665718bc",
"sha256": "eb21aaa9a200d0a80dacc7a81038d2e476ffe473ffdd9c91eb745d623561de05"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ece56fbcca64989551a290eb665718bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 503018,
"upload_time": "2024-12-09T18:10:18",
"upload_time_iso_8601": "2024-12-09T18:10:18.920547Z",
"url": "https://files.pythonhosted.org/packages/8e/1e/3de48bbebbc8f7025bd454cedc8c62378c0e32dd483dece5f4a814a5cb55/jiter-0.8.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f3c71a491952c37b87d127790dd7a0b1ebea0514c6b6ad30085b16bbe00aee6",
"md5": "92b086180158caefc14a9c3221a74ea4",
"sha256": "b426f72cd77da3fec300ed3bc990895e2dd6b49e3bfe6c438592a3ba660e41ca"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "92b086180158caefc14a9c3221a74ea4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 308347,
"upload_time": "2024-12-09T18:10:24",
"upload_time_iso_8601": "2024-12-09T18:10:24.139404Z",
"url": "https://files.pythonhosted.org/packages/2f/3c/71a491952c37b87d127790dd7a0b1ebea0514c6b6ad30085b16bbe00aee6/jiter-0.8.2-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a04cc02408042e6a7605ec063daed138e07b982fdb98467deaaf1c90950cf2c6",
"md5": "49dbf42f361fdd5702970f8849f1b918",
"sha256": "b2dd880785088ff2ad21ffee205e58a8c1ddabc63612444ae41e5e4b321b39c0"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "49dbf42f361fdd5702970f8849f1b918",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 342875,
"upload_time": "2024-12-09T18:10:25",
"upload_time_iso_8601": "2024-12-09T18:10:25.553274Z",
"url": "https://files.pythonhosted.org/packages/a0/4c/c02408042e6a7605ec063daed138e07b982fdb98467deaaf1c90950cf2c6/jiter-0.8.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9161c80ef80ed8a0a21158e289ef70dac01e351d929a1c30cb0f49be60772547",
"md5": "579e8853510a2a32e7dd4ae3b3aeb63f",
"sha256": "3ac9f578c46f22405ff7f8b1f5848fb753cc4b8377fbec8470a7dc3997ca7566"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "579e8853510a2a32e7dd4ae3b3aeb63f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 202374,
"upload_time": "2024-12-09T18:10:26",
"upload_time_iso_8601": "2024-12-09T18:10:26.958359Z",
"url": "https://files.pythonhosted.org/packages/91/61/c80ef80ed8a0a21158e289ef70dac01e351d929a1c30cb0f49be60772547/jiter-0.8.2-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5cdd5a5501d72a11fe3e5fd65c78c884e5164eefe80077680533919be22d3a3",
"md5": "98fa366c28a3e2d8e2183e3d83d46590",
"sha256": "789361ed945d8d42850f919342a8665d2dc79e7e44ca1c97cc786966a21f627a"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "98fa366c28a3e2d8e2183e3d83d46590",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 203190,
"upload_time": "2024-12-09T18:10:20",
"upload_time_iso_8601": "2024-12-09T18:10:20.801453Z",
"url": "https://files.pythonhosted.org/packages/d5/cd/d5a5501d72a11fe3e5fd65c78c884e5164eefe80077680533919be22d3a3/jiter-0.8.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51bfe5ca301245ba951447e3ad677a02a64a8845b185de2603dabd83e1e4b9c6",
"md5": "e568ce9f47577a31ce6f2f95ae1eba1f",
"sha256": "ab7f43235d71e03b941c1630f4b6e3055d46b6cb8728a17663eaac9d8e83a865"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e568ce9f47577a31ce6f2f95ae1eba1f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 203551,
"upload_time": "2024-12-09T18:10:22",
"upload_time_iso_8601": "2024-12-09T18:10:22.822537Z",
"url": "https://files.pythonhosted.org/packages/51/bf/e5ca301245ba951447e3ad677a02a64a8845b185de2603dabd83e1e4b9c6/jiter-0.8.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40edf10365914ef8734526dbf51be9cef604cce5bc6efa5a4aa776079624c5f2",
"md5": "1abb246b2fe2cad2771580f07351aa6d",
"sha256": "9e1fa156ee9454642adb7e7234a383884452532bc9d53d5af2d18d98ada1d79c"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1abb246b2fe2cad2771580f07351aa6d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 304660,
"upload_time": "2024-12-09T18:10:28",
"upload_time_iso_8601": "2024-12-09T18:10:28.304292Z",
"url": "https://files.pythonhosted.org/packages/40/ed/f10365914ef8734526dbf51be9cef604cce5bc6efa5a4aa776079624c5f2/jiter-0.8.2-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5fe909a2fd9e14d65900364a2661f91f6ac7d7a4f0cddd27c811cbe9c1c3928",
"md5": "cbc03825165353cf166fe91b1f1c19d0",
"sha256": "0cf5dfa9956d96ff2efb0f8e9c7d055904012c952539a774305aaaf3abdf3d6c"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cbc03825165353cf166fe91b1f1c19d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 300756,
"upload_time": "2024-12-09T18:10:30",
"upload_time_iso_8601": "2024-12-09T18:10:30.461630Z",
"url": "https://files.pythonhosted.org/packages/e5/fe/909a2fd9e14d65900364a2661f91f6ac7d7a4f0cddd27c811cbe9c1c3928/jiter-0.8.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "799d5ee288b62b96d80dcea05876b6d5ee64f49e5b3a893abbb93e5b01871214",
"md5": "9ceba42ad5763148ff2ab6c2a564507c",
"sha256": "e52bf98c7e727dd44f7c4acb980cb988448faeafed8433c867888268899b298b"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9ceba42ad5763148ff2ab6c2a564507c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 335846,
"upload_time": "2024-12-09T18:10:31",
"upload_time_iso_8601": "2024-12-09T18:10:31.917563Z",
"url": "https://files.pythonhosted.org/packages/79/9d/5ee288b62b96d80dcea05876b6d5ee64f49e5b3a893abbb93e5b01871214/jiter-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5af94e76de9411d7bfc3d763c88b4e5ea16252077aa237732eff0741dc2f45c",
"md5": "51aa11a804141030c3989b9a3a49e56d",
"sha256": "a2ecaa3c23e7a7cf86d00eda3390c232f4d533cd9ddea4b04f5d0644faf642c5"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "51aa11a804141030c3989b9a3a49e56d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 356403,
"upload_time": "2024-12-09T18:10:33",
"upload_time_iso_8601": "2024-12-09T18:10:33.974257Z",
"url": "https://files.pythonhosted.org/packages/a5/af/94e76de9411d7bfc3d763c88b4e5ea16252077aa237732eff0741dc2f45c/jiter-0.8.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebfa30dddbd33866d780de8964ae136198cff78eafb35a5b419a39b424ecc867",
"md5": "8991dd44d0aaeac6942ae2bf146db501",
"sha256": "08d4c92bf480e19fc3f2717c9ce2aa31dceaa9163839a311424b6862252c943e"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8991dd44d0aaeac6942ae2bf146db501",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 381572,
"upload_time": "2024-12-09T18:10:35",
"upload_time_iso_8601": "2024-12-09T18:10:35.464101Z",
"url": "https://files.pythonhosted.org/packages/eb/fa/30dddbd33866d780de8964ae136198cff78eafb35a5b419a39b424ecc867/jiter-0.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13157527f5a50652a1211cfd588f3c9d641161ca3a45d7a1f896a15c2d56546e",
"md5": "bc7ad1d44b100c0f664113611db41946",
"sha256": "99d9a1eded738299ba8e106c6779ce5c3893cffa0e32e4485d680588adae6db8"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bc7ad1d44b100c0f664113611db41946",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 391143,
"upload_time": "2024-12-09T18:10:36",
"upload_time_iso_8601": "2024-12-09T18:10:36.794308Z",
"url": "https://files.pythonhosted.org/packages/13/15/7527f5a50652a1211cfd588f3c9d641161ca3a45d7a1f896a15c2d56546e/jiter-0.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47b0210cfb3f6063656572e58ca210d422d4f40206ad9ab883d7a86a325da958",
"md5": "e8bbaac69c6559df890c1d8fd92c3b47",
"sha256": "d20be8b7f606df096e08b0b1b4a3c6f0515e8dac296881fe7461dfa0fb5ec817"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8bbaac69c6559df890c1d8fd92c3b47",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 338485,
"upload_time": "2024-12-09T18:10:38",
"upload_time_iso_8601": "2024-12-09T18:10:38.195916Z",
"url": "https://files.pythonhosted.org/packages/47/b0/210cfb3f6063656572e58ca210d422d4f40206ad9ab883d7a86a325da958/jiter-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84b25c1c430e7bdb4185c2f601b38f7bed4417b0d5d3e78ecb584d93002d3d3c",
"md5": "b4ad99b30edc3fecce2cc10b152291b3",
"sha256": "d33f94615fcaf872f7fd8cd98ac3b429e435c77619777e8a449d9d27e01134d1"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b4ad99b30edc3fecce2cc10b152291b3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 377435,
"upload_time": "2024-12-09T18:10:39",
"upload_time_iso_8601": "2024-12-09T18:10:39.655193Z",
"url": "https://files.pythonhosted.org/packages/84/b2/5c1c430e7bdb4185c2f601b38f7bed4417b0d5d3e78ecb584d93002d3d3c/jiter-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aeaeaa5fcf246bbe6eb4ad5556684f4ec90e299fcf86837b8d269c4e58c53c14",
"md5": "2cc87ab5efec49ef52127ba3b486482f",
"sha256": "317b25e98a35ffec5c67efe56a4e9970852632c810d35b34ecdd70cc0e47b3b6"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2cc87ab5efec49ef52127ba3b486482f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 512435,
"upload_time": "2024-12-09T18:10:41",
"upload_time_iso_8601": "2024-12-09T18:10:41.027844Z",
"url": "https://files.pythonhosted.org/packages/ae/ae/aa5fcf246bbe6eb4ad5556684f4ec90e299fcf86837b8d269c4e58c53c14/jiter-0.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c511d3fccd8cfb63d04ab061df36a2f2df64adca1cbbbd8713328d0302bc1de",
"md5": "1466bc319b08559f0f9d5a36f3713b11",
"sha256": "fc9043259ee430ecd71d178fccabd8c332a3bf1e81e50cae43cc2b28d19e4cb7"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1466bc319b08559f0f9d5a36f3713b11",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 504711,
"upload_time": "2024-12-09T18:10:43",
"upload_time_iso_8601": "2024-12-09T18:10:43.140979Z",
"url": "https://files.pythonhosted.org/packages/5c/51/1d3fccd8cfb63d04ab061df36a2f2df64adca1cbbbd8713328d0302bc1de/jiter-0.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e946abef158c8b2edf7b162187564525c20c2fa49246b0794c74873ccdb7e1d8",
"md5": "60b9e6d2cac1ba74f0d6763981466b58",
"sha256": "fc5adda618205bd4678b146612ce44c3cbfdee9697951f2c0ffdef1f26d72b63"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "60b9e6d2cac1ba74f0d6763981466b58",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 203476,
"upload_time": "2024-12-09T18:10:44",
"upload_time_iso_8601": "2024-12-09T18:10:44.478077Z",
"url": "https://files.pythonhosted.org/packages/e9/46/abef158c8b2edf7b162187564525c20c2fa49246b0794c74873ccdb7e1d8/jiter-0.8.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8962c942c45b08292a19a26a20fd4423bca0f2e5575d075cf10ea18491afa2ab",
"md5": "87326f299d4896a68205d2315615207e",
"sha256": "cd646c827b4f85ef4a78e4e58f4f5854fae0caf3db91b59f0d73731448a970c6"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "87326f299d4896a68205d2315615207e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 194693,
"upload_time": "2024-12-09T18:10:45",
"upload_time_iso_8601": "2024-12-09T18:10:45.809670Z",
"url": "https://files.pythonhosted.org/packages/89/62/c942c45b08292a19a26a20fd4423bca0f2e5575d075cf10ea18491afa2ab/jiter-0.8.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9b2ed7fbabd21c3cf556d6ea849cee35c74f13a509e668baad8323091e2867e",
"md5": "3dcd4f187504418b22a70ba56b8b678b",
"sha256": "e41e75344acef3fc59ba4765df29f107f309ca9e8eace5baacabd9217e52a5ee"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3dcd4f187504418b22a70ba56b8b678b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 304502,
"upload_time": "2024-12-09T18:10:47",
"upload_time_iso_8601": "2024-12-09T18:10:47.204413Z",
"url": "https://files.pythonhosted.org/packages/c9/b2/ed7fbabd21c3cf556d6ea849cee35c74f13a509e668baad8323091e2867e/jiter-0.8.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "756e1386857ac9165c1e9c71031566e7884d8a4f63724ce29ad1ace5bfe1351c",
"md5": "ddbcc7657c388307af4ce98d0e3ada5d",
"sha256": "7f22b16b35d5c1df9dfd58843ab2cd25e6bf15191f5a236bed177afade507bfc"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ddbcc7657c388307af4ce98d0e3ada5d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 300982,
"upload_time": "2024-12-09T18:10:48",
"upload_time_iso_8601": "2024-12-09T18:10:48.567393Z",
"url": "https://files.pythonhosted.org/packages/75/6e/1386857ac9165c1e9c71031566e7884d8a4f63724ce29ad1ace5bfe1351c/jiter-0.8.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "564cb413977c20bbb359b4d6c91d04f7f36fc525af0b7778119815477fc97242",
"md5": "b8314bd59634f33fbe03c9c9b931ccd0",
"sha256": "f7200b8f7619d36aa51c803fd52020a2dfbea36ffec1b5e22cab11fd34d95a6d"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b8314bd59634f33fbe03c9c9b931ccd0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 335344,
"upload_time": "2024-12-09T18:10:49",
"upload_time_iso_8601": "2024-12-09T18:10:49.913086Z",
"url": "https://files.pythonhosted.org/packages/56/4c/b413977c20bbb359b4d6c91d04f7f36fc525af0b7778119815477fc97242/jiter-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b05951b080519938192edd33b4e8d48adb7e9bf9e0d699ec8b91119b9269fc75",
"md5": "f8cae5e9f32089a64e584519e796da76",
"sha256": "70bf4c43652cc294040dbb62256c83c8718370c8b93dd93d934b9a7bf6c4f53c"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f8cae5e9f32089a64e584519e796da76",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 356298,
"upload_time": "2024-12-09T18:10:51",
"upload_time_iso_8601": "2024-12-09T18:10:51.482674Z",
"url": "https://files.pythonhosted.org/packages/b0/59/51b080519938192edd33b4e8d48adb7e9bf9e0d699ec8b91119b9269fc75/jiter-0.8.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72bb828db5ea406916d7b2232be31393f782b0f71bcb0b128750c4a028157565",
"md5": "a7acbc83c0467cf3ddc599cbe1bfc414",
"sha256": "f9d471356dc16f84ed48768b8ee79f29514295c7295cb41e1133ec0b2b8d637d"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a7acbc83c0467cf3ddc599cbe1bfc414",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 381703,
"upload_time": "2024-12-09T18:10:53",
"upload_time_iso_8601": "2024-12-09T18:10:53.405457Z",
"url": "https://files.pythonhosted.org/packages/72/bb/828db5ea406916d7b2232be31393f782b0f71bcb0b128750c4a028157565/jiter-0.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c08845d33a8728733e161e9783c54d8ecca0fc4c1aa74b1cebea1d97917eddc3",
"md5": "29318c2aa2efc347807c8a11024ae44e",
"sha256": "859e8eb3507894093d01929e12e267f83b1d5f6221099d3ec976f0c995cb6bd9"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "29318c2aa2efc347807c8a11024ae44e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 391281,
"upload_time": "2024-12-09T18:10:55",
"upload_time_iso_8601": "2024-12-09T18:10:55.590576Z",
"url": "https://files.pythonhosted.org/packages/c0/88/45d33a8728733e161e9783c54d8ecca0fc4c1aa74b1cebea1d97917eddc3/jiter-0.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "453e142712e0f45c28ad8a678dc8732a78294ce5a36fc694141f772bb827a8f2",
"md5": "45ea8e64362cced2d3c769a24db3eca6",
"sha256": "eaa58399c01db555346647a907b4ef6d4f584b123943be6ed5588c3f2359c9f4"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "45ea8e64362cced2d3c769a24db3eca6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 345553,
"upload_time": "2024-12-09T18:10:57",
"upload_time_iso_8601": "2024-12-09T18:10:57.401206Z",
"url": "https://files.pythonhosted.org/packages/45/3e/142712e0f45c28ad8a678dc8732a78294ce5a36fc694141f772bb827a8f2/jiter-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36429b463b59fd22687b6da1afcad6c9adc870464a808208651de73f1dbeda09",
"md5": "a70e7902da6721c5431b5a1b2c8f997e",
"sha256": "8f2d5ed877f089862f4c7aacf3a542627c1496f972a34d0474ce85ee7d939c27"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a70e7902da6721c5431b5a1b2c8f997e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 377063,
"upload_time": "2024-12-09T18:10:58",
"upload_time_iso_8601": "2024-12-09T18:10:58.855516Z",
"url": "https://files.pythonhosted.org/packages/36/42/9b463b59fd22687b6da1afcad6c9adc870464a808208651de73f1dbeda09/jiter-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83b344b1f5cd2e4eb15757eec341b25399da4c90515bb881ef6636b50a8c08a5",
"md5": "bfc1ff9713b27654a7c67cb0828e023f",
"sha256": "03c9df035d4f8d647f8c210ddc2ae0728387275340668fb30d2421e17d9a0841"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bfc1ff9713b27654a7c67cb0828e023f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 512543,
"upload_time": "2024-12-09T18:11:00",
"upload_time_iso_8601": "2024-12-09T18:11:00.271258Z",
"url": "https://files.pythonhosted.org/packages/83/b3/44b1f5cd2e4eb15757eec341b25399da4c90515bb881ef6636b50a8c08a5/jiter-0.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "464ec695c803aa2b668c057b2dea1cdd7a884d1a819ce610cec0be9666210bfd",
"md5": "7dc5725c44070eb64e015b3016d9581e",
"sha256": "8bd2a824d08d8977bb2794ea2682f898ad3d8837932e3a74937e93d62ecbb637"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7dc5725c44070eb64e015b3016d9581e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 505141,
"upload_time": "2024-12-09T18:11:02",
"upload_time_iso_8601": "2024-12-09T18:11:02.134083Z",
"url": "https://files.pythonhosted.org/packages/46/4e/c695c803aa2b668c057b2dea1cdd7a884d1a819ce610cec0be9666210bfd/jiter-0.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e51e805b837db056f872db0b7a7a3610b7d764392be696dbe47afa0bea05bf2",
"md5": "4325cdab0128dac9b4f90cc3c5070ae4",
"sha256": "ca29b6371ebc40e496995c94b988a101b9fbbed48a51190a4461fcb0a68b4a36"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "4325cdab0128dac9b4f90cc3c5070ae4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 203529,
"upload_time": "2024-12-09T18:11:04",
"upload_time_iso_8601": "2024-12-09T18:11:04.227882Z",
"url": "https://files.pythonhosted.org/packages/8e/51/e805b837db056f872db0b7a7a3610b7d764392be696dbe47afa0bea05bf2/jiter-0.8.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32b7a3cde72c644fd1caf9da07fb38cf2c130f43484d8f91011940b7c4f42c8f",
"md5": "b118d492c186d88115c33ee013b2a5ac",
"sha256": "1c0dfbd1be3cbefc7510102370d86e35d1d53e5a93d48519688b1bf0f761160a"
},
"downloads": -1,
"filename": "jiter-0.8.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b118d492c186d88115c33ee013b2a5ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 207527,
"upload_time": "2024-12-09T18:11:06",
"upload_time_iso_8601": "2024-12-09T18:11:06.549787Z",
"url": "https://files.pythonhosted.org/packages/32/b7/a3cde72c644fd1caf9da07fb38cf2c130f43484d8f91011940b7c4f42c8f/jiter-0.8.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f87090bc7bd3932e651486861df5c8ffea4ca7c77d28e8532ddefe2abc561a53",
"md5": "303c174fa4366a1c9de3691c313e4fb6",
"sha256": "cd73d3e740666d0e639f678adb176fad25c1bcbdae88d8d7b857e1783bb4212d"
},
"downloads": -1,
"filename": "jiter-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "303c174fa4366a1c9de3691c313e4fb6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 163007,
"upload_time": "2024-12-09T18:11:08",
"upload_time_iso_8601": "2024-12-09T18:11:08.649548Z",
"url": "https://files.pythonhosted.org/packages/f8/70/90bc7bd3932e651486861df5c8ffea4ca7c77d28e8532ddefe2abc561a53/jiter-0.8.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 18:11:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pydantic",
"github_project": "jiter",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "jiter"
}