# UltraJSON
[![PyPI version](https://img.shields.io/pypi/v/ujson.svg?logo=pypi&logoColor=FFE873)](https://pypi.org/project/ujson)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/ujson.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/ujson)
[![PyPI downloads](https://img.shields.io/pypi/dm/ujson.svg)](https://pypistats.org/packages/ujson)
[![GitHub Actions status](https://github.com/ultrajson/ultrajson/workflows/Test/badge.svg)](https://github.com/ultrajson/ultrajson/actions)
[![codecov](https://codecov.io/gh/ultrajson/ultrajson/branch/main/graph/badge.svg)](https://codecov.io/gh/ultrajson/ultrajson)
[![DOI](https://zenodo.org/badge/1418941.svg)](https://zenodo.org/badge/latestdoi/1418941)
[![Code style: Black](https://img.shields.io/badge/code%20style-Black-000000.svg)](https://github.com/psf/black)
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for
Python 3.8+.
Install with pip:
```sh
python -m pip install ujson
```
## Project status
> [!WARNING]
> UltraJSON's architecture is fundamentally ill-suited to making changes without
> risk of introducing new security vulnerabilities. As a result, this library
> has been put into a *maintenance-only* mode. Support for new Python versions
> will be added and critical bugs and security issues will still be
> fixed but all other changes will be rejected. Users are encouraged to migrate
> to [orjson](https://pypi.org/project/orjson/) which is both much faster and
> less likely to introduce a surprise buffer overflow vulnerability in the
> future.
## Usage
May be used as a drop in replacement for most other JSON parsers for Python:
```pycon
>>> import ujson
>>> ujson.dumps([{"key": "value"}, 81, True])
'[{"key":"value"},81,true]'
>>> ujson.loads("""[{"key": "value"}, 81, true]""")
[{'key': 'value'}, 81, True]
```
### Encoder options
#### encode_html_chars
Used to enable special encoding of "unsafe" HTML characters into safer Unicode
sequences. Default is `False`:
```pycon
>>> ujson.dumps("<script>John&Doe", encode_html_chars=True)
'"\\u003cscript\\u003eJohn\\u0026Doe"'
```
#### ensure_ascii
Limits output to ASCII and escapes all extended characters above 127. Default is `True`.
If your end format supports UTF-8, setting this option to false is highly recommended to
save space:
```pycon
>>> ujson.dumps("åäö")
'"\\u00e5\\u00e4\\u00f6"'
>>> ujson.dumps("åäö", ensure_ascii=False)
'"åäö"'
```
#### escape_forward_slashes
Controls whether forward slashes (`/`) are escaped. Default is `True`:
```pycon
>>> ujson.dumps("https://example.com")
'"https:\\/\\/example.com"'
>>> ujson.dumps("https://example.com", escape_forward_slashes=False)
'"https://example.com"'
```
#### indent
Controls whether indentation ("pretty output") is enabled. Default is `0` (disabled):
```pycon
>>> ujson.dumps({"foo": "bar"})
'{"foo":"bar"}'
>>> print(ujson.dumps({"foo": "bar"}, indent=4))
{
"foo":"bar"
}
```
## Benchmarks
*UltraJSON* calls/sec compared to other popular JSON parsers with performance gain
specified below each.
### Test machine
Linux 5.15.0-1037-azure x86_64 #44-Ubuntu SMP Thu Apr 20 13:19:31 UTC 2023
### Versions
- CPython 3.11.3 (main, Apr 6 2023, 07:55:46) [GCC 11.3.0]
- ujson : 5.7.1.dev26
- orjson : 3.9.0
- simplejson : 3.19.1
- json : 2.0.9
| | ujson | orjson | simplejson | json |
|-------------------------------------------------------------------------------|-----------:|-----------:|-----------:|-----------:|
| Array with 256 doubles | | | | |
| encode | 18,282 | 79,569 | 5,681 | 5,935 |
| decode | 28,765 | 93,283 | 13,844 | 13,367 |
| Array with 256 UTF-8 strings | | | | |
| encode | 3,457 | 26,437 | 3,630 | 3,653 |
| decode | 3,576 | 4,236 | 522 | 1,978 |
| Array with 256 strings | | | | |
| encode | 44,769 | 125,920 | 21,401 | 23,565 |
| decode | 28,518 | 75,043 | 41,496 | 42,221 |
| Medium complex object | | | | |
| encode | 11,672 | 47,659 | 3,913 | 5,729 |
| decode | 12,522 | 23,599 | 8,007 | 9,720 |
| Array with 256 True values | | | | |
| encode | 110,444 | 425,919 | 81,428 | 84,347 |
| decode | 203,430 | 318,193 | 146,867 | 156,249 |
| Array with 256 dict{string, int} pairs | | | | |
| encode | 14,170 | 72,514 | 3,050 | 7,079 |
| decode | 19,116 | 27,542 | 9,374 | 13,713 |
| Dict with 256 arrays with 256 dict{string, int} pairs | | | | |
| encode | 55 | 282 | 11 | 26 |
| decode | 48 | 53 | 27 | 34 |
| Dict with 256 arrays with 256 dict{string, int} pairs, outputting sorted keys | | | | |
| encode | 42 | | 8 | 27 |
| Complex object | | | | |
| encode | 462 | | 397 | 444 |
| decode | 480 | 618 | 177 | 310 |
Above metrics are in call/sec, larger is better.
## Build options
For those with particular needs, such as Linux distribution packagers, several
build options are provided in the form of environment variables.
### Debugging symbols
#### UJSON_BUILD_NO_STRIP
By default, debugging symbols are stripped on Linux platforms. Setting this
environment variable with a value of `1` or `True` disables this behavior.
### Using an external or system copy of the double-conversion library
These two environment variables are typically used together, something like:
```sh
export UJSON_BUILD_DC_INCLUDES='/usr/include/double-conversion'
export UJSON_BUILD_DC_LIBS='-ldouble-conversion'
```
Users planning to link against an external shared library should be aware of
the ABI-compatibility requirements this introduces when upgrading system
libraries or copying compiled wheels to other machines.
#### UJSON_BUILD_DC_INCLUDES
One or more directories, delimited by `os.pathsep` (same as the `PATH`
environment variable), in which to look for `double-conversion` header files;
the default is to use the bundled copy.
#### UJSON_BUILD_DC_LIBS
Compiler flags needed to link the `double-conversion` library; the default
is to use the bundled copy.
Raw data
{
"_id": null,
"home_page": "https://github.com/ultrajson/ultrajson",
"name": "ujson",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Jonas Tarnstrom",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/f0/00/3110fd566786bfa542adb7932d62035e0c0ef662a8ff6544b6643b3d6fd7/ujson-5.10.0.tar.gz",
"platform": "any",
"description": "# UltraJSON\n\n[![PyPI version](https://img.shields.io/pypi/v/ujson.svg?logo=pypi&logoColor=FFE873)](https://pypi.org/project/ujson)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/ujson.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/ujson)\n[![PyPI downloads](https://img.shields.io/pypi/dm/ujson.svg)](https://pypistats.org/packages/ujson)\n[![GitHub Actions status](https://github.com/ultrajson/ultrajson/workflows/Test/badge.svg)](https://github.com/ultrajson/ultrajson/actions)\n[![codecov](https://codecov.io/gh/ultrajson/ultrajson/branch/main/graph/badge.svg)](https://codecov.io/gh/ultrajson/ultrajson)\n[![DOI](https://zenodo.org/badge/1418941.svg)](https://zenodo.org/badge/latestdoi/1418941)\n[![Code style: Black](https://img.shields.io/badge/code%20style-Black-000000.svg)](https://github.com/psf/black)\n\nUltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for\nPython 3.8+.\n\nInstall with pip:\n\n```sh\npython -m pip install ujson\n```\n\n## Project status\n\n> [!WARNING]\n> UltraJSON's architecture is fundamentally ill-suited to making changes without\n> risk of introducing new security vulnerabilities. As a result, this library\n> has been put into a *maintenance-only* mode. Support for new Python versions\n> will be added and critical bugs and security issues will still be\n> fixed but all other changes will be rejected. Users are encouraged to migrate\n> to [orjson](https://pypi.org/project/orjson/) which is both much faster and\n> less likely to introduce a surprise buffer overflow vulnerability in the\n> future.\n\n## Usage\n\nMay be used as a drop in replacement for most other JSON parsers for Python:\n\n```pycon\n>>> import ujson\n>>> ujson.dumps([{\"key\": \"value\"}, 81, True])\n'[{\"key\":\"value\"},81,true]'\n>>> ujson.loads(\"\"\"[{\"key\": \"value\"}, 81, true]\"\"\")\n[{'key': 'value'}, 81, True]\n```\n\n### Encoder options\n\n#### encode_html_chars\n\nUsed to enable special encoding of \"unsafe\" HTML characters into safer Unicode\nsequences. Default is `False`:\n\n```pycon\n>>> ujson.dumps(\"<script>John&Doe\", encode_html_chars=True)\n'\"\\\\u003cscript\\\\u003eJohn\\\\u0026Doe\"'\n```\n\n#### ensure_ascii\n\nLimits output to ASCII and escapes all extended characters above 127. Default is `True`.\nIf your end format supports UTF-8, setting this option to false is highly recommended to\nsave space:\n\n```pycon\n>>> ujson.dumps(\"\u00e5\u00e4\u00f6\")\n'\"\\\\u00e5\\\\u00e4\\\\u00f6\"'\n>>> ujson.dumps(\"\u00e5\u00e4\u00f6\", ensure_ascii=False)\n'\"\u00e5\u00e4\u00f6\"'\n```\n\n#### escape_forward_slashes\n\nControls whether forward slashes (`/`) are escaped. Default is `True`:\n\n```pycon\n>>> ujson.dumps(\"https://example.com\")\n'\"https:\\\\/\\\\/example.com\"'\n>>> ujson.dumps(\"https://example.com\", escape_forward_slashes=False)\n'\"https://example.com\"'\n```\n\n#### indent\n\nControls whether indentation (\"pretty output\") is enabled. Default is `0` (disabled):\n\n```pycon\n>>> ujson.dumps({\"foo\": \"bar\"})\n'{\"foo\":\"bar\"}'\n>>> print(ujson.dumps({\"foo\": \"bar\"}, indent=4))\n{\n \"foo\":\"bar\"\n}\n```\n\n## Benchmarks\n\n*UltraJSON* calls/sec compared to other popular JSON parsers with performance gain\nspecified below each.\n\n### Test machine\n\nLinux 5.15.0-1037-azure x86_64 #44-Ubuntu SMP Thu Apr 20 13:19:31 UTC 2023\n\n### Versions\n\n- CPython 3.11.3 (main, Apr 6 2023, 07:55:46) [GCC 11.3.0]\n- ujson : 5.7.1.dev26\n- orjson : 3.9.0\n- simplejson : 3.19.1\n- json : 2.0.9\n\n| | ujson | orjson | simplejson | json |\n|-------------------------------------------------------------------------------|-----------:|-----------:|-----------:|-----------:|\n| Array with 256 doubles | | | | |\n| encode | 18,282 | 79,569 | 5,681 | 5,935 |\n| decode | 28,765 | 93,283 | 13,844 | 13,367 |\n| Array with 256 UTF-8 strings | | | | |\n| encode | 3,457 | 26,437 | 3,630 | 3,653 |\n| decode | 3,576 | 4,236 | 522 | 1,978 |\n| Array with 256 strings | | | | |\n| encode | 44,769 | 125,920 | 21,401 | 23,565 |\n| decode | 28,518 | 75,043 | 41,496 | 42,221 |\n| Medium complex object | | | | |\n| encode | 11,672 | 47,659 | 3,913 | 5,729 |\n| decode | 12,522 | 23,599 | 8,007 | 9,720 |\n| Array with 256 True values | | | | |\n| encode | 110,444 | 425,919 | 81,428 | 84,347 |\n| decode | 203,430 | 318,193 | 146,867 | 156,249 |\n| Array with 256 dict{string, int} pairs | | | | |\n| encode | 14,170 | 72,514 | 3,050 | 7,079 |\n| decode | 19,116 | 27,542 | 9,374 | 13,713 |\n| Dict with 256 arrays with 256 dict{string, int} pairs | | | | |\n| encode | 55 | 282 | 11 | 26 |\n| decode | 48 | 53 | 27 | 34 |\n| Dict with 256 arrays with 256 dict{string, int} pairs, outputting sorted keys | | | | |\n| encode | 42 | | 8 | 27 |\n| Complex object | | | | |\n| encode | 462 | | 397 | 444 |\n| decode | 480 | 618 | 177 | 310 |\n\nAbove metrics are in call/sec, larger is better.\n\n## Build options\n\nFor those with particular needs, such as Linux distribution packagers, several\nbuild options are provided in the form of environment variables.\n\n### Debugging symbols\n\n#### UJSON_BUILD_NO_STRIP\n\nBy default, debugging symbols are stripped on Linux platforms. Setting this\nenvironment variable with a value of `1` or `True` disables this behavior.\n\n### Using an external or system copy of the double-conversion library\n\nThese two environment variables are typically used together, something like:\n\n```sh\nexport UJSON_BUILD_DC_INCLUDES='/usr/include/double-conversion'\nexport UJSON_BUILD_DC_LIBS='-ldouble-conversion'\n```\n\nUsers planning to link against an external shared library should be aware of\nthe ABI-compatibility requirements this introduces when upgrading system\nlibraries or copying compiled wheels to other machines.\n\n#### UJSON_BUILD_DC_INCLUDES\n\nOne or more directories, delimited by `os.pathsep` (same as the `PATH`\nenvironment variable), in which to look for `double-conversion` header files;\nthe default is to use the bundled copy.\n\n#### UJSON_BUILD_DC_LIBS\n\nCompiler flags needed to link the `double-conversion` library; the default\nis to use the bundled copy.\n",
"bugtrack_url": null,
"license": null,
"summary": "Ultra fast JSON encoder and decoder for Python",
"version": "5.10.0",
"project_urls": {
"Download": "https://github.com/ultrajson/ultrajson",
"Homepage": "https://github.com/ultrajson/ultrajson",
"Source": "https://github.com/ultrajson/ultrajson"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7d9191678e49a9194f527e60115db84368c237ac7824992224fac47dcb23a5c6",
"md5": "412f42d4ad7e4ae239e6b06503482a0a",
"sha256": "2601aa9ecdbee1118a1c2065323bda35e2c5a2cf0797ef4522d485f9d3ef65bd"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "412f42d4ad7e4ae239e6b06503482a0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 55354,
"upload_time": "2024-05-14T02:00:27",
"upload_time_iso_8601": "2024-05-14T02:00:27.054412Z",
"url": "https://files.pythonhosted.org/packages/7d/91/91678e49a9194f527e60115db84368c237ac7824992224fac47dcb23a5c6/ujson-5.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de2f1ed8c9b782fa4f44c26c1c4ec686d728a4865479da5712955daeef0b2e7b",
"md5": "a3a3b7bac7ccad426adfd02098bd3506",
"sha256": "348898dd702fc1c4f1051bc3aacbf894caa0927fe2c53e68679c073375f732cf"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3a3b7bac7ccad426adfd02098bd3506",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 51808,
"upload_time": "2024-05-14T02:00:29",
"upload_time_iso_8601": "2024-05-14T02:00:29.461599Z",
"url": "https://files.pythonhosted.org/packages/de/2f/1ed8c9b782fa4f44c26c1c4ec686d728a4865479da5712955daeef0b2e7b/ujson-5.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51bfa3a38b2912288143e8e613c6c4c3f798b5e4e98c542deabf94c60237235f",
"md5": "e2949526c9d529765a067c75f784383e",
"sha256": "22cffecf73391e8abd65ef5f4e4dd523162a3399d5e84faa6aebbf9583df86d6"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e2949526c9d529765a067c75f784383e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 51995,
"upload_time": "2024-05-14T02:00:30",
"upload_time_iso_8601": "2024-05-14T02:00:30.930538Z",
"url": "https://files.pythonhosted.org/packages/51/bf/a3a38b2912288143e8e613c6c4c3f798b5e4e98c542deabf94c60237235f/ujson-5.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b46d0df8f7a6f1944ba619d93025ce468c9252aa10799d7140e07014dfc1a16c",
"md5": "04ba464a1e5981ead3973b75e4689bd6",
"sha256": "26b0e2d2366543c1bb4fbd457446f00b0187a2bddf93148ac2da07a53fe51569"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "04ba464a1e5981ead3973b75e4689bd6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 53566,
"upload_time": "2024-05-14T02:00:33",
"upload_time_iso_8601": "2024-05-14T02:00:33.091951Z",
"url": "https://files.pythonhosted.org/packages/b4/6d/0df8f7a6f1944ba619d93025ce468c9252aa10799d7140e07014dfc1a16c/ujson-5.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5ec370741e5e30d5f7dc7f31a478d5bec7537ce6bfb7f85e72acefbe09aa2b2",
"md5": "6b47078bf1b59171306f7044df18ac6a",
"sha256": "caf270c6dba1be7a41125cd1e4fc7ba384bf564650beef0df2dd21a00b7f5770"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6b47078bf1b59171306f7044df18ac6a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 58499,
"upload_time": "2024-05-14T02:00:34",
"upload_time_iso_8601": "2024-05-14T02:00:34.742726Z",
"url": "https://files.pythonhosted.org/packages/d5/ec/370741e5e30d5f7dc7f31a478d5bec7537ce6bfb7f85e72acefbe09aa2b2/ujson-5.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe2972b33a88f7fae3c398f9ba3e74dc2e5875989b25f1c1f75489c048a2cf4e",
"md5": "130ce764a96c15da319820002e6ad4f0",
"sha256": "a245d59f2ffe750446292b0094244df163c3dc96b3ce152a2c837a44e7cda9d1"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "130ce764a96c15da319820002e6ad4f0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 997881,
"upload_time": "2024-05-14T02:00:36",
"upload_time_iso_8601": "2024-05-14T02:00:36.492639Z",
"url": "https://files.pythonhosted.org/packages/fe/29/72b33a88f7fae3c398f9ba3e74dc2e5875989b25f1c1f75489c048a2cf4e/ujson-5.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "705c808fbf21470e7045d56a282cf5e85a0450eacdb347d871d4eb404270ee17",
"md5": "4c1927d1aa3651390dd835165be74f80",
"sha256": "94a87f6e151c5f483d7d54ceef83b45d3a9cca7a9cb453dbdbb3f5a6f64033f5"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4c1927d1aa3651390dd835165be74f80",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1140631,
"upload_time": "2024-05-14T02:00:38",
"upload_time_iso_8601": "2024-05-14T02:00:38.995522Z",
"url": "https://files.pythonhosted.org/packages/70/5c/808fbf21470e7045d56a282cf5e85a0450eacdb347d871d4eb404270ee17/ujson-5.10.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f6ae1e8281408e6270d6ecf2375af14d9e2f41c402ab6b161ecfa87a9727777",
"md5": "b09d6a00eb5ffce41b8f2b955adea6b2",
"sha256": "29b443c4c0a113bcbb792c88bea67b675c7ca3ca80c3474784e08bba01c18d51"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b09d6a00eb5ffce41b8f2b955adea6b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1043511,
"upload_time": "2024-05-14T02:00:41",
"upload_time_iso_8601": "2024-05-14T02:00:41.352521Z",
"url": "https://files.pythonhosted.org/packages/8f/6a/e1e8281408e6270d6ecf2375af14d9e2f41c402ab6b161ecfa87a9727777/ujson-5.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbcae319acbe4863919ec62498bc1325309f5c14a3280318dca10fe1db3cb393",
"md5": "e12acf73444fdc52424304048266b323",
"sha256": "c18610b9ccd2874950faf474692deee4223a994251bc0a083c114671b64e6518"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "e12acf73444fdc52424304048266b323",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 38626,
"upload_time": "2024-05-14T02:00:43",
"upload_time_iso_8601": "2024-05-14T02:00:43.483843Z",
"url": "https://files.pythonhosted.org/packages/cb/ca/e319acbe4863919ec62498bc1325309f5c14a3280318dca10fe1db3cb393/ujson-5.10.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78ecdc96ca379de33f73b758d72e821ee4f129ccc32221f4eb3f089ff78d8370",
"md5": "8555c584d7d8cc50633c44b481804e06",
"sha256": "924f7318c31874d6bb44d9ee1900167ca32aa9b69389b98ecbde34c1698a250f"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8555c584d7d8cc50633c44b481804e06",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 42076,
"upload_time": "2024-05-14T02:00:46",
"upload_time_iso_8601": "2024-05-14T02:00:46.560898Z",
"url": "https://files.pythonhosted.org/packages/78/ec/dc96ca379de33f73b758d72e821ee4f129ccc32221f4eb3f089ff78d8370/ujson-5.10.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "23ec3c551ecfe048bcb3948725251fb0214b5844a12aa60bee08d78315bb1c39",
"md5": "17b15063ed293b00a423dcf5d67282e4",
"sha256": "a5b366812c90e69d0f379a53648be10a5db38f9d4ad212b60af00bd4048d0f00"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "17b15063ed293b00a423dcf5d67282e4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 55353,
"upload_time": "2024-05-14T02:00:48",
"upload_time_iso_8601": "2024-05-14T02:00:48.040072Z",
"url": "https://files.pythonhosted.org/packages/23/ec/3c551ecfe048bcb3948725251fb0214b5844a12aa60bee08d78315bb1c39/ujson-5.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d9f4731ef0671a0653e9f5ba18db7c4596d8ecbf80c7922dd5fe4150f1aea76",
"md5": "0fe714709afb0bf20adbeaa917d6f040",
"sha256": "502bf475781e8167f0f9d0e41cd32879d120a524b22358e7f205294224c71126"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0fe714709afb0bf20adbeaa917d6f040",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 51813,
"upload_time": "2024-05-14T02:00:49",
"upload_time_iso_8601": "2024-05-14T02:00:49.280065Z",
"url": "https://files.pythonhosted.org/packages/8d/9f/4731ef0671a0653e9f5ba18db7c4596d8ecbf80c7922dd5fe4150f1aea76/ujson-5.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f2b44d6b9c1688330bf011f9abfdb08911a9dc74f76926dde74e718d87600da",
"md5": "ab0d10a937630dcba25914ae68ccd84d",
"sha256": "5b91b5d0d9d283e085e821651184a647699430705b15bf274c7896f23fe9c9d8"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ab0d10a937630dcba25914ae68ccd84d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 51988,
"upload_time": "2024-05-14T02:00:50",
"upload_time_iso_8601": "2024-05-14T02:00:50.484435Z",
"url": "https://files.pythonhosted.org/packages/1f/2b/44d6b9c1688330bf011f9abfdb08911a9dc74f76926dde74e718d87600da/ujson-5.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2945f5f5667427c1ec3383478092a414063ddd0dfbebbcc533538fe37068a0a3",
"md5": "a189728cebc097151d5806c5be917d06",
"sha256": "129e39af3a6d85b9c26d5577169c21d53821d8cf68e079060602e861c6e5da1b"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a189728cebc097151d5806c5be917d06",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 53561,
"upload_time": "2024-05-14T02:00:52",
"upload_time_iso_8601": "2024-05-14T02:00:52.146520Z",
"url": "https://files.pythonhosted.org/packages/29/45/f5f5667427c1ec3383478092a414063ddd0dfbebbcc533538fe37068a0a3/ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2621a0c265cda4dd225ec1be595f844661732c13560ad06378760036fc622587",
"md5": "d8ed4d26c27eef03a2de6e47289aa743",
"sha256": "f77b74475c462cb8b88680471193064d3e715c7c6074b1c8c412cb526466efe9"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d8ed4d26c27eef03a2de6e47289aa743",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 58497,
"upload_time": "2024-05-14T02:00:53",
"upload_time_iso_8601": "2024-05-14T02:00:53.366438Z",
"url": "https://files.pythonhosted.org/packages/26/21/a0c265cda4dd225ec1be595f844661732c13560ad06378760036fc622587/ujson-5.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28368fde862094fd2342ccc427a6a8584fed294055fdee341661c78660f7aef3",
"md5": "d32e5b214d5607458e25abad4cd5f65e",
"sha256": "7ec0ca8c415e81aa4123501fee7f761abf4b7f386aad348501a26940beb1860f"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d32e5b214d5607458e25abad4cd5f65e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 997877,
"upload_time": "2024-05-14T02:00:55",
"upload_time_iso_8601": "2024-05-14T02:00:55.095288Z",
"url": "https://files.pythonhosted.org/packages/28/36/8fde862094fd2342ccc427a6a8584fed294055fdee341661c78660f7aef3/ujson-5.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90379208e40d53baa6da9b6a1c719e0670c3f474c8fc7cc2f1e939ec21c1bc93",
"md5": "1f250614e31a852cbab03e86956d4a1d",
"sha256": "ab13a2a9e0b2865a6c6db9271f4b46af1c7476bfd51af1f64585e919b7c07fd4"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1f250614e31a852cbab03e86956d4a1d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1140632,
"upload_time": "2024-05-14T02:00:57",
"upload_time_iso_8601": "2024-05-14T02:00:57.099652Z",
"url": "https://files.pythonhosted.org/packages/90/37/9208e40d53baa6da9b6a1c719e0670c3f474c8fc7cc2f1e939ec21c1bc93/ujson-5.10.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89d52626c87c59802863d44d19e35ad16b7e658e4ac190b0dead17ff25460b4c",
"md5": "82b340a4cefff4b027706650d7fdcf44",
"sha256": "57aaf98b92d72fc70886b5a0e1a1ca52c2320377360341715dd3933a18e827b1"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "82b340a4cefff4b027706650d7fdcf44",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1043513,
"upload_time": "2024-05-14T02:00:58",
"upload_time_iso_8601": "2024-05-14T02:00:58.488063Z",
"url": "https://files.pythonhosted.org/packages/89/d5/2626c87c59802863d44d19e35ad16b7e658e4ac190b0dead17ff25460b4c/ujson-5.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fee03662ce9b3f16855770f0d70f10f0978ba6210805aa310c4eebe66d36476",
"md5": "e633e3fc94611789603ac070a5e1a08a",
"sha256": "2987713a490ceb27edff77fb184ed09acdc565db700ee852823c3dc3cffe455f"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "e633e3fc94611789603ac070a5e1a08a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 38616,
"upload_time": "2024-05-14T02:01:00",
"upload_time_iso_8601": "2024-05-14T02:01:00.463559Z",
"url": "https://files.pythonhosted.org/packages/2f/ee/03662ce9b3f16855770f0d70f10f0978ba6210805aa310c4eebe66d36476/ujson-5.10.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e20952dbed5895835ea0b82e81a7be4ebb83f93b079d4d1ead93fcddb3075af",
"md5": "1c1302d444bd13f79f12f0bb7195ce2f",
"sha256": "f00ea7e00447918ee0eff2422c4add4c5752b1b60e88fcb3c067d4a21049a720"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "1c1302d444bd13f79f12f0bb7195ce2f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 42071,
"upload_time": "2024-05-14T02:01:02",
"upload_time_iso_8601": "2024-05-14T02:01:02.211559Z",
"url": "https://files.pythonhosted.org/packages/3e/20/952dbed5895835ea0b82e81a7be4ebb83f93b079d4d1ead93fcddb3075af/ujson-5.10.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8a6fd3f8bbd80842267e2d06c3583279555e8354c5986c952385199d57a5b6c",
"md5": "c73fcc66e9db3f18c857f51eefed141d",
"sha256": "98ba15d8cbc481ce55695beee9f063189dce91a4b08bc1d03e7f0152cd4bbdd5"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c73fcc66e9db3f18c857f51eefed141d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 55642,
"upload_time": "2024-05-14T02:01:04",
"upload_time_iso_8601": "2024-05-14T02:01:04.055837Z",
"url": "https://files.pythonhosted.org/packages/e8/a6/fd3f8bbd80842267e2d06c3583279555e8354c5986c952385199d57a5b6c/ujson-5.10.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a847dd03fd2b5ae727e16d5d18919b383959c6d269c7b948a380fdd879518640",
"md5": "156feac76992e83411ad63741325a51a",
"sha256": "a9d2edbf1556e4f56e50fab7d8ff993dbad7f54bac68eacdd27a8f55f433578e"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "156feac76992e83411ad63741325a51a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 51807,
"upload_time": "2024-05-14T02:01:05",
"upload_time_iso_8601": "2024-05-14T02:01:05.250015Z",
"url": "https://files.pythonhosted.org/packages/a8/47/dd03fd2b5ae727e16d5d18919b383959c6d269c7b948a380fdd879518640/ujson-5.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2523079a4cc6fd7e2655a473ed9e776ddbb7144e27f04e8fc484a0fb45fe6f71",
"md5": "ea32c01611c3da0ead2bb670ab2c6850",
"sha256": "6627029ae4f52d0e1a2451768c2c37c0c814ffc04f796eb36244cf16b8e57043"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ea32c01611c3da0ead2bb670ab2c6850",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 51972,
"upload_time": "2024-05-14T02:01:06",
"upload_time_iso_8601": "2024-05-14T02:01:06.458954Z",
"url": "https://files.pythonhosted.org/packages/25/23/079a4cc6fd7e2655a473ed9e776ddbb7144e27f04e8fc484a0fb45fe6f71/ujson-5.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0481668707e5f2177791869b624be4c06fb2473bf97ee33296b18d1cf3092af7",
"md5": "9e598a56712942ace4c6b23d32ad020a",
"sha256": "f8ccb77b3e40b151e20519c6ae6d89bfe3f4c14e8e210d910287f778368bb3d1"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e598a56712942ace4c6b23d32ad020a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 53686,
"upload_time": "2024-05-14T02:01:07",
"upload_time_iso_8601": "2024-05-14T02:01:07.618187Z",
"url": "https://files.pythonhosted.org/packages/04/81/668707e5f2177791869b624be4c06fb2473bf97ee33296b18d1cf3092af7/ujson-5.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd50056d518a386d80aaf4505ccf3cee1c40d312a46901ed494d5711dd939bc3",
"md5": "f3ec0f2921d4b3aae79d5aaed49b9141",
"sha256": "f3caf9cd64abfeb11a3b661329085c5e167abbe15256b3b68cb5d914ba7396f3"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f3ec0f2921d4b3aae79d5aaed49b9141",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 58591,
"upload_time": "2024-05-14T02:01:08",
"upload_time_iso_8601": "2024-05-14T02:01:08.901997Z",
"url": "https://files.pythonhosted.org/packages/bd/50/056d518a386d80aaf4505ccf3cee1c40d312a46901ed494d5711dd939bc3/ujson-5.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcd6aeaf3e2d6fb1f4cfb6bf25f454d60490ed8146ddc0600fae44bfe7eb5a72",
"md5": "72e124cdfd51f030b88f597db816e715",
"sha256": "6e32abdce572e3a8c3d02c886c704a38a1b015a1fb858004e03d20ca7cecbb21"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "72e124cdfd51f030b88f597db816e715",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 997853,
"upload_time": "2024-05-14T02:01:10",
"upload_time_iso_8601": "2024-05-14T02:01:10.772824Z",
"url": "https://files.pythonhosted.org/packages/fc/d6/aeaf3e2d6fb1f4cfb6bf25f454d60490ed8146ddc0600fae44bfe7eb5a72/ujson-5.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8d51f2a5d2699f447f7d990334ca96e90065ea7f99b142ce96e85f26d7e78e2",
"md5": "18f8a095adfc9c05ae685fd22500b365",
"sha256": "a65b6af4d903103ee7b6f4f5b85f1bfd0c90ba4eeac6421aae436c9988aa64a2"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "18f8a095adfc9c05ae685fd22500b365",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1140689,
"upload_time": "2024-05-14T02:01:12",
"upload_time_iso_8601": "2024-05-14T02:01:12.214743Z",
"url": "https://files.pythonhosted.org/packages/f8/d5/1f2a5d2699f447f7d990334ca96e90065ea7f99b142ce96e85f26d7e78e2/ujson-5.10.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f22c6990f4ccb41ed93744aaaa3786394bca0875503f97690622f3cafc0adfde",
"md5": "b8f88f6c9a764abdaf874f1cef93e04d",
"sha256": "604a046d966457b6cdcacc5aa2ec5314f0e8c42bae52842c1e6fa02ea4bda42e"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b8f88f6c9a764abdaf874f1cef93e04d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1043576,
"upload_time": "2024-05-14T02:01:14",
"upload_time_iso_8601": "2024-05-14T02:01:14.390648Z",
"url": "https://files.pythonhosted.org/packages/f2/2c/6990f4ccb41ed93744aaaa3786394bca0875503f97690622f3cafc0adfde/ujson-5.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14f5a2368463dbb09fbdbf6a696062d0c0f62e4ae6fa65f38f829611da2e8fdd",
"md5": "68cc681c57794136d2e2054ce4ca8b56",
"sha256": "6dea1c8b4fc921bf78a8ff00bbd2bfe166345f5536c510671bccececb187c80e"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "68cc681c57794136d2e2054ce4ca8b56",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 38764,
"upload_time": "2024-05-14T02:01:15",
"upload_time_iso_8601": "2024-05-14T02:01:15.830474Z",
"url": "https://files.pythonhosted.org/packages/14/f5/a2368463dbb09fbdbf6a696062d0c0f62e4ae6fa65f38f829611da2e8fdd/ujson-5.10.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "592d691f741ffd72b6c84438a93749ac57bf1a3f217ac4b0ea4fd0e96119e118",
"md5": "a89ef2753613a3e3959809d80a9a4cb8",
"sha256": "38665e7d8290188b1e0d57d584eb8110951a9591363316dd41cf8686ab1d0abc"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a89ef2753613a3e3959809d80a9a4cb8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 42211,
"upload_time": "2024-05-14T02:01:17",
"upload_time_iso_8601": "2024-05-14T02:01:17.567026Z",
"url": "https://files.pythonhosted.org/packages/59/2d/691f741ffd72b6c84438a93749ac57bf1a3f217ac4b0ea4fd0e96119e118/ujson-5.10.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d69b3e3f924bb0e8820bb46671979770c5be6a7d51c77a66324cdb09f1acddb",
"md5": "c1aff763edb9c2b4b6ec95488c1e70d6",
"sha256": "618efd84dc1acbd6bff8eaa736bb6c074bfa8b8a98f55b61c38d4ca2c1f7f287"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c1aff763edb9c2b4b6ec95488c1e70d6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 55646,
"upload_time": "2024-05-14T02:01:19",
"upload_time_iso_8601": "2024-05-14T02:01:19.260908Z",
"url": "https://files.pythonhosted.org/packages/0d/69/b3e3f924bb0e8820bb46671979770c5be6a7d51c77a66324cdb09f1acddb/ujson-5.10.0-cp313-cp313-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "328a9b748eb543c6cabc54ebeaa1f28035b1bd09c0800235b08e85990734c41e",
"md5": "724a05aa621eff80e45783249474eb08",
"sha256": "38d5d36b4aedfe81dfe251f76c0467399d575d1395a1755de391e58985ab1c2e"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "724a05aa621eff80e45783249474eb08",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 51806,
"upload_time": "2024-05-14T02:01:20",
"upload_time_iso_8601": "2024-05-14T02:01:20.593431Z",
"url": "https://files.pythonhosted.org/packages/32/8a/9b748eb543c6cabc54ebeaa1f28035b1bd09c0800235b08e85990734c41e/ujson-5.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39504b53ea234413b710a18b305f465b328e306ba9592e13a791a6a6b378869b",
"md5": "ff89fea080a31c0fe16d0024af8ed085",
"sha256": "67079b1f9fb29ed9a2914acf4ef6c02844b3153913eb735d4bf287ee1db6e557"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ff89fea080a31c0fe16d0024af8ed085",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 51975,
"upload_time": "2024-05-14T02:01:21",
"upload_time_iso_8601": "2024-05-14T02:01:21.904481Z",
"url": "https://files.pythonhosted.org/packages/39/50/4b53ea234413b710a18b305f465b328e306ba9592e13a791a6a6b378869b/ujson-5.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b49d8061934f960cdb6dd55f0b3ceeff207fcc48c64f58b43403777ad5623d9e",
"md5": "c7c6539ea35f358baf59344f24218d58",
"sha256": "d7d0e0ceeb8fe2468c70ec0c37b439dd554e2aa539a8a56365fd761edb418988"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c7c6539ea35f358baf59344f24218d58",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 53693,
"upload_time": "2024-05-14T02:01:23",
"upload_time_iso_8601": "2024-05-14T02:01:23.742255Z",
"url": "https://files.pythonhosted.org/packages/b4/9d/8061934f960cdb6dd55f0b3ceeff207fcc48c64f58b43403777ad5623d9e/ujson-5.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5be7bfa84b28519ddbb67efc8410765ca7da55e6b93aba84d97764cd5794dbc",
"md5": "edbcc9c7c36909e5e2fac6e3cc3902bf",
"sha256": "59e02cd37bc7c44d587a0ba45347cc815fb7a5fe48de16bf05caa5f7d0d2e816"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "edbcc9c7c36909e5e2fac6e3cc3902bf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 58594,
"upload_time": "2024-05-14T02:01:25",
"upload_time_iso_8601": "2024-05-14T02:01:25.554498Z",
"url": "https://files.pythonhosted.org/packages/f5/be/7bfa84b28519ddbb67efc8410765ca7da55e6b93aba84d97764cd5794dbc/ujson-5.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48eb85d465abafb2c69d9699cfa5520e6e96561db787d36c677370e066c7e2e7",
"md5": "ec66b3f203834bb9e5efe7c16955edf0",
"sha256": "2a890b706b64e0065f02577bf6d8ca3b66c11a5e81fb75d757233a38c07a1f20"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ec66b3f203834bb9e5efe7c16955edf0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 997853,
"upload_time": "2024-05-14T02:01:27",
"upload_time_iso_8601": "2024-05-14T02:01:27.151487Z",
"url": "https://files.pythonhosted.org/packages/48/eb/85d465abafb2c69d9699cfa5520e6e96561db787d36c677370e066c7e2e7/ujson-5.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f762a63409fc05d34dd7d929357b7a45e3a2c96f22b4225cd74becd2ba6c4cb",
"md5": "2556356dcb774af075dc02fdacadc509",
"sha256": "621e34b4632c740ecb491efc7f1fcb4f74b48ddb55e65221995e74e2d00bbff0"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2556356dcb774af075dc02fdacadc509",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1140694,
"upload_time": "2024-05-14T02:01:29",
"upload_time_iso_8601": "2024-05-14T02:01:29.113970Z",
"url": "https://files.pythonhosted.org/packages/9f/76/2a63409fc05d34dd7d929357b7a45e3a2c96f22b4225cd74becd2ba6c4cb/ujson-5.10.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45ed582c4daba0f3e1688d923b5cb914ada1f9defa702df38a1916c899f7c4d1",
"md5": "4aa0c16f2f37a2e72705affbdf2d68ba",
"sha256": "b9500e61fce0cfc86168b248104e954fead61f9be213087153d272e817ec7b4f"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4aa0c16f2f37a2e72705affbdf2d68ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1043580,
"upload_time": "2024-05-14T02:01:31",
"upload_time_iso_8601": "2024-05-14T02:01:31.447671Z",
"url": "https://files.pythonhosted.org/packages/45/ed/582c4daba0f3e1688d923b5cb914ada1f9defa702df38a1916c899f7c4d1/ujson-5.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d70c9837fece153051e19c7bade9f88f9b409e026b9525927824cdf16293b43b",
"md5": "11a8982cddfc83acd8efeea50f2d0ceb",
"sha256": "4c4fc16f11ac1612f05b6f5781b384716719547e142cfd67b65d035bd85af165"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "11a8982cddfc83acd8efeea50f2d0ceb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 38766,
"upload_time": "2024-05-14T02:01:32",
"upload_time_iso_8601": "2024-05-14T02:01:32.856491Z",
"url": "https://files.pythonhosted.org/packages/d7/0c/9837fece153051e19c7bade9f88f9b409e026b9525927824cdf16293b43b/ujson-5.10.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7726cb6728e2738c05bbe9bd522d6fc79f86b9a28402f38663e85a28fddd4a0",
"md5": "0c6660b3ef7f1161fb64f683f70788e1",
"sha256": "4573fd1695932d4f619928fd09d5d03d917274381649ade4328091ceca175539"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "0c6660b3ef7f1161fb64f683f70788e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 42212,
"upload_time": "2024-05-14T02:01:33",
"upload_time_iso_8601": "2024-05-14T02:01:33.970335Z",
"url": "https://files.pythonhosted.org/packages/d7/72/6cb6728e2738c05bbe9bd522d6fc79f86b9a28402f38663e85a28fddd4a0/ujson-5.10.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "019c2387820623455ac81781352e095a119250a9f957717490ad57957d875e56",
"md5": "a143881de5c47a42a5be1c2214635b63",
"sha256": "a984a3131da7f07563057db1c3020b1350a3e27a8ec46ccbfbf21e5928a43050"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a143881de5c47a42a5be1c2214635b63",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 55490,
"upload_time": "2024-05-14T02:01:35",
"upload_time_iso_8601": "2024-05-14T02:01:35.166720Z",
"url": "https://files.pythonhosted.org/packages/01/9c/2387820623455ac81781352e095a119250a9f957717490ad57957d875e56/ujson-5.10.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b78d0902429667065ee1a30f400ff4f0e97f1139fc958121856d520c35da3d1e",
"md5": "fe5c03fa0a5c7b0359729da2bb832a3e",
"sha256": "73814cd1b9db6fc3270e9d8fe3b19f9f89e78ee9d71e8bd6c9a626aeaeaf16bd"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fe5c03fa0a5c7b0359729da2bb832a3e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 51886,
"upload_time": "2024-05-14T02:01:36",
"upload_time_iso_8601": "2024-05-14T02:01:36.239410Z",
"url": "https://files.pythonhosted.org/packages/b7/8d/0902429667065ee1a30f400ff4f0e97f1139fc958121856d520c35da3d1e/ujson-5.10.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e0741145ed78838385ded3aceedb1bae496e7fb1c558fcfa337fd51651d0ec5",
"md5": "ecca18cde25e4072f98f608a8fb0885e",
"sha256": "61e1591ed9376e5eddda202ec229eddc56c612b61ac6ad07f96b91460bb6c2fb"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ecca18cde25e4072f98f608a8fb0885e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 52022,
"upload_time": "2024-05-14T02:01:37",
"upload_time_iso_8601": "2024-05-14T02:01:37.490674Z",
"url": "https://files.pythonhosted.org/packages/6e/07/41145ed78838385ded3aceedb1bae496e7fb1c558fcfa337fd51651d0ec5/ujson-5.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef6a5c383afd4b099771fe9ad88699424a0f405f65543b762500e653244d5d04",
"md5": "12252a21610ef5eb36e7b699a93ff08c",
"sha256": "d2c75269f8205b2690db4572a4a36fe47cd1338e4368bc73a7a0e48789e2e35a"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "12252a21610ef5eb36e7b699a93ff08c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 53610,
"upload_time": "2024-05-14T02:01:38",
"upload_time_iso_8601": "2024-05-14T02:01:38.689126Z",
"url": "https://files.pythonhosted.org/packages/ef/6a/5c383afd4b099771fe9ad88699424a0f405f65543b762500e653244d5d04/ujson-5.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba17940791e0a5fb5e90c2cd44fded53eb666b833918b5e65875dbd3e10812f9",
"md5": "e24c65e2d8b2c5cf3bac4a4bd3cac360",
"sha256": "7223f41e5bf1f919cd8d073e35b229295aa8e0f7b5de07ed1c8fddac63a6bc5d"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e24c65e2d8b2c5cf3bac4a4bd3cac360",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 58567,
"upload_time": "2024-05-14T02:01:40",
"upload_time_iso_8601": "2024-05-14T02:01:40.054844Z",
"url": "https://files.pythonhosted.org/packages/ba/17/940791e0a5fb5e90c2cd44fded53eb666b833918b5e65875dbd3e10812f9/ujson-5.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03b49be6bc48b8396983fa013a244e2f9fc1defcc0c4c55f76707930e749ad14",
"md5": "7e4c361d12f3ac22ff150fb897206e23",
"sha256": "d4dc2fd6b3067c0782e7002ac3b38cf48608ee6366ff176bbd02cf969c9c20fe"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7e4c361d12f3ac22ff150fb897206e23",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 998051,
"upload_time": "2024-05-14T02:01:42",
"upload_time_iso_8601": "2024-05-14T02:01:42.043540Z",
"url": "https://files.pythonhosted.org/packages/03/b4/9be6bc48b8396983fa013a244e2f9fc1defcc0c4c55f76707930e749ad14/ujson-5.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "660bd3620932fe5619b51cd05162b7169be2158bde88493d6fa9caad46fefb0b",
"md5": "a9eb367d702f01fa571054b17e7a7065",
"sha256": "232cc85f8ee3c454c115455195a205074a56ff42608fd6b942aa4c378ac14dd7"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a9eb367d702f01fa571054b17e7a7065",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1140680,
"upload_time": "2024-05-14T02:01:43",
"upload_time_iso_8601": "2024-05-14T02:01:43.770922Z",
"url": "https://files.pythonhosted.org/packages/66/0b/d3620932fe5619b51cd05162b7169be2158bde88493d6fa9caad46fefb0b/ujson-5.10.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5cb475defab49cac018d34ac7d47a2d5c8d764484ce8831d8fa8f523c41349d",
"md5": "0211b9631d0c562cbf5f9c9bc390be68",
"sha256": "cc6139531f13148055d691e442e4bc6601f6dba1e6d521b1585d4788ab0bfad4"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0211b9631d0c562cbf5f9c9bc390be68",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1043571,
"upload_time": "2024-05-14T02:01:45",
"upload_time_iso_8601": "2024-05-14T02:01:45.755463Z",
"url": "https://files.pythonhosted.org/packages/f5/cb/475defab49cac018d34ac7d47a2d5c8d764484ce8831d8fa8f523c41349d/ujson-5.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1587a256f829e32fbb2b0047b6dac260386f75591d17d5914b25ddc3c284d5b4",
"md5": "b6e7c7ae392bc38464da9f327fa3ebb2",
"sha256": "e7ce306a42b6b93ca47ac4a3b96683ca554f6d35dd8adc5acfcd55096c8dfcb8"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "b6e7c7ae392bc38464da9f327fa3ebb2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 38653,
"upload_time": "2024-05-14T02:01:47",
"upload_time_iso_8601": "2024-05-14T02:01:47.392599Z",
"url": "https://files.pythonhosted.org/packages/15/87/a256f829e32fbb2b0047b6dac260386f75591d17d5914b25ddc3c284d5b4/ujson-5.10.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d62855e3890f814727aa984f66effa5e3e848863777409e96183c59e15152f73",
"md5": "915fa35c3fe646430f1bed9327fab633",
"sha256": "e82d4bb2138ab05e18f089a83b6564fee28048771eb63cdecf4b9b549de8a2cc"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "915fa35c3fe646430f1bed9327fab633",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 42132,
"upload_time": "2024-05-14T02:01:48",
"upload_time_iso_8601": "2024-05-14T02:01:48.532004Z",
"url": "https://files.pythonhosted.org/packages/d6/28/55e3890f814727aa984f66effa5e3e848863777409e96183c59e15152f73/ujson-5.10.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "979450ff2f1b61d668907f20216873640ab19e0eaa77b51e64ee893f6adfb266",
"md5": "02a33b382109ee5c3ec22b7577ef913a",
"sha256": "dfef2814c6b3291c3c5f10065f745a1307d86019dbd7ea50e83504950136ed5b"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "02a33b382109ee5c3ec22b7577ef913a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 55421,
"upload_time": "2024-05-14T02:01:49",
"upload_time_iso_8601": "2024-05-14T02:01:49.765619Z",
"url": "https://files.pythonhosted.org/packages/97/94/50ff2f1b61d668907f20216873640ab19e0eaa77b51e64ee893f6adfb266/ujson-5.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cb33d2ca621d8dbeaf6c5afd0725e1b4bbd465077acc69eff1e9302735d1432",
"md5": "53f37545a858a687df4401df92ba1d75",
"sha256": "4734ee0745d5928d0ba3a213647f1c4a74a2a28edc6d27b2d6d5bd9fa4319e27"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "53f37545a858a687df4401df92ba1d75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 51816,
"upload_time": "2024-05-14T02:01:51",
"upload_time_iso_8601": "2024-05-14T02:01:51.047481Z",
"url": "https://files.pythonhosted.org/packages/0c/b3/3d2ca621d8dbeaf6c5afd0725e1b4bbd465077acc69eff1e9302735d1432/ujson-5.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8daf5dc103cb4d08f051f82d162a738adb9da488d1e3fafb9fd9290ea3eabf8e",
"md5": "df4b71dea944dc9220f544b04534548d",
"sha256": "d47ebb01bd865fdea43da56254a3930a413f0c5590372a1241514abae8aa7c76"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "df4b71dea944dc9220f544b04534548d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 52023,
"upload_time": "2024-05-14T02:01:53",
"upload_time_iso_8601": "2024-05-14T02:01:53.072912Z",
"url": "https://files.pythonhosted.org/packages/8d/af/5dc103cb4d08f051f82d162a738adb9da488d1e3fafb9fd9290ea3eabf8e/ujson-5.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5dddb9a6027ba782b0072bf24a70929e15a58686668c32a37aebfcfaa9e00bdd",
"md5": "4fcf3d5d02cfa7224f3995f7f5b30c24",
"sha256": "dee5e97c2496874acbf1d3e37b521dd1f307349ed955e62d1d2f05382bc36dd5"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4fcf3d5d02cfa7224f3995f7f5b30c24",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 53622,
"upload_time": "2024-05-14T02:01:54",
"upload_time_iso_8601": "2024-05-14T02:01:54.738018Z",
"url": "https://files.pythonhosted.org/packages/5d/dd/b9a6027ba782b0072bf24a70929e15a58686668c32a37aebfcfaa9e00bdd/ujson-5.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f28bcf6df25c1a9f1989dc2ddc4ac8a80e246857e089f91a9079fd8a0a01459",
"md5": "80208a5e7205e3d159fbeb161ff4244f",
"sha256": "7490655a2272a2d0b072ef16b0b58ee462f4973a8f6bbe64917ce5e0a256f9c0"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "80208a5e7205e3d159fbeb161ff4244f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 58563,
"upload_time": "2024-05-14T02:01:55",
"upload_time_iso_8601": "2024-05-14T02:01:55.991484Z",
"url": "https://files.pythonhosted.org/packages/1f/28/bcf6df25c1a9f1989dc2ddc4ac8a80e246857e089f91a9079fd8a0a01459/ujson-5.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e8289404453a102d06d0937f6807c0a7ef2eec68b200b4ce4386127f3c28156",
"md5": "b1b4514fc6d7430bf0324d0e01fdc103",
"sha256": "ba17799fcddaddf5c1f75a4ba3fd6441f6a4f1e9173f8a786b42450851bd74f1"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b1b4514fc6d7430bf0324d0e01fdc103",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 998050,
"upload_time": "2024-05-14T02:01:57",
"upload_time_iso_8601": "2024-05-14T02:01:57.800898Z",
"url": "https://files.pythonhosted.org/packages/9e/82/89404453a102d06d0937f6807c0a7ef2eec68b200b4ce4386127f3c28156/ujson-5.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63eb2a4ea07165cad217bc842bb684b053bafa8ffdb818c47911c621e97a33fc",
"md5": "466e5ae16b58882fd46e7be6a858cd9d",
"sha256": "2aff2985cef314f21d0fecc56027505804bc78802c0121343874741650a4d3d1"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "466e5ae16b58882fd46e7be6a858cd9d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1140672,
"upload_time": "2024-05-14T02:01:59",
"upload_time_iso_8601": "2024-05-14T02:01:59.875550Z",
"url": "https://files.pythonhosted.org/packages/63/eb/2a4ea07165cad217bc842bb684b053bafa8ffdb818c47911c621e97a33fc/ujson-5.10.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7253d7bdf6afabeba3ed899f89d993c7f202481fa291d8c5be031c98a181eda4",
"md5": "d459641f63424bae22dd058814af4781",
"sha256": "ad88ac75c432674d05b61184178635d44901eb749786c8eb08c102330e6e8996"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d459641f63424bae22dd058814af4781",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1043577,
"upload_time": "2024-05-14T02:02:02",
"upload_time_iso_8601": "2024-05-14T02:02:02.138019Z",
"url": "https://files.pythonhosted.org/packages/72/53/d7bdf6afabeba3ed899f89d993c7f202481fa291d8c5be031c98a181eda4/ujson-5.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19b175f5f0d18501fd34487e46829de3070724c7b350f1983ba7f07e0986720b",
"md5": "6c1e9a5e67a7503d806387ef670f56fc",
"sha256": "2544912a71da4ff8c4f7ab5606f947d7299971bdd25a45e008e467ca638d13c9"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6c1e9a5e67a7503d806387ef670f56fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 38654,
"upload_time": "2024-05-14T02:02:03",
"upload_time_iso_8601": "2024-05-14T02:02:03.710558Z",
"url": "https://files.pythonhosted.org/packages/19/b1/75f5f0d18501fd34487e46829de3070724c7b350f1983ba7f07e0986720b/ujson-5.10.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "770d50d2f9238f6d6683ead5ecd32d83d53f093a3c0047ae4c720b6d586cb80d",
"md5": "ca42ef2b3cd90207b4ad34f9f9ec30cc",
"sha256": "3ff201d62b1b177a46f113bb43ad300b424b7847f9c5d38b1b4ad8f75d4a282a"
},
"downloads": -1,
"filename": "ujson-5.10.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ca42ef2b3cd90207b4ad34f9f9ec30cc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 42134,
"upload_time": "2024-05-14T02:02:05",
"upload_time_iso_8601": "2024-05-14T02:02:05.013415Z",
"url": "https://files.pythonhosted.org/packages/77/0d/50d2f9238f6d6683ead5ecd32d83d53f093a3c0047ae4c720b6d586cb80d/ujson-5.10.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9553e5f5e733fc3525e65f36f533b0dbece5e5e2730b760e9beacf7e3d9d8b26",
"md5": "81e6d0e8688715a14624b770030f17d8",
"sha256": "5b6fee72fa77dc172a28f21693f64d93166534c263adb3f96c413ccc85ef6e64"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "81e6d0e8688715a14624b770030f17d8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 51846,
"upload_time": "2024-05-14T02:02:06",
"upload_time_iso_8601": "2024-05-14T02:02:06.347484Z",
"url": "https://files.pythonhosted.org/packages/95/53/e5f5e733fc3525e65f36f533b0dbece5e5e2730b760e9beacf7e3d9d8b26/ujson-5.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "591ff7bc02a54ea7b47f3dc2d125a106408f18b0f47b14fc737f0913483ae82b",
"md5": "35710abf9466c1ce27f9f0ec27ec4db3",
"sha256": "61d0af13a9af01d9f26d2331ce49bb5ac1fb9c814964018ac8df605b5422dcb3"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "35710abf9466c1ce27f9f0ec27ec4db3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 48103,
"upload_time": "2024-05-14T02:02:07",
"upload_time_iso_8601": "2024-05-14T02:02:07.777781Z",
"url": "https://files.pythonhosted.org/packages/59/1f/f7bc02a54ea7b47f3dc2d125a106408f18b0f47b14fc737f0913483ae82b/ujson-5.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a3ad3921b6f29bc744d8d6c56db5f8bbcbe55115fd0f2b79c3c43ff292cc7c9",
"md5": "a4236af13114b3a05ad6995a2357de93",
"sha256": "ecb24f0bdd899d368b715c9e6664166cf694d1e57be73f17759573a6986dd95a"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a4236af13114b3a05ad6995a2357de93",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 47257,
"upload_time": "2024-05-14T02:02:09",
"upload_time_iso_8601": "2024-05-14T02:02:09.460278Z",
"url": "https://files.pythonhosted.org/packages/1a/3a/d3921b6f29bc744d8d6c56db5f8bbcbe55115fd0f2b79c3c43ff292cc7c9/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f104f4e3883204b786717038064afd537389ba7d31a72b437c1372297cb651ea",
"md5": "98100ccae651080498a4720b154dbc77",
"sha256": "fbd8fd427f57a03cff3ad6574b5e299131585d9727c8c366da4624a9069ed746"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "98100ccae651080498a4720b154dbc77",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 48468,
"upload_time": "2024-05-14T02:02:10",
"upload_time_iso_8601": "2024-05-14T02:02:10.768440Z",
"url": "https://files.pythonhosted.org/packages/f1/04/f4e3883204b786717038064afd537389ba7d31a72b437c1372297cb651ea/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17cd9c6547169eb01a22b04cbb638804ccaeb3c2ec2afc12303464e0f9b2ee5a",
"md5": "76148f23621830135f14d92624d9be65",
"sha256": "beeaf1c48e32f07d8820c705ff8e645f8afa690cca1544adba4ebfa067efdc88"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "76148f23621830135f14d92624d9be65",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 54266,
"upload_time": "2024-05-14T02:02:12",
"upload_time_iso_8601": "2024-05-14T02:02:12.109801Z",
"url": "https://files.pythonhosted.org/packages/17/cd/9c6547169eb01a22b04cbb638804ccaeb3c2ec2afc12303464e0f9b2ee5a/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70bfecd14d3cf6127f8a990b01f0ad20e257f5619a555f47d707c57d39934894",
"md5": "e9d04e36d50dc8bea11d6c1231317fdf",
"sha256": "baed37ea46d756aca2955e99525cc02d9181de67f25515c468856c38d52b5f3b"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "e9d04e36d50dc8bea11d6c1231317fdf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 42224,
"upload_time": "2024-05-14T02:02:13",
"upload_time_iso_8601": "2024-05-14T02:02:13.843132Z",
"url": "https://files.pythonhosted.org/packages/70/bf/ecd14d3cf6127f8a990b01f0ad20e257f5619a555f47d707c57d39934894/ujson-5.10.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c26d749c8349ad080325d9dbfabd7fadfa79e4bb8304e9e0f2c42f0419568328",
"md5": "e77e9edce0f8ce87a23932dc1a9facdd",
"sha256": "7663960f08cd5a2bb152f5ee3992e1af7690a64c0e26d31ba7b3ff5b2ee66337"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e77e9edce0f8ce87a23932dc1a9facdd",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 51849,
"upload_time": "2024-05-14T02:02:15",
"upload_time_iso_8601": "2024-05-14T02:02:15.296181Z",
"url": "https://files.pythonhosted.org/packages/c2/6d/749c8349ad080325d9dbfabd7fadfa79e4bb8304e9e0f2c42f0419568328/ujson-5.10.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3256c8be7aa5520b96ffca82ab77112429fa9ed0f805cd33ad3ab3e6fe77c6e6",
"md5": "2e4c4de8ea8616e1bbf172991e8b9bb4",
"sha256": "d8640fb4072d36b08e95a3a380ba65779d356b2fee8696afeb7794cf0902d0a1"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2e4c4de8ea8616e1bbf172991e8b9bb4",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 48091,
"upload_time": "2024-05-14T02:02:17",
"upload_time_iso_8601": "2024-05-14T02:02:17.019969Z",
"url": "https://files.pythonhosted.org/packages/32/56/c8be7aa5520b96ffca82ab77112429fa9ed0f805cd33ad3ab3e6fe77c6e6/ujson-5.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1d727727f4de9f79f7be3e294f08d0640c4bba4c40d716a1523815f3d161e44",
"md5": "342e642036844ff3bdbf3eb40f9405c5",
"sha256": "78778a3aa7aafb11e7ddca4e29f46bc5139131037ad628cc10936764282d6753"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "342e642036844ff3bdbf3eb40f9405c5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 48488,
"upload_time": "2024-05-14T02:02:18",
"upload_time_iso_8601": "2024-05-14T02:02:18.397465Z",
"url": "https://files.pythonhosted.org/packages/a1/d7/27727f4de9f79f7be3e294f08d0640c4bba4c40d716a1523815f3d161e44/ujson-5.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "459c168928f96be009b93161eeb19cd7e058c397a6f79daa76667a2f26a6d775",
"md5": "3483e24267caddb2f78b3cc38ae8f5e1",
"sha256": "b0111b27f2d5c820e7f2dbad7d48e3338c824e7ac4d2a12da3dc6061cc39c8e6"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3483e24267caddb2f78b3cc38ae8f5e1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 54278,
"upload_time": "2024-05-14T02:02:19",
"upload_time_iso_8601": "2024-05-14T02:02:19.538353Z",
"url": "https://files.pythonhosted.org/packages/45/9c/168928f96be009b93161eeb19cd7e058c397a6f79daa76667a2f26a6d775/ujson-5.10.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd0b67770fc8eb6c8d1ecabe3f9dec937bc59611028e41dc0ff9febb582976db",
"md5": "579717582042e93e953b23600d086e9c",
"sha256": "c66962ca7565605b355a9ed478292da628b8f18c0f2793021ca4425abf8b01e5"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "579717582042e93e953b23600d086e9c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 42282,
"upload_time": "2024-05-14T02:02:20",
"upload_time_iso_8601": "2024-05-14T02:02:20.821336Z",
"url": "https://files.pythonhosted.org/packages/bd/0b/67770fc8eb6c8d1ecabe3f9dec937bc59611028e41dc0ff9febb582976db/ujson-5.10.0-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d96a3a2356ca5a4b67fe32a0c31e49226114d5154ba2464bb1220a93eb383e8",
"md5": "f861c65258e8afa6272f97b574b6816c",
"sha256": "ba43cc34cce49cf2d4bc76401a754a81202d8aa926d0e2b79f0ee258cb15d3a4"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f861c65258e8afa6272f97b574b6816c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 51855,
"upload_time": "2024-05-14T02:02:22",
"upload_time_iso_8601": "2024-05-14T02:02:22.164611Z",
"url": "https://files.pythonhosted.org/packages/8d/96/a3a2356ca5a4b67fe32a0c31e49226114d5154ba2464bb1220a93eb383e8/ujson-5.10.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "733d41e78e7500e75eb6b5a7ab06907a6df35603b92ac6f939b86f40e9fe2c06",
"md5": "8834021f07ae00f0e309263611a1fd2a",
"sha256": "ac56eb983edce27e7f51d05bc8dd820586c6e6be1c5216a6809b0c668bb312b8"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8834021f07ae00f0e309263611a1fd2a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 48059,
"upload_time": "2024-05-14T02:02:23",
"upload_time_iso_8601": "2024-05-14T02:02:23.673892Z",
"url": "https://files.pythonhosted.org/packages/73/3d/41e78e7500e75eb6b5a7ab06907a6df35603b92ac6f939b86f40e9fe2c06/ujson-5.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be14e435cbe5b5189483adbba5fe328e88418ccd54b2b1f74baa4172384bb5cd",
"md5": "3de42eb61bb7573a97bdd7ae821646e8",
"sha256": "f44bd4b23a0e723bf8b10628288c2c7c335161d6840013d4d5de20e48551773b"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3de42eb61bb7573a97bdd7ae821646e8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 47238,
"upload_time": "2024-05-14T02:02:24",
"upload_time_iso_8601": "2024-05-14T02:02:24.873982Z",
"url": "https://files.pythonhosted.org/packages/be/14/e435cbe5b5189483adbba5fe328e88418ccd54b2b1f74baa4172384bb5cd/ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8d9b6f4d1e6bec20a3b582b48f64eaa25209fd70dc2892b21656b273bc23434",
"md5": "3ee68737228ba25ec4b6286f1a1a9a98",
"sha256": "7c10f4654e5326ec14a46bcdeb2b685d4ada6911050aa8baaf3501e57024b804"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3ee68737228ba25ec4b6286f1a1a9a98",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 48457,
"upload_time": "2024-05-14T02:02:26",
"upload_time_iso_8601": "2024-05-14T02:02:26.186519Z",
"url": "https://files.pythonhosted.org/packages/e8/d9/b6f4d1e6bec20a3b582b48f64eaa25209fd70dc2892b21656b273bc23434/ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "231ccfefabb5996e21a1a4348852df7eb7cfc69299143739e86e5b1071c78735",
"md5": "326d8e3e7057a7a40eb73baef040cb0a",
"sha256": "0de4971a89a762398006e844ae394bd46991f7c385d7a6a3b93ba229e6dac17e"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "326d8e3e7057a7a40eb73baef040cb0a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 54238,
"upload_time": "2024-05-14T02:02:28",
"upload_time_iso_8601": "2024-05-14T02:02:28.468234Z",
"url": "https://files.pythonhosted.org/packages/23/1c/cfefabb5996e21a1a4348852df7eb7cfc69299143739e86e5b1071c78735/ujson-5.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "afc4fa70e77e1c27bbaf682d790bd09ef40e86807ada704c528ef3ea3418d439",
"md5": "65d1388001fe144824f85792c600dd2a",
"sha256": "e1402f0564a97d2a52310ae10a64d25bcef94f8dd643fcf5d310219d915484f7"
},
"downloads": -1,
"filename": "ujson-5.10.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "65d1388001fe144824f85792c600dd2a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 42230,
"upload_time": "2024-05-14T02:02:29",
"upload_time_iso_8601": "2024-05-14T02:02:29.678312Z",
"url": "https://files.pythonhosted.org/packages/af/c4/fa70e77e1c27bbaf682d790bd09ef40e86807ada704c528ef3ea3418d439/ujson-5.10.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0003110fd566786bfa542adb7932d62035e0c0ef662a8ff6544b6643b3d6fd7",
"md5": "7e61ead11ccf121cf4b1c121ec444e49",
"sha256": "b3cd8f3c5d8c7738257f1018880444f7b7d9b66232c64649f562d7ba86ad4bc1"
},
"downloads": -1,
"filename": "ujson-5.10.0.tar.gz",
"has_sig": false,
"md5_digest": "7e61ead11ccf121cf4b1c121ec444e49",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7154885,
"upload_time": "2024-05-14T02:02:34",
"upload_time_iso_8601": "2024-05-14T02:02:34.233352Z",
"url": "https://files.pythonhosted.org/packages/f0/00/3110fd566786bfa542adb7932d62035e0c0ef662a8ff6544b6643b3d6fd7/ujson-5.10.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-14 02:02:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ultrajson",
"github_project": "ultrajson",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "ujson"
}