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 3.9+.

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.11.0.tar.gz (7.2 MB view details)

Uploaded Source

Built Distributions

ujson-5.11.0-pp311-pypy311_pp73-win_amd64.whl (43.8 kB view details)

Uploaded PyPyWindows x86-64

ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (51.6 kB view details)

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

ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (56.6 kB view details)

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

ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (50.3 kB view details)

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

ujson-5.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (48.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ujson-5.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (51.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ujson-5.11.0-cp314-cp314t-win_arm64.whl (40.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

ujson-5.11.0-cp314-cp314t-win_amd64.whl (46.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ujson-5.11.0-cp314-cp314t-win32.whl (41.9 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ujson-5.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (58.0 kB view details)

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

ujson-5.11.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (60.5 kB view details)

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

ujson-5.11.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.5 kB view details)

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

ujson-5.11.0-cp314-cp314t-macosx_11_0_arm64.whl (53.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ujson-5.11.0-cp314-cp314t-macosx_10_13_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

ujson-5.11.0-cp314-cp314-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.14Windows ARM64

ujson-5.11.0-cp314-cp314-win_amd64.whl (45.1 kB view details)

Uploaded CPython 3.14Windows x86-64

ujson-5.11.0-cp314-cp314-win32.whl (41.0 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.11.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.9 kB view details)

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

ujson-5.11.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.6 kB view details)

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

ujson-5.11.0-cp314-cp314-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ujson-5.11.0-cp314-cp314-macosx_10_13_x86_64.whl (55.5 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

ujson-5.11.0-cp313-cp313-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.13Windows ARM64

ujson-5.11.0-cp313-cp313-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.13Windows x86-64

ujson-5.11.0-cp313-cp313-win32.whl (39.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.11.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.8 kB view details)

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

ujson-5.11.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.6 kB view details)

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

ujson-5.11.0-cp313-cp313-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ujson-5.11.0-cp313-cp313-macosx_10_13_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ujson-5.11.0-cp312-cp312-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.12Windows ARM64

ujson-5.11.0-cp312-cp312-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.12Windows x86-64

ujson-5.11.0-cp312-cp312-win32.whl (39.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.11.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.8 kB view details)

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

ujson-5.11.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.6 kB view details)

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

ujson-5.11.0-cp312-cp312-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ujson-5.11.0-cp312-cp312-macosx_10_13_x86_64.whl (55.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ujson-5.11.0-cp311-cp311-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.11Windows ARM64

ujson-5.11.0-cp311-cp311-win_amd64.whl (43.7 kB view details)

Uploaded CPython 3.11Windows x86-64

ujson-5.11.0-cp311-cp311-win32.whl (39.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.3 kB view details)

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

ujson-5.11.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.8 kB view details)

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

ujson-5.11.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.7 kB view details)

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

ujson-5.11.0-cp311-cp311-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ujson-5.11.0-cp311-cp311-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ujson-5.11.0-cp310-cp310-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.10Windows ARM64

ujson-5.11.0-cp310-cp310-win_amd64.whl (43.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ujson-5.11.0-cp310-cp310-win32.whl (39.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.3 kB view details)

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

ujson-5.11.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.8 kB view details)

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

ujson-5.11.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.7 kB view details)

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

ujson-5.11.0-cp310-cp310-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ujson-5.11.0-cp310-cp310-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ujson-5.11.0-cp39-cp39-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.9Windows ARM64

ujson-5.11.0-cp39-cp39-win_amd64.whl (43.8 kB view details)

Uploaded CPython 3.9Windows x86-64

ujson-5.11.0-cp39-cp39-win32.whl (39.7 kB view details)

Uploaded CPython 3.9Windows x86

ujson-5.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ujson-5.11.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

ujson-5.11.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ujson-5.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.11.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.8 kB view details)

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

ujson-5.11.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

