ujson


Nameujson JSON
Version 5.9.0 PyPI version JSON
download
home_pagehttps://github.com/ultrajson/ultrajson
SummaryUltra fast JSON encoder and decoder for Python
upload_time2023-12-10 22:50:34
maintainer
docs_urlNone
authorJonas Tarnstrom
requires_python>=3.8
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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
```

## 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": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Jonas Tarnstrom",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/6e/54/6f2bdac7117e89a47de4511c9f01732a283457ab1bf856e1e51aa861619e/ujson-5.9.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## 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": "",
    "summary": "Ultra fast JSON encoder and decoder for Python",
    "version": "5.9.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": "0df0c5083a3562f8422bc4c26b4bbb3a06bc3a62907ad02adcddb8dc7582c487",
                "md5": "d31d8eb5d6caa59ab212fec0cd7699de",
                "sha256": "ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d31d8eb5d6caa59ab212fec0cd7699de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 57720,
            "upload_time": "2023-12-10T22:48:47",
            "upload_time_iso_8601": "2023-12-10T22:48:47.019861Z",
            "url": "https://files.pythonhosted.org/packages/0d/f0/c5083a3562f8422bc4c26b4bbb3a06bc3a62907ad02adcddb8dc7582c487/ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87a70c17d59df9fb104b04d8137d1b79d089efbb27b58cec2cbbe482969304f4",
                "md5": "6ebbbd53a08dd01b924eba7ee9d4901b",
                "sha256": "7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6ebbbd53a08dd01b924eba7ee9d4901b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 54090,
            "upload_time": "2023-12-10T22:48:48",
            "upload_time_iso_8601": "2023-12-10T22:48:48.645447Z",
            "url": "https://files.pythonhosted.org/packages/87/a7/0c17d59df9fb104b04d8137d1b79d089efbb27b58cec2cbbe482969304f4/ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2005908ffe907b698811a32a60560c71d968f441a41a55af1608f0b5129d390e",
                "md5": "ca1cc3951db1b84769672ea75c477578",
                "sha256": "e015122b337858dba5a3dc3533af2a8fc0410ee9e2374092f6a5b88b182e9fcc"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ca1cc3951db1b84769672ea75c477578",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 51682,
            "upload_time": "2023-12-10T22:48:50",
            "upload_time_iso_8601": "2023-12-10T22:48:50.340470Z",
            "url": "https://files.pythonhosted.org/packages/20/05/908ffe907b698811a32a60560c71d968f441a41a55af1608f0b5129d390e/ujson-5.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7fa5802c527de69d012bf836ff3cc72ca70e0d799dff6034d39f68c27f2d50",
                "md5": "bf11c866e593b841fb432379caa86347",
                "sha256": "779a2a88c53039bebfbccca934430dabb5c62cc179e09a9c27a322023f363e0d"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf11c866e593b841fb432379caa86347",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 53248,
            "upload_time": "2023-12-10T22:48:52",
            "upload_time_iso_8601": "2023-12-10T22:48:52.026192Z",
            "url": "https://files.pythonhosted.org/packages/5f/7f/a5802c527de69d012bf836ff3cc72ca70e0d799dff6034d39f68c27f2d50/ujson-5.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d23304447295efcdcfd8afdea8990db10827e1b54c22ff2ea97ccf147345eb2a",
                "md5": "c461623e36cb6e624a9169612ca9ac43",
                "sha256": "10ca3c41e80509fd9805f7c149068fa8dbee18872bbdc03d7cca928926a358d5"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c461623e36cb6e624a9169612ca9ac43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 58186,
            "upload_time": "2023-12-10T22:48:53",
            "upload_time_iso_8601": "2023-12-10T22:48:53.203374Z",
            "url": "https://files.pythonhosted.org/packages/d2/33/04447295efcdcfd8afdea8990db10827e1b54c22ff2ea97ccf147345eb2a/ujson-5.9.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": "8d7df91118d8408eccd54a5cc2d16dfb1f8b9701b8798d38fea5ba3c2c402827",
                "md5": "cb47e987790e18e6a27339242626ff25",
                "sha256": "4a566e465cb2fcfdf040c2447b7dd9718799d0d90134b37a20dff1e27c0e9096"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb47e987790e18e6a27339242626ff25",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 584512,
            "upload_time": "2023-12-10T22:48:55",
            "upload_time_iso_8601": "2023-12-10T22:48:55.204796Z",
            "url": "https://files.pythonhosted.org/packages/8d/7d/f91118d8408eccd54a5cc2d16dfb1f8b9701b8798d38fea5ba3c2c402827/ujson-5.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba083fc98e5041e9799b0b7a5d842f221c060cb6854751ec894fff90f8a1d50c",
                "md5": "5c5f0e04c7d97cc04febeb5d3507e28c",
                "sha256": "f833c529e922577226a05bc25b6a8b3eb6c4fb155b72dd88d33de99d53113124"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5c5f0e04c7d97cc04febeb5d3507e28c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 656021,
            "upload_time": "2023-12-10T22:48:57",
            "upload_time_iso_8601": "2023-12-10T22:48:57.428967Z",
            "url": "https://files.pythonhosted.org/packages/ba/08/3fc98e5041e9799b0b7a5d842f221c060cb6854751ec894fff90f8a1d50c/ujson-5.9.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "444a11a91a9e2e5f6153d8042821f21ea488a91e8017162212362445118f6660",
                "md5": "8bff89bcc669a8e50af5b3473b352caa",
                "sha256": "b68a0caab33f359b4cbbc10065c88e3758c9f73a11a65a91f024b2e7a1257106"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bff89bcc669a8e50af5b3473b352caa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 597671,
            "upload_time": "2023-12-10T22:48:59",
            "upload_time_iso_8601": "2023-12-10T22:48:59.098870Z",
            "url": "https://files.pythonhosted.org/packages/44/4a/11a91a9e2e5f6153d8042821f21ea488a91e8017162212362445118f6660/ujson-5.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0c7f8c05f29c0caa00ce379e8d5ee8e87ac267f52f58ab7c8a761e3ebfc8809",
                "md5": "07947f336fc539a503401c7f11f9bebb",
                "sha256": "7cc7e605d2aa6ae6b7321c3ae250d2e050f06082e71ab1a4200b4ae64d25863c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "07947f336fc539a503401c7f11f9bebb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 38348,
            "upload_time": "2023-12-10T22:49:00",
            "upload_time_iso_8601": "2023-12-10T22:49:00.722378Z",
            "url": "https://files.pythonhosted.org/packages/b0/c7/f8c05f29c0caa00ce379e8d5ee8e87ac267f52f58ab7c8a761e3ebfc8809/ujson-5.9.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7fe34f18478d578831655b8d6428abb1a586bbc1244caafdd30b2776a4aff15",
                "md5": "6bff188d7bbde2239e48ff1a6e957afc",
                "sha256": "a6d3f10eb8ccba4316a6b5465b705ed70a06011c6f82418b59278fbc919bef6f"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6bff188d7bbde2239e48ff1a6e957afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 41931,
            "upload_time": "2023-12-10T22:49:02",
            "upload_time_iso_8601": "2023-12-10T22:49:02.197720Z",
            "url": "https://files.pythonhosted.org/packages/b7/fe/34f18478d578831655b8d6428abb1a586bbc1244caafdd30b2776a4aff15/ujson-5.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0caae3a6ca5b4f82ce654d6ac3dde5e59520537e20939592061ba506f4e569a",
                "md5": "88dcd25649d8f85702b0f276cc2ace15",
                "sha256": "3b23bbb46334ce51ddb5dded60c662fbf7bb74a37b8f87221c5b0fec1ec6454b"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88dcd25649d8f85702b0f276cc2ace15",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 57753,
            "upload_time": "2023-12-10T22:49:03",
            "upload_time_iso_8601": "2023-12-10T22:49:03.939934Z",
            "url": "https://files.pythonhosted.org/packages/c0/ca/ae3a6ca5b4f82ce654d6ac3dde5e59520537e20939592061ba506f4e569a/ujson-5.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "345fc27fa9a1562c96d978c39852b48063c3ca480758f3088dcfc0f3b09f8e93",
                "md5": "1c1f9736bc2ef0667beddd3837133211",
                "sha256": "6974b3a7c17bbf829e6c3bfdc5823c67922e44ff169851a755eab79a3dd31ec0"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1c1f9736bc2ef0667beddd3837133211",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 54092,
            "upload_time": "2023-12-10T22:49:05",
            "upload_time_iso_8601": "2023-12-10T22:49:05.194533Z",
            "url": "https://files.pythonhosted.org/packages/34/5f/c27fa9a1562c96d978c39852b48063c3ca480758f3088dcfc0f3b09f8e93/ujson-5.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19f31431713de9e5992e5e33ba459b4de28f83904233958855d27da820a101f9",
                "md5": "4356b500d2957e8b7eea507917ca935d",
                "sha256": "b5964ea916edfe24af1f4cc68488448fbb1ec27a3ddcddc2b236da575c12c8ae"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4356b500d2957e8b7eea507917ca935d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 51675,
            "upload_time": "2023-12-10T22:49:06",
            "upload_time_iso_8601": "2023-12-10T22:49:06.449989Z",
            "url": "https://files.pythonhosted.org/packages/19/f3/1431713de9e5992e5e33ba459b4de28f83904233958855d27da820a101f9/ujson-5.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d393de6fff3ae06351f3b1c372f675fe69bc180f93d237c9e496c05802173dd6",
                "md5": "05160f4c0b233109863e81a633ecca22",
                "sha256": "8ba7cac47dd65ff88571eceeff48bf30ed5eb9c67b34b88cb22869b7aa19600d"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05160f4c0b233109863e81a633ecca22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 53246,
            "upload_time": "2023-12-10T22:49:07",
            "upload_time_iso_8601": "2023-12-10T22:49:07.691792Z",
            "url": "https://files.pythonhosted.org/packages/d3/93/de6fff3ae06351f3b1c372f675fe69bc180f93d237c9e496c05802173dd6/ujson-5.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2673db509fe1d7da62a15c0769c398cec66bdfc61a8bdffaf7dfa9d973e3d65c",
                "md5": "435fb08edd4d62aad76558614e0395ef",
                "sha256": "6bbd91a151a8f3358c29355a491e915eb203f607267a25e6ab10531b3b157c5e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "435fb08edd4d62aad76558614e0395ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 58182,
            "upload_time": "2023-12-10T22:49:08",
            "upload_time_iso_8601": "2023-12-10T22:49:08.890759Z",
            "url": "https://files.pythonhosted.org/packages/26/73/db509fe1d7da62a15c0769c398cec66bdfc61a8bdffaf7dfa9d973e3d65c/ujson-5.9.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": "fca86be607fa3e1fa3e1c9b53f5de5acad33b073b6cc9145803e00bcafa729a8",
                "md5": "6b5e31c9073a02895ab9866af8c8f6ac",
                "sha256": "829a69d451a49c0de14a9fecb2a2d544a9b2c884c2b542adb243b683a6f15908"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b5e31c9073a02895ab9866af8c8f6ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 584493,
            "upload_time": "2023-12-10T22:49:11",
            "upload_time_iso_8601": "2023-12-10T22:49:11.043691Z",
            "url": "https://files.pythonhosted.org/packages/fc/a8/6be607fa3e1fa3e1c9b53f5de5acad33b073b6cc9145803e00bcafa729a8/ujson-5.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8c733822c2f1a8175e841e2bc378ffb2c1109ce9280f14cedb1b2fa0caf3145",
                "md5": "e8d3f6bb2ed384121c983048df4cd2ca",
                "sha256": "a807ae73c46ad5db161a7e883eec0fbe1bebc6a54890152ccc63072c4884823b"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e8d3f6bb2ed384121c983048df4cd2ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 656038,
            "upload_time": "2023-12-10T22:49:12",
            "upload_time_iso_8601": "2023-12-10T22:49:12.651362Z",
            "url": "https://files.pythonhosted.org/packages/c8/c7/33822c2f1a8175e841e2bc378ffb2c1109ce9280f14cedb1b2fa0caf3145/ujson-5.9.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51b85309fbb299d5fcac12bbf3db20896db5178392904abe6b992da233dc69d6",
                "md5": "c45802167a68d74c5410f0572032b2f4",
                "sha256": "8fc2aa18b13d97b3c8ccecdf1a3c405f411a6e96adeee94233058c44ff92617d"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c45802167a68d74c5410f0572032b2f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 597643,
            "upload_time": "2023-12-10T22:49:14",
            "upload_time_iso_8601": "2023-12-10T22:49:14.883647Z",
            "url": "https://files.pythonhosted.org/packages/51/b8/5309fbb299d5fcac12bbf3db20896db5178392904abe6b992da233dc69d6/ujson-5.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f647b63043b95dd78feed401b9973958af62645a6d19b72b6e83d1ea5af07e0",
                "md5": "c95046a3864c7957d3b7dd436c39582e",
                "sha256": "70e06849dfeb2548be48fdd3ceb53300640bc8100c379d6e19d78045e9c26120"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c95046a3864c7957d3b7dd436c39582e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 38342,
            "upload_time": "2023-12-10T22:49:16",
            "upload_time_iso_8601": "2023-12-10T22:49:16.854126Z",
            "url": "https://files.pythonhosted.org/packages/5f/64/7b63043b95dd78feed401b9973958af62645a6d19b72b6e83d1ea5af07e0/ujson-5.9.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a13a3cd1fc3a1126d30b558b6235c05e2d26eeaacba4979ee2fd2b5745c136d",
                "md5": "c87b956deea9bdbe26583d877ad76011",
                "sha256": "7309d063cd392811acc49b5016728a5e1b46ab9907d321ebbe1c2156bc3c0b99"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c87b956deea9bdbe26583d877ad76011",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 41923,
            "upload_time": "2023-12-10T22:49:17",
            "upload_time_iso_8601": "2023-12-10T22:49:17.983825Z",
            "url": "https://files.pythonhosted.org/packages/7a/13/a3cd1fc3a1126d30b558b6235c05e2d26eeaacba4979ee2fd2b5745c136d/ujson-5.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "167ec37fca6cd924931fa62d615cdbf5921f34481085705271696eff38b38867",
                "md5": "4ad177107d04461a7376adc9927ddd05",
                "sha256": "20509a8c9f775b3a511e308bbe0b72897ba6b800767a7c90c5cca59d20d7c42c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ad177107d04461a7376adc9927ddd05",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 57834,
            "upload_time": "2023-12-10T22:49:19",
            "upload_time_iso_8601": "2023-12-10T22:49:19.799088Z",
            "url": "https://files.pythonhosted.org/packages/16/7e/c37fca6cd924931fa62d615cdbf5921f34481085705271696eff38b38867/ujson-5.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb442753e902ee19bf6ccaf0bda02f1f0037f92a9769a5d31319905e3de645b4",
                "md5": "5f3d2bd0e4099a579d7f4df776bf3420",
                "sha256": "b28407cfe315bd1b34f1ebe65d3bd735d6b36d409b334100be8cdffae2177b2f"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f3d2bd0e4099a579d7f4df776bf3420",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 54119,
            "upload_time": "2023-12-10T22:49:21",
            "upload_time_iso_8601": "2023-12-10T22:49:21.039155Z",
            "url": "https://files.pythonhosted.org/packages/fb/44/2753e902ee19bf6ccaf0bda02f1f0037f92a9769a5d31319905e3de645b4/ujson-5.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2062317433e394450bc44afe32b6c39d5a51014da4c6f6cfc2ae7bf7b4a2922",
                "md5": "52f3cb555ba646c8a18924351a86db13",
                "sha256": "9d302bd17989b6bd90d49bade66943c78f9e3670407dbc53ebcf61271cadc399"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52f3cb555ba646c8a18924351a86db13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 51658,
            "upload_time": "2023-12-10T22:49:22",
            "upload_time_iso_8601": "2023-12-10T22:49:22.494747Z",
            "url": "https://files.pythonhosted.org/packages/d2/06/2317433e394450bc44afe32b6c39d5a51014da4c6f6cfc2ae7bf7b4a2922/ujson-5.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b3a2acf0da085d96953580b46941504aa3c91a1dd38701b9e9bfa43e2803467",
                "md5": "b4b096394be0bcf1a4d2c1e9fae48c85",
                "sha256": "9f21315f51e0db8ee245e33a649dd2d9dce0594522de6f278d62f15f998e050e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4b096394be0bcf1a4d2c1e9fae48c85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 53370,
            "upload_time": "2023-12-10T22:49:24",
            "upload_time_iso_8601": "2023-12-10T22:49:24.045136Z",
            "url": "https://files.pythonhosted.org/packages/5b/3a/2acf0da085d96953580b46941504aa3c91a1dd38701b9e9bfa43e2803467/ujson-5.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0332737e6c4b1841720f88ae88ec91f582dc21174bd40742739e1fa16a0c9ffa",
                "md5": "852566896cf08291c43ca73d359ff2a1",
                "sha256": "5635b78b636a54a86fdbf6f027e461aa6c6b948363bdf8d4fbb56a42b7388320"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "852566896cf08291c43ca73d359ff2a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 58278,
            "upload_time": "2023-12-10T22:49:25",
            "upload_time_iso_8601": "2023-12-10T22:49:25.261452Z",
            "url": "https://files.pythonhosted.org/packages/03/32/737e6c4b1841720f88ae88ec91f582dc21174bd40742739e1fa16a0c9ffa/ujson-5.9.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": "8adc3fda97f1ad070ccf2af597fb67dde358bc698ffecebe3bc77991d60e4fe5",
                "md5": "b127a0f9fa9ff63f68f5e7f3a7b50b09",
                "sha256": "82b5a56609f1235d72835ee109163c7041b30920d70fe7dac9176c64df87c164"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b127a0f9fa9ff63f68f5e7f3a7b50b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 584418,
            "upload_time": "2023-12-10T22:49:27",
            "upload_time_iso_8601": "2023-12-10T22:49:27.573338Z",
            "url": "https://files.pythonhosted.org/packages/8a/dc/3fda97f1ad070ccf2af597fb67dde358bc698ffecebe3bc77991d60e4fe5/ujson-5.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d757e4083d774fcd8ff3089c0ff19c424abe33f23e72c6578a8172bf65131992",
                "md5": "cd7f334b085e5bfce7476407563af38e",
                "sha256": "5ca35f484622fd208f55041b042d9d94f3b2c9c5add4e9af5ee9946d2d30db01"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cd7f334b085e5bfce7476407563af38e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 656126,
            "upload_time": "2023-12-10T22:49:29",
            "upload_time_iso_8601": "2023-12-10T22:49:29.509561Z",
            "url": "https://files.pythonhosted.org/packages/d7/57/e4083d774fcd8ff3089c0ff19c424abe33f23e72c6578a8172bf65131992/ujson-5.9.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dc38c6d5f6506ca9fcedd5a211e30a7d5ee053dc05caf23dae650e1f897effb",
                "md5": "bb55178fb1c6a0006915053958e85f64",
                "sha256": "829b824953ebad76d46e4ae709e940bb229e8999e40881338b3cc94c771b876c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb55178fb1c6a0006915053958e85f64",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 597795,
            "upload_time": "2023-12-10T22:49:31",
            "upload_time_iso_8601": "2023-12-10T22:49:31.029230Z",
            "url": "https://files.pythonhosted.org/packages/0d/c3/8c6d5f6506ca9fcedd5a211e30a7d5ee053dc05caf23dae650e1f897effb/ujson-5.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "345aa231f0cd305a34cf2d16930304132db3a7a8c3997b367dd38fc8f8dfae36",
                "md5": "1e5977899ca1eec4834a90ed3981f9d5",
                "sha256": "25fa46e4ff0a2deecbcf7100af3a5d70090b461906f2299506485ff31d9ec437"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "1e5977899ca1eec4834a90ed3981f9d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 38495,
            "upload_time": "2023-12-10T22:49:33",
            "upload_time_iso_8601": "2023-12-10T22:49:33.200756Z",
            "url": "https://files.pythonhosted.org/packages/34/5a/a231f0cd305a34cf2d16930304132db3a7a8c3997b367dd38fc8f8dfae36/ujson-5.9.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b718b841b44760ed298acdb150608dccdc045c41655e0bae4441f29bcab872",
                "md5": "2f261f8660ac27986c24313e44c2d5b4",
                "sha256": "60718f1720a61560618eff3b56fd517d107518d3c0160ca7a5a66ac949c6cf1c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f261f8660ac27986c24313e44c2d5b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 42088,
            "upload_time": "2023-12-10T22:49:34",
            "upload_time_iso_8601": "2023-12-10T22:49:34.921551Z",
            "url": "https://files.pythonhosted.org/packages/30/b7/18b841b44760ed298acdb150608dccdc045c41655e0bae4441f29bcab872/ujson-5.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1e0d2d06bd2ed1e84833eaad3777cd4ac4dcea22365a28184c2bc87dfe1f017",
                "md5": "fe33bdf541057cd04b73902fa7233858",
                "sha256": "d581db9db9e41d8ea0b2705c90518ba623cbdc74f8d644d7eb0d107be0d85d9c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe33bdf541057cd04b73902fa7233858",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 57792,
            "upload_time": "2023-12-10T22:49:36",
            "upload_time_iso_8601": "2023-12-10T22:49:36.226991Z",
            "url": "https://files.pythonhosted.org/packages/e1/e0/d2d06bd2ed1e84833eaad3777cd4ac4dcea22365a28184c2bc87dfe1f017/ujson-5.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc81a08e0dd66e2b150d328c2bf8091b2be356e9da4abd525eb2a5df12314398",
                "md5": "d2a40ecdfd8d40ec45bfd5915fb73b4e",
                "sha256": "ff741a5b4be2d08fceaab681c9d4bc89abf3c9db600ab435e20b9b6d4dfef12e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d2a40ecdfd8d40ec45bfd5915fb73b4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 54112,
            "upload_time": "2023-12-10T22:49:37",
            "upload_time_iso_8601": "2023-12-10T22:49:37.433542Z",
            "url": "https://files.pythonhosted.org/packages/dc/81/a08e0dd66e2b150d328c2bf8091b2be356e9da4abd525eb2a5df12314398/ujson-5.9.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9478343948809148b04e5d0af609520da8a83ad07d4690a25cd41b7270a7c7d5",
                "md5": "5093de639e93a61bb4b5b28b13aa0c32",
                "sha256": "cdcb02cabcb1e44381221840a7af04433c1dc3297af76fde924a50c3054c708c"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5093de639e93a61bb4b5b28b13aa0c32",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 51707,
            "upload_time": "2023-12-10T22:49:38",
            "upload_time_iso_8601": "2023-12-10T22:49:38.915904Z",
            "url": "https://files.pythonhosted.org/packages/94/78/343948809148b04e5d0af609520da8a83ad07d4690a25cd41b7270a7c7d5/ujson-5.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "977839bd02b54497d9295eaba5d597a5490cb2233f506df7db454da4e1d4e670",
                "md5": "79f568c3d2afe6cc2affdcd4444c8d4c",
                "sha256": "e208d3bf02c6963e6ef7324dadf1d73239fb7008491fdf523208f60be6437402"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79f568c3d2afe6cc2affdcd4444c8d4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 53297,
            "upload_time": "2023-12-10T22:49:40",
            "upload_time_iso_8601": "2023-12-10T22:49:40.255495Z",
            "url": "https://files.pythonhosted.org/packages/97/78/39bd02b54497d9295eaba5d597a5490cb2233f506df7db454da4e1d4e670/ujson-5.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b10037af2e0e94375673d4cb479d26c725bfac1bbaa25e2e9cf90fb6aa434ef",
                "md5": "69f0a68d2a3d98673d63058ad1973384",
                "sha256": "f4b3917296630a075e04d3d07601ce2a176479c23af838b6cf90a2d6b39b0d95"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69f0a68d2a3d98673d63058ad1973384",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 58259,
            "upload_time": "2023-12-10T22:49:41",
            "upload_time_iso_8601": "2023-12-10T22:49:41.941037Z",
            "url": "https://files.pythonhosted.org/packages/5b/10/037af2e0e94375673d4cb479d26c725bfac1bbaa25e2e9cf90fb6aa434ef/ujson-5.9.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": "4a7d7f5642e81374dbbf9fc9b099a71b62fbb8b565a24cfcd84c13172167bca9",
                "md5": "a24dc7e2301024f66907817db2fce52e",
                "sha256": "0c4d6adb2c7bb9eb7c71ad6f6f612e13b264942e841f8cc3314a21a289a76c4e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a24dc7e2301024f66907817db2fce52e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 584567,
            "upload_time": "2023-12-10T22:49:43",
            "upload_time_iso_8601": "2023-12-10T22:49:43.623464Z",
            "url": "https://files.pythonhosted.org/packages/4a/7d/7f5642e81374dbbf9fc9b099a71b62fbb8b565a24cfcd84c13172167bca9/ujson-5.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e217f55eaeae6c769ac1abd05cb1002c5e12565f37e6be78a6326139ea2b4e20",
                "md5": "2426e72a4273aaf33c86b0c5f90f6509",
                "sha256": "0b159efece9ab5c01f70b9d10bbb77241ce111a45bc8d21a44c219a2aec8ddfd"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2426e72a4273aaf33c86b0c5f90f6509",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 656110,
            "upload_time": "2023-12-10T22:49:45",
            "upload_time_iso_8601": "2023-12-10T22:49:45.771031Z",
            "url": "https://files.pythonhosted.org/packages/e2/17/f55eaeae6c769ac1abd05cb1002c5e12565f37e6be78a6326139ea2b4e20/ujson-5.9.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e31640e5647a9ad05adbb3ffeed272e2c9d887abd103eb66699968d6cf79d932",
                "md5": "db964069ef42345a866dacf6cdb0bc3a",
                "sha256": "f0cb4a7814940ddd6619bdce6be637a4b37a8c4760de9373bac54bb7b229698b"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db964069ef42345a866dacf6cdb0bc3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 597703,
            "upload_time": "2023-12-10T22:49:47",
            "upload_time_iso_8601": "2023-12-10T22:49:47.410884Z",
            "url": "https://files.pythonhosted.org/packages/e3/16/40e5647a9ad05adbb3ffeed272e2c9d887abd103eb66699968d6cf79d932/ujson-5.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b7a26d46b8189da6d72b5aa4242675e19978249adc452a3f63719a26f6b7b51",
                "md5": "5750ca38d4c8270ea49870949a55b738",
                "sha256": "dc80f0f5abf33bd7099f7ac94ab1206730a3c0a2d17549911ed2cb6b7aa36d2d"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "5750ca38d4c8270ea49870949a55b738",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 38359,
            "upload_time": "2023-12-10T22:49:48",
            "upload_time_iso_8601": "2023-12-10T22:49:48.988833Z",
            "url": "https://files.pythonhosted.org/packages/9b/7a/26d46b8189da6d72b5aa4242675e19978249adc452a3f63719a26f6b7b51/ujson-5.9.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20ceac40c36fd1a1206f3e8b4b8e2ab6bc42e3228672775c4c87de7f675ece37",
                "md5": "88fb16e175ba4ffda940373411ac6e57",
                "sha256": "506a45e5fcbb2d46f1a51fead991c39529fc3737c0f5d47c9b4a1d762578fc30"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "88fb16e175ba4ffda940373411ac6e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 41988,
            "upload_time": "2023-12-10T22:49:50",
            "upload_time_iso_8601": "2023-12-10T22:49:50.272787Z",
            "url": "https://files.pythonhosted.org/packages/20/ce/ac40c36fd1a1206f3e8b4b8e2ab6bc42e3228672775c4c87de7f675ece37/ujson-5.9.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b22c4500b6c1e99e01e2a902ddd8a14d0972d18c05f670c42a64ed65c6361eee",
                "md5": "4fa4b71ccf24bd98661a9a276643f45a",
                "sha256": "d0fd2eba664a22447102062814bd13e63c6130540222c0aa620701dd01f4be81"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fa4b71ccf24bd98661a9a276643f45a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 57790,
            "upload_time": "2023-12-10T22:49:51",
            "upload_time_iso_8601": "2023-12-10T22:49:51.979288Z",
            "url": "https://files.pythonhosted.org/packages/b2/2c/4500b6c1e99e01e2a902ddd8a14d0972d18c05f670c42a64ed65c6361eee/ujson-5.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "022d4d4956140a1c92f06ef8aa1a62a8eb7e99dd2f7f32aa5d2e4a963a4bcf7c",
                "md5": "d2f60bcbe2e372f6c90b93da305d3327",
                "sha256": "bdf7fc21a03bafe4ba208dafa84ae38e04e5d36c0e1c746726edf5392e9f9f36"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d2f60bcbe2e372f6c90b93da305d3327",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 54111,
            "upload_time": "2023-12-10T22:49:53",
            "upload_time_iso_8601": "2023-12-10T22:49:53.200004Z",
            "url": "https://files.pythonhosted.org/packages/02/2d/4d4956140a1c92f06ef8aa1a62a8eb7e99dd2f7f32aa5d2e4a963a4bcf7c/ujson-5.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22fbe5531dd0d0de2d5d1aff2e6a0b78299f2f9b611d2cd67954c1dfe064aae6",
                "md5": "81ba9ff0a527a5641d6286bb483354c8",
                "sha256": "e2f909bc08ce01f122fd9c24bc6f9876aa087188dfaf3c4116fe6e4daf7e194f"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81ba9ff0a527a5641d6286bb483354c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 51710,
            "upload_time": "2023-12-10T22:49:54",
            "upload_time_iso_8601": "2023-12-10T22:49:54.961795Z",
            "url": "https://files.pythonhosted.org/packages/22/fb/e5531dd0d0de2d5d1aff2e6a0b78299f2f9b611d2cd67954c1dfe064aae6/ujson-5.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd39bacd7004191d2d9bc8aaf0af102cbc761ab2af7dca649df67888041f84cd",
                "md5": "dd19f4088ead182a59f3a2cb7b683025",
                "sha256": "bd4ea86c2afd41429751d22a3ccd03311c067bd6aeee2d054f83f97e41e11d8f"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd19f4088ead182a59f3a2cb7b683025",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 53307,
            "upload_time": "2023-12-10T22:49:57",
            "upload_time_iso_8601": "2023-12-10T22:49:57.136035Z",
            "url": "https://files.pythonhosted.org/packages/bd/39/bacd7004191d2d9bc8aaf0af102cbc761ab2af7dca649df67888041f84cd/ujson-5.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4964c563bc163154714a128a7e7403bc3df5e826e8936bf1f5ef602c19626eed",
                "md5": "48c0a8f0d189e6b9707a81b166f445cd",
                "sha256": "63fb2e6599d96fdffdb553af0ed3f76b85fda63281063f1cb5b1141a6fcd0617"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "48c0a8f0d189e6b9707a81b166f445cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 58251,
            "upload_time": "2023-12-10T22:49:58",
            "upload_time_iso_8601": "2023-12-10T22:49:58.978488Z",
            "url": "https://files.pythonhosted.org/packages/49/64/c563bc163154714a128a7e7403bc3df5e826e8936bf1f5ef602c19626eed/ujson-5.9.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": "0b28ddbd1f3e7b81be954961bc9c54d5b7594367a6fcd3362ffbd3822514d3b3",
                "md5": "3a573582f644358a9e9fcce65653a638",
                "sha256": "32bba5870c8fa2a97f4a68f6401038d3f1922e66c34280d710af00b14a3ca562"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a573582f644358a9e9fcce65653a638",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 584553,
            "upload_time": "2023-12-10T22:50:00",
            "upload_time_iso_8601": "2023-12-10T22:50:00.454825Z",
            "url": "https://files.pythonhosted.org/packages/0b/28/ddbd1f3e7b81be954961bc9c54d5b7594367a6fcd3362ffbd3822514d3b3/ujson-5.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "504f9541c36bc1342dbea0853d6e75b91094f44f1e5709bca3c16e1a35f6bf84",
                "md5": "bae3e997255a69a0ea86378cc37e464f",
                "sha256": "37ef92e42535a81bf72179d0e252c9af42a4ed966dc6be6967ebfb929a87bc60"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bae3e997255a69a0ea86378cc37e464f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 656095,
            "upload_time": "2023-12-10T22:50:02",
            "upload_time_iso_8601": "2023-12-10T22:50:02.991152Z",
            "url": "https://files.pythonhosted.org/packages/50/4f/9541c36bc1342dbea0853d6e75b91094f44f1e5709bca3c16e1a35f6bf84/ujson-5.9.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3770f7a455225de729763c4cd34b06828bbb08478b39bb1409be0b5ec416d8a5",
                "md5": "d4540458fb1b89b77046644522a99e0b",
                "sha256": "f69f16b8f1c69da00e38dc5f2d08a86b0e781d0ad3e4cc6a13ea033a439c4844"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4540458fb1b89b77046644522a99e0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 597706,
            "upload_time": "2023-12-10T22:50:04",
            "upload_time_iso_8601": "2023-12-10T22:50:04.808746Z",
            "url": "https://files.pythonhosted.org/packages/37/70/f7a455225de729763c4cd34b06828bbb08478b39bb1409be0b5ec416d8a5/ujson-5.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf0a6853bb2727ab0878dead58db7859bac2b25af5a9de514651b0e0660d9640",
                "md5": "3199ac51c748b7f8712dc1e06b199504",
                "sha256": "3382a3ce0ccc0558b1c1668950008cece9bf463ebb17463ebf6a8bfc060dae34"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3199ac51c748b7f8712dc1e06b199504",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 38355,
            "upload_time": "2023-12-10T22:50:06",
            "upload_time_iso_8601": "2023-12-10T22:50:06.407415Z",
            "url": "https://files.pythonhosted.org/packages/bf/0a/6853bb2727ab0878dead58db7859bac2b25af5a9de514651b0e0660d9640/ujson-5.9.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e9aca2e2df94a23cf95c1ae60e89ad053eca3f010fc6996dae1898e5d90fde8",
                "md5": "faf73fdacec5ff107de65789a8248c9d",
                "sha256": "6adef377ed583477cf005b58c3025051b5faa6b8cc25876e594afbb772578f21"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "faf73fdacec5ff107de65789a8248c9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 41996,
            "upload_time": "2023-12-10T22:50:07",
            "upload_time_iso_8601": "2023-12-10T22:50:07.851152Z",
            "url": "https://files.pythonhosted.org/packages/2e/9a/ca2e2df94a23cf95c1ae60e89ad053eca3f010fc6996dae1898e5d90fde8/ujson-5.9.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081b10a58f775ee908a5c32b2e8fd7d6595d23d5272994d81de934764079352f",
                "md5": "6c24c79cf3032c9e331803dff18a593a",
                "sha256": "ffdfebd819f492e48e4f31c97cb593b9c1a8251933d8f8972e81697f00326ff1"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c24c79cf3032c9e331803dff18a593a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 51143,
            "upload_time": "2023-12-10T22:50:09",
            "upload_time_iso_8601": "2023-12-10T22:50:09.172169Z",
            "url": "https://files.pythonhosted.org/packages/08/1b/10a58f775ee908a5c32b2e8fd7d6595d23d5272994d81de934764079352f/ujson-5.9.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca6e8afa69a9c5bc86864bd23c468ce3a0fd8410fffac5c77807b1a7107bebd5",
                "md5": "a6f70a793f31c188c2217dee49b03254",
                "sha256": "c4eec2ddc046360d087cf35659c7ba0cbd101f32035e19047013162274e71fcf"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a6f70a793f31c188c2217dee49b03254",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 46944,
            "upload_time": "2023-12-10T22:50:10",
            "upload_time_iso_8601": "2023-12-10T22:50:10.387588Z",
            "url": "https://files.pythonhosted.org/packages/ca/6e/8afa69a9c5bc86864bd23c468ce3a0fd8410fffac5c77807b1a7107bebd5/ujson-5.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efc4737ce0c40d94b2048fdd728c0ed0f859a2e06b3098792e31b0d24f17442a",
                "md5": "468df0e0aa6472d843233c8467378307",
                "sha256": "2fbb90aa5c23cb3d4b803c12aa220d26778c31b6e4b7a13a1f49971f6c7d088e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "468df0e0aa6472d843233c8467378307",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 48158,
            "upload_time": "2023-12-10T22:50:11",
            "upload_time_iso_8601": "2023-12-10T22:50:11.826330Z",
            "url": "https://files.pythonhosted.org/packages/ef/c4/737ce0c40d94b2048fdd728c0ed0f859a2e06b3098792e31b0d24f17442a/ujson-5.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baace0f10b6e6979064c4eb17cf6ec201b2137ac1fab787d79379b6013c69d7f",
                "md5": "d46147b48f5f4de9cb64af0e23c85345",
                "sha256": "ba0823cb70866f0d6a4ad48d998dd338dce7314598721bc1b7986d054d782dfd"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d46147b48f5f4de9cb64af0e23c85345",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 53952,
            "upload_time": "2023-12-10T22:50:13",
            "upload_time_iso_8601": "2023-12-10T22:50:13.142385Z",
            "url": "https://files.pythonhosted.org/packages/ba/ac/e0f10b6e6979064c4eb17cf6ec201b2137ac1fab787d79379b6013c69d7f/ujson-5.9.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": "03b6ac205bd6ce45d9b6707b764c3a4e8aac5262fac58fbd91c23bb7077c72e8",
                "md5": "1739a5d29e649b7d2781fda7de28a79b",
                "sha256": "4e35d7885ed612feb6b3dd1b7de28e89baaba4011ecdf995e88be9ac614765e9"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1739a5d29e649b7d2781fda7de28a79b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 42055,
            "upload_time": "2023-12-10T22:50:15",
            "upload_time_iso_8601": "2023-12-10T22:50:15.207303Z",
            "url": "https://files.pythonhosted.org/packages/03/b6/ac205bd6ce45d9b6707b764c3a4e8aac5262fac58fbd91c23bb7077c72e8/ujson-5.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdafd527c68c72330ef8dd99c1d42a832af306934f87e04584ef754982c46adf",
                "md5": "b2bbae4e2c115d4c4095d269f984fb66",
                "sha256": "b048aa93eace8571eedbd67b3766623e7f0acbf08ee291bef7d8106210432427"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2bbae4e2c115d4c4095d269f984fb66",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 51189,
            "upload_time": "2023-12-10T22:50:17",
            "upload_time_iso_8601": "2023-12-10T22:50:17.195672Z",
            "url": "https://files.pythonhosted.org/packages/bd/af/d527c68c72330ef8dd99c1d42a832af306934f87e04584ef754982c46adf/ujson-5.9.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdc992ba90de8dd23327d895d62700d1e1c6671431296589f38acaf1454b83d2",
                "md5": "2d46d1141a630ad7d95bfa0f645f0b64",
                "sha256": "323279e68c195110ef85cbe5edce885219e3d4a48705448720ad925d88c9f851"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d46d1141a630ad7d95bfa0f645f0b64",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 48175,
            "upload_time": "2023-12-10T22:50:19",
            "upload_time_iso_8601": "2023-12-10T22:50:19.166437Z",
            "url": "https://files.pythonhosted.org/packages/cd/c9/92ba90de8dd23327d895d62700d1e1c6671431296589f38acaf1454b83d2/ujson-5.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed3326abf5f1de8361e68c8e327e726586b61c3c393ba09bf682be15fbb5df1e",
                "md5": "f140d33075518970056a511508e0ee1e",
                "sha256": "9ac92d86ff34296f881e12aa955f7014d276895e0e4e868ba7fddebbde38e378"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f140d33075518970056a511508e0ee1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 53965,
            "upload_time": "2023-12-10T22:50:20",
            "upload_time_iso_8601": "2023-12-10T22:50:20.916532Z",
            "url": "https://files.pythonhosted.org/packages/ed/33/26abf5f1de8361e68c8e327e726586b61c3c393ba09bf682be15fbb5df1e/ujson-5.9.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": "d7708a996b0ae6ca371c75601ec2f8d7ed76c6f35f3976f9d258cf2d6af8ac34",
                "md5": "b6a77db499ef86a23521c701ba4cae83",
                "sha256": "6eecbd09b316cea1fd929b1e25f70382917542ab11b692cb46ec9b0a26c7427f"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b6a77db499ef86a23521c701ba4cae83",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 42127,
            "upload_time": "2023-12-10T22:50:22",
            "upload_time_iso_8601": "2023-12-10T22:50:22.764815Z",
            "url": "https://files.pythonhosted.org/packages/d7/70/8a996b0ae6ca371c75601ec2f8d7ed76c6f35f3976f9d258cf2d6af8ac34/ujson-5.9.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c30950218fb10fb6c9dd3b50ac6f922805827885fdf358748c2f0aa4a76df1d",
                "md5": "04da9bccc00eda9566d7bb5b4bac7dd2",
                "sha256": "473fb8dff1d58f49912323d7cb0859df5585cfc932e4b9c053bf8cf7f2d7c5c4"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04da9bccc00eda9566d7bb5b4bac7dd2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 51092,
            "upload_time": "2023-12-10T22:50:24",
            "upload_time_iso_8601": "2023-12-10T22:50:24.077221Z",
            "url": "https://files.pythonhosted.org/packages/3c/30/950218fb10fb6c9dd3b50ac6f922805827885fdf358748c2f0aa4a76df1d/ujson-5.9.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3584e8ef8d94e18182ecf75949d04406b5ba1433b2fe9cd9b83cc6fae4d30182",
                "md5": "8fd7c6f829e396329770b120e75705b7",
                "sha256": "f91719c6abafe429c1a144cfe27883eace9fb1c09a9c5ef1bcb3ae80a3076a4e"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fd7c6f829e396329770b120e75705b7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 46925,
            "upload_time": "2023-12-10T22:50:25",
            "upload_time_iso_8601": "2023-12-10T22:50:25.376486Z",
            "url": "https://files.pythonhosted.org/packages/35/84/e8ef8d94e18182ecf75949d04406b5ba1433b2fe9cd9b83cc6fae4d30182/ujson-5.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8479e8751f45fe1b9da65f48888dd1f15d9244f667d4d1d9293a4a092d0dd7bf",
                "md5": "69776c16dd5dc7e2afea52942cce9638",
                "sha256": "7b1c0991c4fe256f5fdb19758f7eac7f47caac29a6c57d0de16a19048eb86bad"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69776c16dd5dc7e2afea52942cce9638",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 48143,
            "upload_time": "2023-12-10T22:50:26",
            "upload_time_iso_8601": "2023-12-10T22:50:26.621999Z",
            "url": "https://files.pythonhosted.org/packages/84/79/e8751f45fe1b9da65f48888dd1f15d9244f667d4d1d9293a4a092d0dd7bf/ujson-5.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40da4eeda413bad5a5d3222076210283b1f2bb0fbf91c751702ad8361498c4ef",
                "md5": "5dcc87a91884e0f1a4be10e3908d2579",
                "sha256": "2a8ea0f55a1396708e564595aaa6696c0d8af532340f477162ff6927ecc46e21"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5dcc87a91884e0f1a4be10e3908d2579",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 53927,
            "upload_time": "2023-12-10T22:50:27",
            "upload_time_iso_8601": "2023-12-10T22:50:27.932140Z",
            "url": "https://files.pythonhosted.org/packages/40/da/4eeda413bad5a5d3222076210283b1f2bb0fbf91c751702ad8361498c4ef/ujson-5.9.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": "d64c45fc98d6b2664d1e3babf37a5e99d2dc0f355a9a3e327db302181d7ac363",
                "md5": "b40a5c6ef03aa64d69c70ab28ea514e8",
                "sha256": "07e0cfdde5fd91f54cd2d7ffb3482c8ff1bf558abf32a8b953a5d169575ae1cd"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b40a5c6ef03aa64d69c70ab28ea514e8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 42080,
            "upload_time": "2023-12-10T22:50:29",
            "upload_time_iso_8601": "2023-12-10T22:50:29.352893Z",
            "url": "https://files.pythonhosted.org/packages/d6/4c/45fc98d6b2664d1e3babf37a5e99d2dc0f355a9a3e327db302181d7ac363/ujson-5.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e546f2bdac7117e89a47de4511c9f01732a283457ab1bf856e1e51aa861619e",
                "md5": "708ef70a2575d28ba739f2ecbc2976e9",
                "sha256": "89cc92e73d5501b8a7f48575eeb14ad27156ad092c2e9fc7e3cf949f07e75532"
            },
            "downloads": -1,
            "filename": "ujson-5.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "708ef70a2575d28ba739f2ecbc2976e9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 7154214,
            "upload_time": "2023-12-10T22:50:34",
            "upload_time_iso_8601": "2023-12-10T22:50:34.812085Z",
            "url": "https://files.pythonhosted.org/packages/6e/54/6f2bdac7117e89a47de4511c9f01732a283457ab1bf856e1e51aa861619e/ujson-5.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-10 22:50: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"
}
        
Elapsed time: 0.17193s