Skip to main content

Ultra fast JSON encoder and decoder for Python

Project description

UltraJSON

PyPI version Supported Python versions PyPI downloads GitHub Actions status codecov DOI Code style: Black

UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python.

Install with pip:

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 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:

>>> 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:

>>> 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:

>>> ujson.dumps("åäö")
'"\\u00e5\\u00e4\\u00f6"'
>>> ujson.dumps("åäö", ensure_ascii=False)
'"åäö"'

escape_forward_slashes

Controls whether forward slashes (/) are escaped. Default is True:

>>> 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):

>>> 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:

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ujson-5.12.1.tar.gz (7.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ujson-5.12.1-pp311-pypy311_pp73-win_amd64.whl (45.4 kB view details)

Uploaded PyPyWindows x86-64

ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (53.6 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (58.5 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (52.3 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (51.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ujson-5.12.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (53.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ujson-5.12.1-graalpy312-graalpy250_312_native-win_amd64.whl (46.0 kB view details)

Uploaded Windows x86-64graalpy312

ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

Uploaded graalpy312manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (56.2 kB view details)

Uploaded graalpy312manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp314-cp314t-win_arm64.whl (41.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

ujson-5.12.1-cp314-cp314t-win_amd64.whl (47.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

ujson-5.12.1-cp314-cp314t-win32.whl (43.2 kB view details)

Uploaded CPython 3.14tWindows x86

ujson-5.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ujson-5.12.1-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

ujson-5.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ujson-5.12.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (62.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (60.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp314-cp314t-macosx_11_0_arm64.whl (56.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ujson-5.12.1-cp314-cp314t-macosx_10_15_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ujson-5.12.1-cp314-cp314-win_arm64.whl (41.2 kB view details)

Uploaded CPython 3.14Windows ARM64

ujson-5.12.1-cp314-cp314-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.14Windows x86-64

ujson-5.12.1-cp314-cp314-win32.whl (42.3 kB view details)

Uploaded CPython 3.14Windows x86

ujson-5.12.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ujson-5.12.1-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

ujson-5.12.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ujson-5.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (61.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp314-cp314-macosx_11_0_arm64.whl (55.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ujson-5.12.1-cp314-cp314-macosx_10_15_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ujson-5.12.1-cp313-cp313-win_arm64.whl (39.8 kB view details)

Uploaded CPython 3.13Windows ARM64

ujson-5.12.1-cp313-cp313-win_amd64.whl (45.3 kB view details)

Uploaded CPython 3.13Windows x86-64

ujson-5.12.1-cp313-cp313-win32.whl (41.1 kB view details)

Uploaded CPython 3.13Windows x86

ujson-5.12.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ujson-5.12.1-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

ujson-5.12.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ujson-5.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (61.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp313-cp313-macosx_11_0_arm64.whl (55.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ujson-5.12.1-cp313-cp313-macosx_10_13_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ujson-5.12.1-cp312-cp312-win_arm64.whl (39.8 kB view details)

Uploaded CPython 3.12Windows ARM64

ujson-5.12.1-cp312-cp312-win_amd64.whl (45.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ujson-5.12.1-cp312-cp312-win32.whl (41.0 kB view details)

Uploaded CPython 3.12Windows x86

ujson-5.12.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ujson-5.12.1-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

ujson-5.12.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ujson-5.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (61.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp312-cp312-macosx_11_0_arm64.whl (55.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ujson-5.12.1-cp312-cp312-macosx_10_13_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ujson-5.12.1-cp311-cp311-win_arm64.whl (39.9 kB view details)

Uploaded CPython 3.11Windows ARM64

ujson-5.12.1-cp311-cp311-win_amd64.whl (45.2 kB view details)

Uploaded CPython 3.11Windows x86-64

ujson-5.12.1-cp311-cp311-win32.whl (40.9 kB view details)

Uploaded CPython 3.11Windows x86

ujson-5.12.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ujson-5.12.1-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

ujson-5.12.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ujson-5.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (61.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp311-cp311-macosx_11_0_arm64.whl (55.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ujson-5.12.1-cp311-cp311-macosx_10_9_x86_64.whl (57.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ujson-5.12.1-cp310-cp310-win_arm64.whl (39.9 kB view details)

Uploaded CPython 3.10Windows ARM64

ujson-5.12.1-cp310-cp310-win_amd64.whl (45.2 kB view details)

Uploaded CPython 3.10Windows x86-64

ujson-5.12.1-cp310-cp310-win32.whl (40.9 kB view details)

Uploaded CPython 3.10Windows x86

ujson-5.12.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ujson-5.12.1-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

ujson-5.12.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ujson-5.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ujson-5.12.1-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (61.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

ujson-5.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ujson-5.12.1-cp310-cp310-macosx_11_0_arm64.whl (55.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ujson-5.12.1-cp310-cp310-macosx_10_9_x86_64.whl (57.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file ujson-5.12.1.tar.gz.

File metadata

  • Download URL: ujson-5.12.1.tar.gz
  • Upload date:
  • Size: 7.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1.tar.gz
Algorithm Hash digest
SHA256 5b7e96406c301a1366534479a7352ec40ec68bb327c0c119091635acd5925e35
MD5 b63214d42bf352450d6783c118ead28d
BLAKE2b-256 bc78937198ea8708182dd1edbf0237bf255a96feab3f511691ad08b84da98e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1.tar.gz:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7957b64583793042521f7f7c71c01626b3d32a17528eaab980eb8cdc3d4eec68
MD5 954a315c57f392c14db7d3dda946b1fe
BLAKE2b-256 a66449347c16508543e84b00884fc8625c4a90b070205fe18bd147c7fe0aef65

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdc6b277dcd27663f7fb76b6a5088424c66e0407c23e9884f80cd733f7d71b19
MD5 1e7a35ce2456844050433473cb9d7b41
BLAKE2b-256 a2a3adb2553d1e965b07b1b10d2f526b7233358b8385d65fd8a40155c5261b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 66005b49c753a1b9f2f8853919dc58e1e6bd66846ea341a33afa76c6d7602485
MD5 85e95e9d36878fef479f45011a01c17d
BLAKE2b-256 9020257531b3c11977da7aa1d2f8d75c1914c739810ca25f59cca2e7939a87d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8416bb724db9accfa97bdb77245952494b1800c23e42defd46afb5c661c9af19
MD5 346f5b6ef796cfadb325f1b999f39417
BLAKE2b-256 29404069d94ce5c546721fdb503fa074fc4d2dbdf8a95911ae26d89c13771136

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67c5f0d64eba0fbbd6d2d6a79b0c43c5bc06f27564378fd5d716e0d40360068
MD5 129298e0f330240a09dd748c06d57d07
BLAKE2b-256 97749d7fa873af84e687ec321d6761d61b0765fe6e46cc2599d6340521ef8b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e30fa6bc7156ed709e13f8b52e917db08fbfd611ba61346b62630974ec0ba8e
MD5 c9a466876444ac5eb6260a5d1e4b390c
BLAKE2b-256 4df4676811a968793722fbc3827111c7301cbe2473285eac9e7a75eb7a7f2495

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 4ea0c490c702c20495e97345acfcf0c2f3153e658ef537ff111929c48b89e10a
MD5 4767f20074ed94be45c4f8b532741181
BLAKE2b-256 8f13b688a905653871b10b4ff0403c2ff562c17a0bd50be0d44324f3c85ca48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0be2b4f2f547b9f0f3d902640e410e5a2fc851576cbe033c88445a23e3e7aef1
MD5 8608ee8f51f201f653f73591235e3b1a
BLAKE2b-256 eec8785f4e132500aff2f1fd2bd4a4b86fe396a5519f830a098358c90ebb92ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2c419bf42ae40963fc27f70c59e24e9a97f5cf168dbce2c572f3c0ce3595912
MD5 8b9040708536d19b69a10428239150b7
BLAKE2b-256 6d26c9d0479236b3f5690d6a8bb45f708aabc2c91ca80d275eba24b1e9e464ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 696224d4cfb8883fa5c0285dff31e5ce924704dd9ccd38e9ea8b5bf4a42b12fc
MD5 3c9f12c8e78aa0da99073e3c20ae9b6e
BLAKE2b-256 8a4636a67f5a531a15308124786f3e2b7b96414b9d23dbcdc2a182dd3ffa2e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 47.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cec6b9b539539affc1f01a795c99574592a635ce22331b64f2b42e0af570659e
MD5 7c2fb1554ab4e6e681463b7cd67d38eb
BLAKE2b-256 3dc8849366785de52b513e5fc89d7aea0b531e71bb5641407cbdfdf47a99ede8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4e12ca368b397aed7fa1eec534ea1ba8d94977b376f9df3e93ae1acfd004ec40
MD5 faf4434b26e438f5f7e9321a36988b7c
BLAKE2b-256 ae524d4a6e78290a5eef3f576f6d281e6355535db903a08483fd1bb393bf8cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 485f0182a0c0b54c304061cdc826d8343ce595c4055f7a24e72772a8520e5f7b
MD5 b0482e36ff7638e1a97ebd1a98434a3c
BLAKE2b-256 5451c3d1b94a4ad27dc7532e9f7d00b869463157cede2295ba6d57566afeb8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8df5d984ff4ac1ef292d70f30da03417038a7e1e0bc272d28ca9d34f02f41682
MD5 4320d9849ea9d63b0e2df699b21d39fd
BLAKE2b-256 6ad83c66cdf839420a6da2d6140a54a882c15efd135bcced103bd4473d577636

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dc5cf44ea42365cd1b66e6ed3fc6ca040c86587b024a6659b98e99d31cff2cd
MD5 62893876c0faf6472eaf13b1425665a1
BLAKE2b-256 18353b1d8ff8cd6dc048f5c495af6ee6ded43055562610a7e9b78b438dc6421e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b22aa0f644516d3d5b29464949e4b23fe784f84b4a1030ab9ac3cb42aaedabb1
MD5 30f92d13462c9d1210a648f2ab47f1b9
BLAKE2b-256 5c0d889bbc044561d9adc9bf413620fbd9878f352c9fd36da829d319bca2f5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 45022aae09ac3d45bda6fbfc631088d1aff9a0465542d40bd6d295ced378c430
MD5 e1952905a2679b91f9b6580069cb12c9
BLAKE2b-256 c514c0c603e3dff2ef98f7deee2df7795e6055abbc5825c6ef530024b3b06a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc26caebea90425662ef0b979f945f6ac832651881107d6ec9a3c4d4a4ba929c
MD5 fe4aba4068cc6435e1510082e733d22b
BLAKE2b-256 912d2c1b24df24eee309047d81460c3a1acf0d047207327edc6f3cab8a614985

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d8827904358d7da59ccf2e1fd8de59e78248036d17fecc0462e62c6721f1102
MD5 500cf18e023cbd818fe37cdf95e5ed79
BLAKE2b-256 ed6a1784e0b24aab50623eb47b2f7a8dc22c9d809d798854d2568a9cb7c3560f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 49dd9c378e1c8e676785ff2b62cb490074229f15ab54abf45b623713cb2c36b5
MD5 7b3847f498cad42ca030f46438d993de
BLAKE2b-256 3f3d7547835cd0b7fa22eb1122702f81b2403c38a0027a2cc0d75acc449a4a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 41.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e3c9c894971f4ada3ded16a804ed4640e1f2b3e5239beaeec7c48296f39f4232
MD5 d0ddb6b1cd6f954d005551c23fedbc59
BLAKE2b-256 4e3b0ee2555823724e60cc847c715c299f5792aa444bdde69c51d4aa42d885c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c6d3bdd020333688ee60559437021ed68a98a28fdd609b5af16de5dd58f90cba
MD5 a3d7f2d8c30e22fb1ff61ffc35994e7d
BLAKE2b-256 49b00af30bf65d96b73c28054b344ebbe24bc96780ae8a7f2973f5dad979510a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 42.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8e626b6bc9bdd2e8f7393b7d99f3daa2ca4022e6203662e70de7bb3604b21b9
MD5 8b5c081a4db676805819dfd406986ac3
BLAKE2b-256 4ed228938574b766980f873b68962abb4c68a944d939446768982934ad3bcd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19ea07e29a45d199f926aadf93a9974128438c01b83141fba32477c0ee604b33
MD5 da81450884226a7be2ca974118880373
BLAKE2b-256 ed6e087067d6ee22bd01bfba9fb1f32ce98c24ae2bcbab53bd2fbf8f7a80fe9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c335caea51c31494e514b82d50763b9792d3960d2c7d9fdb6b6fb8ed50ebdd0
MD5 7a913dac8b06ef8c38766da798f2f705
BLAKE2b-256 fba7abe1acb0e5d8b8d724b35533a44c89684c88100a5fd9f2fee7f7155528d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07f307780f85b49cba93f291718421b6f5f3b627a323b431fad937a18f6587cb
MD5 56318a2c8ab0e85cd370865ccece53fb
BLAKE2b-256 21485d81cbe76fc2aa9e071aa489a3041cf0712f5e0663d60d501641f92b7bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f39ba3b65cc637b59731532f7e7c807786bff1d0332ab2d5b96a04d2584d78f
MD5 6007b0178951cc34a9c676323119f788
BLAKE2b-256 5050ab4b2f7bab6c7a67298c8f2aca80e2082eaf6f332cf2d099762647b5301e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f48ef8a16f1d85bd7982beac7adfd3fb704058631db84c1c61c8a1b7072b1508
MD5 888742533c2161b8ff31895110c1d08c
BLAKE2b-256 a272310f8c21737554f2d2b4f1883e1a71e8a6ab0d8f92f0feb8aaa85e0f4b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 984b5a99d1e0a037c2046c3c4b34cec832565d62d5017be0a035bf3cbfab72dc
MD5 609b4a6fd87529a307902b316dd17eea
BLAKE2b-256 a96d12a3b8e72132db244ae048075e71a0079b3c5f61ff45b7ca81d5193ab3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b657e870c77aaacdeea86cfad3e6d2ef9b52517e45988c9c367f7ee764fe4dd
MD5 a432ebef313da5eb96c19076cc4d212f
BLAKE2b-256 ae2da0a88407cee3550f7ed1e49b41157ee2d410f51905ed51fb134844255280

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6f19e9a407a24230df0cc1ec1c0f5999872ba526b14a780f80ad6479f5eed9bc
MD5 411be087cb2489624944407b2ceaa1b3
BLAKE2b-256 f8cad88d86f90f8f237985f3e347b9a4f9fa24e8d30d19ec7d477ed18aa58393

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 963287e4b1bc463735c4056968a2dfa59bb831b6daba68bddd14f451191fe9e5
MD5 fff4372a067e8394900c1f6b7e109d00
BLAKE2b-256 5ff2c839a923da49384d4a319ddd5ce666e50e45a5c8417cec742c65667a1864

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 45.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e08d9e096c416ddc34519241f97c201258b42639f2012d9547d8ae32921800dd
MD5 252877e546b247464f74184f028c7247
BLAKE2b-256 98768b423bc72a02f3fcf90f911a16382f360442c1a8887955c023d517f5d4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 41.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee83fbac03a0896faf190177c938f94eb610b798d495a19d50997242c4eca685
MD5 8aa8b85b5c477fb410964ee900896147
BLAKE2b-256 6e815e6ef1115c0f700a74a150857c66cb22245f0e43f79667af9bf2b88f9452

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a09636220f26c66f80c6c6283023cb53120e843825f890be92696cd1aa43f39
MD5 4158e3b1aca84335246699312346484e
BLAKE2b-256 46aaf135f4b741baf14d5350be5511076408e7540353d3d850a430cb89d585a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d57d731ecf492d3d011e65369f8330654f0875b19f646be5270d478e843d3b81
MD5 39f4f06ca1d5a7422d9ea58bd601145c
BLAKE2b-256 6d30907e47569bed5f5eb258fef5e587c6759a7a062048796e40024497137e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 727e983ef27892d86ee2d28fd517eeb02b2c1165aafcbe929dce988aeee81bfe
MD5 ad9d3643d677540377795ec6cc1b33d6
BLAKE2b-256 b527ec73bc8908c33eb1f5be29d696084e531cbcfbd5c7b89ce54c025f66c682

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8aa731138d6dfca4ab84501b72384e6c544bfb48cb87a0dd4d304df3246cac25
MD5 0ac1c0a4254e54c0c6619794ca999e64
BLAKE2b-256 6c15ec46b1757c8f7770d8c101b8a463bec67c19e89c46c608d01e4b193cc64a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 949cb4863a5d4847edeb47c5364b334e8cadf23a7cbdaa547d86098a4b093106
MD5 75edd9e6b11b57e027819d0dbfac7810
BLAKE2b-256 11d255274e80fe1806cdb5cb97483be16cd6163337ab11c3bd7e28ff8a8aad26

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5db0849c0e3da54822a5834f2dc51d7c51072d7f7d665014ee34600dc10889b
MD5 3cb03fa2e82af57c0cb1b0d846a685b6
BLAKE2b-256 04e6104ebc35fa8dbaca66bf027c53c0c9c572271c2984576f4fd7d349d1a2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dc91fa06ea35920b704fd9d70871897680145998071cfbf5ee3e19f2c9fc242
MD5 c4fc754bad136a6ca75f92d5b752e0ca
BLAKE2b-256 617303c7473372e1a538206fc655e474fa15f8bf9c46bb7c73c5fec9a544e429

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c4bdc052a5d097f0a2e56d93aed97355f9f7a62ef9baa4f8517e43245434af9c
MD5 d523845ae5bccbaa4092ecdf74ca1c40
BLAKE2b-256 b9f0985b351771ebf095e2c1aaad18f4d251831226a767a32593310e4f181f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7642a41520ac1b2bc25ea282b66b8da522cc43424442e6fb5e039be4d4f96530
MD5 1529b30bd9f3ea03ebee2a846a47fa06
BLAKE2b-256 d7665a37bba7a2e2ab36ae467521c4511e6593ad74c869f62ec4ba6330f3f71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 45.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f6074d3d3267ba1914c624b6e1fa3d8152648ff36b0ab77ddf83b92db488c30d
MD5 e4248e96aaa44232a5bb04b6d62ba84d
BLAKE2b-256 352a7ce3b6fda10d05b79a245db03405734b521ba3da6c377f173b018dce6d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 758e5c8fbe4e6d483041e03b307b01fb5d2f2dd4452d4d4b927ab902e188939e
MD5 063848c3d1ff06e835368b2cabdb58cd
BLAKE2b-256 5a1f76fc9d5b1dcb9eb73ed45fd56e5114391bd30808eb1cea7f8bc5c9a64324

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea3bed53d2ea8e5642e814a9e41f3e29420a8067874ba03ace8c0462e160490c
MD5 f98cf969624794240eb26e12123cd3fa
BLAKE2b-256 4badfafbce7ac59f1a10a83892d0a34add23cc06492308e1330493aab707dc20

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77a71fe53427a0cf49d56eafd801d9f7e203b784b7f99cc717783fd6f6f7b732
MD5 6262157dfad56a3986c05451d9edbd9c
BLAKE2b-256 94b19409bba17189ee282b6314cdf0ecdcc72e3d38cd565c870c0227d0494569

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a6efff7dc6515416366819de4a1bc449b77107c5b48508b101fd40f7f8bec08
MD5 d44ac4a638bb28aff57b5c1ce868143c
BLAKE2b-256 184d79c1674036085e8dfdb77f8d87c1fd2896e97e6affd117c5e8ecc40f0ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7a81724d5d90a2da7155d15d8b156ce57eaed7cdd622df813f36a8e612fd4c8
MD5 2d238c209b33161b6a8abcc881f70e12
BLAKE2b-256 d50ac619525576219bfc50084100117481b1a732a16716a3878355570995de4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 427893168d074e59214b0ee058337c57f5bb80175cdd5b4799a9c931aae22022
MD5 4d378fc5798c0993549ac115480ab0c4
BLAKE2b-256 d5d760c1ca71a09c0654c3edca1192a18fc55e6cc06107be86d7d3f2b39fb29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 289f13095764d03734adfa10107da9b530ceb64dc1b02a5f507588d978d5b7df
MD5 3991a26adfcc66fcee2565d14f24e834
BLAKE2b-256 be591248c966da197ae7d2673542444a2d9a1ff7c46e3ec2a302c3caf902b922

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cc6ea753b7303fa5629fa9ac9257ea4b001c4d72583b2bb36ff1855a07db49f
MD5 dfa54cd549925b8be1e1b756a17b8fd7
BLAKE2b-256 8ddb627472e6b4ac34148ea52e6d3d15f6f366fc21c72fe7d6c7d3729d4b3ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10f44bd08ae52ee23ca6e8b472692e5da1768af2d53ff1bad6f40b532e0bc7ee
MD5 24725e78963f7a142c50cd37fab88e08
BLAKE2b-256 d740dbb8e2fe6ee33769602fba203dacaa3963b6599f0d0aefdf2b8811af5f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 12e99e49c62322ed0394c914aff15403ba7ede0b74f05a0faa4ec12c7d17a139
MD5 3bc28c4e331b35b995202eb525d6a493
BLAKE2b-256 a5cc1b034c46913162cac12027f7b67731e8ede4554b0e6fd60d265301156f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 45.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46315b82505c99101dcab3bd979f15fecfde85c02df7efbb4e428fa357665290
MD5 fbb6b3d22866c39c9da5e8e91f18cf62
BLAKE2b-256 10df4efd312d74077085798ce1bae9b1678a7d84360725820918096eb89cd8e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 251ba8229e19b4b0b3efb5e7e3ddfa67c5c466aa492707bc3f6568bf714604dc
MD5 0398d92bb84f78878bdb72008bc087ed
BLAKE2b-256 33c8e2488780945045cb7c61479fbc2379aa28ff502fba5ab8f42c0908e127fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 080bc65ac7c0a6314d45d55b6171d3a48b1aeaf89895654d625b291cfe46309f
MD5 aeb53bcbdd366d80edba338b19d3d3a9
BLAKE2b-256 52edb1eabac89d349d92991badb61becdef5a2fd077c0f54007f7241a52c0f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50d07e79ec70d32b4fbe18ab706ed0b172be08710d5901b9d067d7951bfaa164
MD5 619813099b4a224ddfeafa078f38eaf3
BLAKE2b-256 edbd5fd45dcc5ea24134cc41ebd548b03233d3e76e3bd2f429576e81fb7be7a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b21b4c680594c8686bcd4cdda0fd3ea2567b9d42bcf1d1e3d92d39bcdb02e8f1
MD5 1dc7b6c1fa228c4a0df5c890286e6d32
BLAKE2b-256 0b03c2f9ca9cd08c362f1a400d8c6f8284ba8303d75b2d721b2b6aa361875e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f75caed5b6d1fc271bb720a780c4199914267f7b865f9bf17826c4feccea582c
MD5 27c267f0f2ef1a472ee8232244f05d92
BLAKE2b-256 f1190634cf9a5f03c70388fbc3890b84ee0d38d51df3a524c515e3930cc75c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2cfbd6b0c677d5d053964b8f98d8bb1af10c591c8c24454bcd40006ac8ba18db
MD5 ff06d657f70564444918a106269eaa65
BLAKE2b-256 d783606272e7fa7179c5acdb0113e1f86726746e6d54264d20561b0d2925bdf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29d1d64ed2c3c17666f4f0e15462800f3477255dc53667ad5d099277866c5666
MD5 a67aeeb554e011cbb7f9d139f8891645
BLAKE2b-256 93b2b309a5812643149c2e920907c0b1948c5ae4158888feee26df58d8fb7915

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bca3f04b2f590a8211acdc3ca06649b65a7ed1e999437dccf095310be9d3ba4e
MD5 9e81acb21abf2763c8b7f5ce2d0048c9
BLAKE2b-256 40c8347a29f9f9dc7e3e30fcabc2dc0fec4c553a6c37dd77afdf7c88d1d40ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26dcb43869057373048cbd2678293c5b0f962d5774cc76fc9488564a209bcbf2
MD5 1f5214eedf3f247bbdc4079a54090aa6
BLAKE2b-256 15bd78c4537392d4e2a5502447f942fcd665f69c282c604d4e23dc649cf98aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 80f58ae2be100da0f525330ee274accd8892d1c125fea75076f60539d9a5f9cd
MD5 10e0a8e1816cd26619674101378e38dc
BLAKE2b-256 5d8b910e2e56376622de6e72f27816b76beff1692794ce119dacc2e95aba1240

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-win_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ujson-5.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 45.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e31afad20cd6837a5ac6965d95b44b0ff06e42a82b01a8d3dc606a07f0b7a2a
MD5 419818c493f70f8c150e35f77de4c09c
BLAKE2b-256 4427425109462ed4f4a4d33d51481e793a3588303e62788de0b10e5890f473f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: ujson-5.12.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ujson-5.12.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 757f2026bef09d231d63a2250a2c7ad21ea1c9cb1ded6480659d202c4e2ef09e
MD5 d3f465719fa4c6765455f115c01f213b
BLAKE2b-256 d5cb387830f8f5337689bad699551775b885319ed085201447c1dd6815ab7e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-win32.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9523d67d45334f9a1d62e423bd72be62b58d2289a50420ffffa9363763eab73f
MD5 0fe389cdaf8e306002a8015823bcb0e2
BLAKE2b-256 d115cdb84a2dbb0d9d1ec1ec0c77358c5dc3da3c2fb1a1d992112927476807dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6afa86c117b66034004ee83c5149c6dccf7cb88941f9d3a1640c7076577f2d4
MD5 0e6497bb78a514cf7c2f36f52a4bb340
BLAKE2b-256 f7cd4baa856d862be92fc7424f52c59b18e092bb91105fb5e32f90f1cac52afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d90d27953716ef206c42f166932b3dbb264dc638bbf32acae81b216ae35f566d
MD5 08f3e03202f4915ae5e6d6fb4f349726
BLAKE2b-256 0e963a56766612e22e700be08a0d09d90d244a38dbe55a47e477132c6d9ff4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 191d2077fd53441599a2efd3dcc205b9cc5f3a4d685a76e9f73f4b6c19aee0c9
MD5 6a7c1e6621bb4bb863fc9aa017659aa4
BLAKE2b-256 ba8d182298e537ea433e7669ac1223b8de538a549e82978c7b61efae4b852717

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7bba5ab7965619db7d6f5503133b8e2d8bfce9bb6754224ca64d19261cc52f7c
MD5 c2feb0b4afc6eebea8f8c37cde0fc408
BLAKE2b-256 3680271ba72ad2268a8156411df14e44272b0f322938f7aa1831e40eecba8c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4b0c9f6a56aa94bb98b403e1f57a866f0b43abaa89757b24d4a4b3cd8643ced
MD5 381ad4bd39b4f79f94447c570e8ebbc3
BLAKE2b-256 e5192fcac61b5841873ecba7be67efc03d6b03c201c2738e841791221784dcc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 558673c6c3a2309775683ca96d5f1e4cd99889f71b1ba5cb6be8aa37ae67f9e0
MD5 81256805580f8ddf318d01d3eb6ae403
BLAKE2b-256 e210eb60fb536a5a26a3a5aedb2fff826b32b6c8fd3129ef244f481d2c77e629

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ujson-5.12.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71bdb5d10c6d7e710cfa78e743d9fb79a37c7c66fa916cd287bffbaa520f5abe
MD5 dd67d5135899466aa10c668c2437ae71
BLAKE2b-256 6cf5a73194f217159dc64e17fdb0b2d2a0f881e622fd78178ef4c11f07df227c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page