ujson-5.11.0-cp39-cp39-macosx_11_0_arm64.whl (53.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ujson-5.11.0-cp39-cp39-macosx_10_9_x86_64.whl (55.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ujson-5.11.0.tar.gz
Algorithm Hash digest
SHA256 e204ae6f909f099ba6b6b942131cee359ddda2b6e4ea39c12eb8b991fe2010e0
MD5 dfe38201fc1cdbb6f9e0bdf135173a6a
BLAKE2b-256 43d93f17e3c5773fb4941c68d9a37a47b1a79c9649d6c56aefbed87cc409d18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0.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.11.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 416389ec19ef5f2013592f791486bef712ebce0cd59299bf9df1ba40bb2f6e04
MD5 a4a97a99b5f770b4382df8fe95fe5b99
BLAKE2b-256 525b8c5e33228f7f83f05719964db59f3f9f276d272dc43752fa3bbf0df53e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4598bf3965fc1a936bd84034312bcbe00ba87880ef1ee33e33c1e88f2c398b49
MD5 9fbd6ba7dcd73dcebba7a32475115e32
BLAKE2b-256 e997bd939bb76943cb0e1d2b692d7e68629f51c711ef60425fa5bb6968037ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 86baf341d90b566d61a394869ce77188cc8668f76d7bb2c311d77a00f4bdf844
MD5 05627a789099e1e6d4d8ebf166b7a129
BLAKE2b-256 74cf209d90506b7d6c5873f82c5a226d7aad1a1da153364e9ebf61eff0740c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b42c115c7c6012506e8168315150d1e3f76e7ba0f4f95616f4ee599a1372bbc
MD5 7e8ed7bc7bc07963c4c6cf5112220986
BLAKE2b-256 947e0519ff7955aba581d1fe1fb1ca0e452471250455d182f686db5ac9e46119

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fac6c0649d6b7c3682a0a6e18d3de6857977378dce8d419f57a0b20e3d775b39
MD5 9acd57a5f462c91cd776c5a4c1a98bec
BLAKE2b-256 c31542b3924258eac2551f8f33fa4e35da20a06a53857ccf3d4deb5e5d7c0b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 abae0fb58cc820092a0e9e8ba0051ac4583958495bfa5262a12f628249e3b362
MD5 a9e867af0973f7b4518381711d236546
BLAKE2b-256 501730275aa2933430d8c0c4ead951cc4fdb922f575a349aa0b48a6f35449e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1194b943e951092db611011cb8dbdb6cf94a3b816ed07906e14d3bc6ce0e90ab
MD5 5f8420bda4ccf4842011e8728acf9900
BLAKE2b-256 5dcaa0413a3874b2dc1708b8796ca895bf363292f9c70b2e8ca482b7dbc0259d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 48055e1061c1bb1f79e75b4ac39e821f3f35a9b82de17fce92c3140149009bec
MD5 a2f2e4d7d11326beb4b98599483f0b78
BLAKE2b-256 aa03b19c6176bdf1dc13ed84b886e99677a52764861b6cc023d5e7b6ebda249d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 aa6d7a5e09217ff93234e050e3e380da62b084e26b9f2e277d2606406a2fc2e5
MD5 c6b3f398ac8061d43f3870f2252fc383
BLAKE2b-256 30ed5a057199fb0a5deabe0957073a1c1c1c02a3e99476cd03daee98ea21fa57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c41afc195fd477a59db3a84d5b83a871bd648ef371cf8c6f43072d89144eef
MD5 9635c514a3332eb2ad5f89c2ed2a7bac
BLAKE2b-256 64ae4bc825860d679a0f208a19af2f39206dfd804ace2403330fdc3170334a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b16930f6a0753cdc7d637b33b4e8f10d5e351e1fb83872ba6375f1e87be39746
MD5 97a04a94572805d81643caf78b258443
BLAKE2b-256 49448e04496acb3d5a1cbee3a54828d9652f67a37523efa3d3b18a347339680a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a0a9b76a89827a592656fe12e000cf4f12da9692f51a841a4a07aa4c7ecc41c
MD5 aa6bb151a6d6306201f21e986a411c84
BLAKE2b-256 c4090945349dd41f25cc8c38d78ace49f14c5052c5bbb7257d2f466fa7bdb533

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10f29e71ecf4ecd93a6610bd8efa8e7b6467454a363c3d6416db65de883eb076
MD5 933e390bf3bd1bf9335510611907ed1a
BLAKE2b-256 2ee5af5491dfda4f8b77e24cf3da68ee0d1552f99a13e5c622f4cef1380925c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a0af6574fc1d9d53f4ff371f58c96673e6d988ed2b5bf666a6143c782fa007e9
MD5 8df762afaea01db7913c3ad2a7a33622
BLAKE2b-256 bdf8fc4b952b8f5fea09ea3397a0bd0ad019e474b204cabcb947cead5d4d1ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a325fd2c3a056cf6c8e023f74a0c478dd282a93141356ae7f16d5309f5ff823
MD5 1ec01d38b5385e45dd1d1c7d039a71a2
BLAKE2b-256 aee9fb4a220ee6939db099f4cfeeae796ecb91e7584ad4d445d4ca7f994a9135

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49e56ef8066f11b80d620985ae36869a3ff7e4b74c3b6129182ec5d1df0255f3
MD5 b7e793a62d679cdc37b286d099d05463
BLAKE2b-256 1bbeae26a6321179ebbb3a2e2685b9007c71bcda41ad7a77bbbe164005e956fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de6e88f62796372fba1de973c11138f197d3e0e1d80bcb2b8aae1e826096d433
MD5 9aeb5605d7505c975e72244587ff9aab
BLAKE2b-256 6ecde9809b064a89fe5c4184649adeb13c1b98652db3f8518980b04227358574

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp314-cp314t-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.11.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e73df8648c9470af2b6a6bf5250d4744ad2cf3d774dcf8c6e31f018bdd04d764
MD5 40da7a92df0b11d5c7491d49629dd2b1
BLAKE2b-256 0af3669437f0280308db4783b12a6d88c00730b394327d8334cc7a32ef218e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 849e65b696f0d242833f1df4182096cedc50d414215d1371fca85c541fbff629
MD5 76013bf18fb7a746fe9101993729da90
BLAKE2b-256 4e56f4fe86b4c9000affd63e9219e59b222dc48b01c534533093e798bf617a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1d663b96eb34c93392e9caae19c099ec4133ba21654b081956613327f0e973ac
MD5 73db942875282ae0db4aefc72ce270e7
BLAKE2b-256 63b6c0e6607e37fa47929920a685a968c6b990a802dec65e9c5181e97845985d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80017e870d882d5517d28995b62e4e518a894f932f1e242cbc802a2fd64d365c
MD5 57d9a9db1dd5ce7c38ae53197c7e752d
BLAKE2b-256 a1ea8870f208c20b43571a5c409ebb2fe9b9dba5f494e9e60f9314ac01ea8f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 090b4d11b380ae25453100b722d0609d5051ffe98f80ec52853ccf8249dfd840
MD5 49874c9bb5127ac480b0e7612e4bf387
BLAKE2b-256 7a3e7b98668cba3bb3735929c31b999b374ebc02c19dfa98dfebaeeb5c8597ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab2cb8351d976e788669c8281465d44d4e94413718af497b4e7342d7b2f78018
MD5 bf0dd2fe7a779c5c7d689a9a493d33cb
BLAKE2b-256 7b71a2b8c19cf4e1efe53cf439cdf7198ac60ae15471d2f1040b490c1f0f831f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f278b31a7c52eb0947b2db55a5133fbc46b6f0ef49972cd1a80843b72e135aba
MD5 cad4a596d1695966867fea9ff48ee58f
BLAKE2b-256 557a4572af5324ad4b2bfdd2321e898a527050290147b4ea337a79a0e4e87ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e750c436fb90edf85585f5c62a35b35082502383840962c6983403d1bd96a02c
MD5 40db5c0c0ee04eac2e5cbd9a2fa39c7f
BLAKE2b-256 edca19b3a632933a09d696f10dc1b0dfa1d692e65ad507d12340116ce4f67967

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c44c703842024d796b4c78542a6fcd5c3cb948b9fc2a73ee65b9c86a22ee3638
MD5 29a07156bcae6a4ffa2cb9452ea4e3e2
BLAKE2b-256 9bf825583c70f83788edbe3ca62ce6c1b79eff465d78dec5eb2b2b56b3e98b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29113c003ca33ab71b1b480bde952fbab2a0b6b03a4ee4c3d71687cdcbd1a29d
MD5 518fe8e729081dd81fd9b745bb7f063e
BLAKE2b-256 29372107b9a62168867a692654d8766b81bd2fd1e1ba13e2ec90555861e02b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65724738c73645db88f70ba1f2e6fb678f913281804d5da2fd02c8c5839af302
MD5 26cc63d554f53098c621daac01a48e68
BLAKE2b-256 28084518146f4984d112764b1dfa6fb7bad691c44a401adadaa5e23ccd930053

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp314-cp314-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.11.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ce076f2df2e1aa62b685086fbad67f2b1d3048369664b4cdccc50707325401f9
MD5 c7e2fe755273fe44deda3d1620b8f3dc
BLAKE2b-256 a98c6d85ef5be82c6d66adced3ec5ef23353ed710a11f70b0b6a836878396334

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34032aeca4510a7c7102bd5933f59a37f63891f30a0706fb46487ab6f0edf8f0
MD5 ac67937aded4025001d6147620476a24
BLAKE2b-256 5bd81baee0f4179a4d0f5ce086832147b6cc9b7731c24ca08e14a3fdb8d39c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8fa2af7c1459204b7a42e98263b069bd535ea0cd978b4d6982f35af5a04a4241
MD5 b684d96423eb39dd8b6f947e97a217d7
BLAKE2b-256 d8508856e24bec5e2fc7f775d867aeb7a3f137359356200ac44658f1f2c834b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3772e4fe6b0c1e025ba3c50841a0ca4786825a4894c8411bf8d3afe3a8061328
MD5 1b65f3fb7123b2784611dcfbecabf520
BLAKE2b-256 8d2078abe3d808cf3bb3e76f71fca46cd208317bf461c905d79f0d26b9df20f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dd703c3e86dc6f7044c5ac0b3ae079ed96bf297974598116aa5fb7f655c3a60
MD5 ffe702b38d9d833dcea4736f859b9461
BLAKE2b-256 845c96e2266be50f21e9b27acaee8ca8f23ea0b85cb998c33d4f53147687839b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 787aff4a84da301b7f3bac09bc696e2e5670df829c6f8ecf39916b4e7e24e701
MD5 ec0d26fdcf695776f32a44a8a010b702
BLAKE2b-256 90a682cfa70448831b1a9e73f882225980b5c689bf539ec6400b31656a60ea46

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 837da4d27fed5fdc1b630bd18f519744b23a0b5ada1bbde1a36ba463f2900c03
MD5 cac69efcaad8e6a26085c14f0cbf0029
BLAKE2b-256 fea3292551f936d3d02d9af148f53e1bc04306b00a7cf1fcbb86fa0d1c887242

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4c9f5d6a27d035dd90a146f7761c2272cf7103de5127c9ab9c4cd39ea61e878a
MD5 9a9902376329292569dc39068b5f58ed
BLAKE2b-256 2bd6c7b2444238f5b2e2d0e3dab300b9ddc3606e4b1f0e4bed5a48157cebc792

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78c684fb21255b9b90320ba7e199780f653e03f6c2528663768965f4126a5b50
MD5 f9457a6c3c1c5a6d7b872368bf42822d
BLAKE2b-256 e9c5c161940967184de96f5cbbbcce45b562a4bf851d60f4c677704b1770136d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a31c6b8004438e8c20fc55ac1c0e07dad42941db24176fe9acf2815971f8e752
MD5 b99a831233acc182e95956883196c4d9
BLAKE2b-256 5ba4f611f816eac3a581d8a4372f6967c3ed41eddbae4008d1d77f223f1a4e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 109f59885041b14ee9569bf0bb3f98579c3fa0652317b355669939e5fc5ede53
MD5 4ea0729fa9eaf3b7ca7796e7cf6acd1d
BLAKE2b-256 1cec2de9dd371d52c377abc05d2b725645326c4562fc87296a8907c7bcdf2db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6cd2df62f24c506a0ba322d5e4fe4466d47a9467b57e881ee15a31f7ecf68ff6
MD5 e48749c08af30016884a652619af2abe
BLAKE2b-256 222d37b6557c97c3409c202c838aa9c960ca3896843b4295c4b7bb2bbd260664

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7b136cc6abc7619124fd897ef75f8e63105298b5ca9bdf43ebd0e1fa0ee105f
MD5 44039f52f3845b0893b900b515fdf5ad
BLAKE2b-256 441b27c05dc8c9728f44875d74b5bfa948ce91f6c33349232619279f35c6e817

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 be6b0eaf92cae8cdee4d4c9e074bde43ef1c590ed5ba037ea26c9632fb479c88
MD5 e4b7b6c919375e32f20efe70eb64a151
BLAKE2b-256 7e81546042f0b23c9040d61d46ea5ca76f0cc5e0d399180ddfb2ae976ebff5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e3cff632c1d78023b15f7e3a81c3745cd3f94c044d1e8fa8efbd6b161997bbc
MD5 98fd8783aaf46084077571b95dbd51d8
BLAKE2b-256 8047226e540aa38878ce1194454385701d82df538ccb5ff8db2cf1641dde849a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a638425d3c6eed0318df663df44480f4a40dc87cc7c6da44d221418312f6413b
MD5 9afd0b352f6331d5d3b830da4b46615b
BLAKE2b-256 a3bbd4220bd7532eac6288d8115db51710fa2d7d271250797b0bfba9f1e755af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1aa8a2ab482f09f6c10fba37112af5f957689a79ea598399c85009f2f29898b5
MD5 dac1d33c00258df23cd17c2aa15d72ea
BLAKE2b-256 d171fea2ca18986a366c750767b694430d5ded6b20b6985fddca72f74af38a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8254e858437c00f17cb72e7a644fc42dad0ebb21ea981b71df6e84b1072aaa7c
MD5 36e54e3b908925fe8b4d8fc150a6cc03
BLAKE2b-256 177b2dcbc2bbfdbf68f2368fb21ab0f6735e872290bb604c75f6e06b81edcb3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fa79fdb47701942c2132a9dd2297a1a85941d966d8c87bfd9e29b0cf423f26cc
MD5 e9d2d90e2d61c0606b5027acfb97f6f5
BLAKE2b-256 55b9405103cae24899df688a3431c776e00528bd4799e7d68820e7ebcf824f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0180a480a7d099082501cad1fe85252e4d4bf926b40960fb3d9e87a3a6fbbc80
MD5 3ad78ad503ec34f1844b98da2fa3936d
BLAKE2b-256 033cfd11a224f73fbffa299fb9644e425f38b38b30231f7923a088dd513aabb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12b5e7e22a1fe01058000d1b317d3b65cc3daf61bd2ea7a2b76721fe160fa74d
MD5 06f0be6d264a8d7e28c6608324d7591a
BLAKE2b-256 b105dba51a00eb30bd947791b173766cbed3492269c150a7771d2750000c965f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7895f0d2d53bd6aea11743bd56e3cb82d729980636cd0ed9b89418bf66591702
MD5 3976c179da7cca43b647bd0b4567a2bf
BLAKE2b-256 b9efa9cb1fce38f699123ff012161599fb9f2ff3f8d482b4b18c43a2dc35073f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7855ccea3f8dad5e66d8445d754fc1cf80265a4272b5f8059ebc7ec29b8d0835
MD5 76b1f157825aa8935ee495b59466b939
BLAKE2b-256 9accf3f9ac0f24f00a623a48d97dc3814df5c2dc368cfb00031aa4141527a24b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 683f57f0dd3acdd7d9aff1de0528d603aafcb0e6d126e3dc7ce8b020a28f5d01
MD5 c30f4a60724c504514fa75124a1424b2
BLAKE2b-256 57f7da05b4a8819f1360be9e71fb20182f0bb3ec611a36c3f213f4d20709e099

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e979fbc469a7f77f04ec2f4e853ba00c441bf2b06720aa259f0f720561335e34
MD5 700d8edab488eb9a694dde7d4d668a1f
BLAKE2b-256 fed39ba310e07969bc9906eb7548731e33a0f448b122ad9705fed699c9b29345

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4843f3ab4fe1cc596bb7e02228ef4c25d35b4bb0809d6a260852a4bfcab37ba3
MD5 79575478922ee10d45c21928a55c955c
BLAKE2b-256 15f5ca454f2f6a2c840394b6f162fff2801450803f4ff56c7af8ce37640b8a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa6b3d4f1c0d3f82930f4cbd7fe46d905a4a9205a7c13279789c1263faf06dba
MD5 9f8ce6c5081cd637762d44e96499090c
BLAKE2b-256 8b7a2c20dc97ad70cd7c31ad0596ba8e2cf8794d77191ba4d1e0bded69865477

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da473b23e3a54448b008d33f742bcd6d5fb2a897e42d1fc6e7bf306ea5d18b1b
MD5 597256f93dfc992488f7495da02e668e
BLAKE2b-256 ecce48877c6eb4afddfd6bd1db6be34456538c07ca2d6ed233d3f6c6efc2efe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e0ec1646db172beb8d3df4c32a9d78015e671d2000af548252769e33079d9a6
MD5 35b8ed026131049fb5911145d9d492fb
BLAKE2b-256 5d7c48706f7c1e917ecb97ddcfb7b1d756040b86ed38290e28579d63bd3fcc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 94fcae844f1e302f6f8095c5d1c45a2f0bfb928cccf9f1b99e3ace634b980a2a
MD5 9bc1dc29ea1e587653cc9b892bc72134
BLAKE2b-256 7bc7fb84f27cd80a2c7e2d3c6012367aecade0da936790429801803fa8d4bffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 952c0be400229940248c0f5356514123d428cba1946af6fa2bbd7503395fef26
MD5 698ae40879a7cfe85e15c0daa71d63b2
BLAKE2b-256 41b8ab67ec8c01b8a3721fd13e5cb9d85ab2a6066a3a5e9148d661a6870d6293

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8951bb7a505ab2a700e26f691bdfacf395bc7e3111e3416d325b513eea03a58
MD5 8f683281a07b456c67c8e187069a8a3d
BLAKE2b-256 57dfb53e747562c89515e18156513cc7c8ced2e5e3fd6c654acaa8752ffd7cd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7c46cb0fe5e7056b9acb748a4c35aa1b428025853032540bb7e41f46767321f
MD5 e18dc10956b26d10ce65126519aa9a2c
BLAKE2b-256 daea80346b826349d60ca4d612a47cdf3533694e49b45e9d1c07071bb867a184

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 85e6796631165f719084a9af00c79195d3ebf108151452fefdcb1c8bb50f0105
MD5 ae7382575f0a310ebdef9aca173c7bff
BLAKE2b-256 1c5fb19104afa455630b43efcad3a24495b9c635d92aa8f2da4f30e375deb1a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3d2720e9785f84312b8e2cb0c2b87f1a0b1c53aaab3b2af3ab817d54409012e0
MD5 e5984ac66da0550046b14477dd19f784
BLAKE2b-256 86a270b73a0f55abe0e6b8046d365d74230c20c5691373e6902a599b2dc79ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for ujson-5.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 30f607c70091483550fbd669a0b37471e5165b317d6c16e75dba2aa967608723
MD5 a62f3aefa748afaa2bb9a3a780b11246
BLAKE2b-256 abf1697559d45acc849cada6b3571d53522951b1a64027400507aabc6a710178

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eff24e1abd79e0ec6d7eae651dd675ddbc41f9e43e29ef81e16b421da896915
MD5 167ddc9a5cfe009991fc584d77e18fb0
BLAKE2b-256 5d7ed77f9e9c039d58299c350c978e086a804d1fceae4fd4a1cc6e8d0133f838

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4df61a6df0a4a8eb5b9b1ffd673429811f50b235539dac586bb7e9e91994138
MD5 e21212be876360d504f23985123b33d6
BLAKE2b-256 64a280072439065d493e3a4b1fbeec991724419a1b4c232e2d1147d257cac193

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181fb5b15703a8b9370b25345d2a1fd1359f0f18776b3643d24e13ed9c036d4c
MD5 7504896cfbcf7b5a787026b63df03bd7
BLAKE2b-256 39eb20dd1282bc85dede2f1c62c45b4040bc4c389c80a05983515ab99771bca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d06e87eded62ff0e5f5178c916337d2262fdbc03b31688142a3433eabb6511db
MD5 f615a2c5ff1d1c8a5f56ef709c0bcada
BLAKE2b-256 b3cc46b124c2697ca2da7c65c4931ed3cb670646978157aa57a7a60f741c530f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 185f93ebccffebc8baf8302c869fac70dd5dd78694f3b875d03a31b03b062cdb
MD5 6e5fa14956ca283b138275d5244b9527
BLAKE2b-256 94ae4e0d91b8f6db7c9b76423b3649612189506d5a06ddd3b6334b6d37f77a01

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3134b783ab314d2298d58cda7e47e7a0f7f71fc6ade6ac86d5dbeaf4b9770fa6
MD5 123fa99e4667dc57fe4acd67c82cd50a
BLAKE2b-256 211ba4e7a41870797633423ea79618526747353fd7be9191f3acfbdee0bf264b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16ccb973b7ada0455201808ff11d48fe9c3f034a6ab5bd93b944443c88299f89
MD5 bb6a851af40a79ad3459ab8e1d92aab9
BLAKE2b-256 7b2eeeab0b8b641817031ede4f790db4c4942df44a12f44d72b3954f39c6a115

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.11.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 446e8c11c06048611c9d29ef1237065de0af07cabdd97e6b5b527b957692ec25
MD5 dd4a9bf845e7360b4145b19d8dc0eca5
BLAKE2b-256 860c8bf7a4fabfd01c7eed92d9b290930ce6d14910dec708e73538baa38885d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-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.

File details

Details for the file ujson-5.11.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: ujson-5.11.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ujson-5.11.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5600202a731af24a25e2d7b6eb3f648e4ecd4bb67c4d5cf12f8fab31677469c9
MD5 2f49fbc6a8e8d1b10ff314ca37023b37
BLAKE2b-256 48b12d50987a7b7cccb5c1fbe9ae7b184211106237b32c7039118c41d79632ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ujson-5.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ujson-5.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c6618f480f7c9ded05e78a1938873fde68baf96cdd74e6d23c7e0a8441175c4b
MD5 e87935db0f3d11911cc93c1cd339b574
BLAKE2b-256 ca89f4de0a3c485d0163f85f552886251876645fb62cbbe24fcdc0874b9fae03

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: ujson-5.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ujson-5.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 674f306e3e6089f92b126eb2fe41bcb65e42a15432c143365c729fdb50518547
MD5 2362ef72a978749576b0005529ab63e7
BLAKE2b-256 419e3142023c30008e2b24d7368a389b26d28d62fcd3f596d3d898a72dd09173

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9aacbeb23fdbc4b256a7d12e0beb9063a1ba5d9e0dbb2cfe16357c98b4334596
MD5 7b4fdf85040b23e62e2aedf1d42c3160
BLAKE2b-256 9220005b93f2cf846ae50b46812fcf24bbdd127521197e5f1e1a82e3b3e730a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: ujson-5.11.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ujson-5.11.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecd6ff8a3b5a90c292c2396c2d63c687fd0ecdf17de390d852524393cd9ed052
MD5 7abdfe25dfcaf51d971632b30e2555d3
BLAKE2b-256 b6aefe1b4ff6388f681f6710e9494656957725b1e73ae50421ec04567df9fb75

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f1a27ab91083b4770e160d17f61b407f587548f2c2b5fbf19f94794c495594a
MD5 380b6dcc4efc25e54e7b63db664e5f42
BLAKE2b-256 ef39120bb76441bf835f3c3f42db9c206f31ba875711637a52a8209949ab04b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f62b9976fabbcde3ab6e413f4ec2ff017749819a0786d84d7510171109f2d53c
MD5 6857a3c8060807fad8fb2543710e44fd
BLAKE2b-256 c717bcc85d282ee2f4cdef5f577e0a43533eedcae29cc6405edf8c62a7a50368

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6b6ec7e7321d7fc19abdda3ad809baef935f49673951a8bab486aea975007e02
MD5 7fa5500cad283778d5b7d8a962395009
BLAKE2b-256 9f36910117b7a8a1c188396f6194ca7bc8fd75e376d8f7e3cf5eb6219fc8b09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0654a2691fc252c3c525e3d034bb27b8a7546c9d3eb33cd29ce6c9feda361a6a
MD5 b5ba9682607cba095f347cdd31b10569
BLAKE2b-256 756ce64e19a01d59c8187d01ffc752ee3792a09f5edaaac2a0402de004459dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99c49400572cd77050894e16864a335225191fd72a818ea6423ae1a06467beac
MD5 6a7072ce6c476db65036ed0996c564a3
BLAKE2b-256 8dc1a52d55638c0c644b8a63059f95ad5ffcb4ad8f60d8bc3e8680f78e77cc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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.11.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65f3c279f4ed4bf9131b11972040200c66ae040368abdbb21596bf1564899694
MD5 e4cff9abf08b2f99350853d43cadfff7
BLAKE2b-256 39bfc6f59cdf74ce70bd937b97c31c42fd04a5ed1a9222d0197e77e4bd899841

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.11.0-cp39-cp39-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page