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.

Multi-threading/Free-threading support

UltraJSON has no global state so using ujson functions between threads is organically thread safe and will produce consistent results with or without Python's global interpreter lock. What is is not supported nor safe is mutating an object in one thread whilst it's simultaneously being serialised by ujson in another. In such usage, all bugs are features.

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.13.0.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.13.0-pp311-pypy311_pp73-win_amd64.whl (41.2 kB view details)

Uploaded PyPyWindows x86-64

ujson-5.13.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.5 kB view details)

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

ujson-5.13.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (51.1 kB view details)

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

ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (49.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (48.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ujson-5.13.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (55.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (50.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ujson-5.13.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (52.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ujson-5.13.0-graalpy312-graalpy250_312_native-win_amd64.whl (41.8 kB view details)

Uploaded Windows x86-64graalpy312

ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.1 kB view details)

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

ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (54.9 kB view details)

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

ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (56.1 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (54.4 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

ujson-5.13.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (58.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

ujson-5.13.0-cp314-cp314t-win_arm64.whl (40.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

ujson-5.13.0-cp314-cp314t-win_amd64.whl (42.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

ujson-5.13.0-cp314-cp314t-win32.whl (41.8 kB view details)

Uploaded CPython 3.14tWindows x86

ujson-5.13.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.13.0-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ujson-5.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (58.7 kB view details)

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

ujson-5.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (59.1 kB view details)

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

ujson-5.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (54.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp314-cp314t-macosx_11_0_arm64.whl (55.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ujson-5.13.0-cp314-cp314t-macosx_10_15_x86_64.whl (57.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ujson-5.13.0-cp314-cp314-win_arm64.whl (40.2 kB view details)

Uploaded CPython 3.14Windows ARM64

ujson-5.13.0-cp314-cp314-win_amd64.whl (42.3 kB view details)

Uploaded CPython 3.14Windows x86-64

ujson-5.13.0-cp314-cp314-win32.whl (41.2 kB view details)

Uploaded CPython 3.14Windows x86

ujson-5.13.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.13.0-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ujson-5.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

ujson-5.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

ujson-5.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp314-cp314-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ujson-5.13.0-cp314-cp314-macosx_10_15_x86_64.whl (56.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ujson-5.13.0-cp313-cp313-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.13Windows ARM64

ujson-5.13.0-cp313-cp313-win_amd64.whl (41.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ujson-5.13.0-cp313-cp313-win32.whl (40.1 kB view details)

Uploaded CPython 3.13Windows x86

ujson-5.13.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.13.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ujson-5.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

ujson-5.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

ujson-5.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp313-cp313-macosx_11_0_arm64.whl (54.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ujson-5.13.0-cp313-cp313-macosx_10_13_x86_64.whl (56.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ujson-5.13.0-cp312-cp312-win_arm64.whl (38.9 kB view details)

Uploaded CPython 3.12Windows ARM64

ujson-5.13.0-cp312-cp312-win_amd64.whl (41.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ujson-5.13.0-cp312-cp312-win32.whl (40.1 kB view details)

Uploaded CPython 3.12Windows x86

ujson-5.13.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.13.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ujson-5.13.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

ujson-5.13.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

ujson-5.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp312-cp312-macosx_11_0_arm64.whl (54.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ujson-5.13.0-cp312-cp312-macosx_10_13_x86_64.whl (56.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ujson-5.13.0-cp311-cp311-win_arm64.whl (39.0 kB view details)

Uploaded CPython 3.11Windows ARM64

ujson-5.13.0-cp311-cp311-win_amd64.whl (40.9 kB view details)

Uploaded CPython 3.11Windows x86-64

ujson-5.13.0-cp311-cp311-win32.whl (40.0 kB view details)

Uploaded CPython 3.11Windows x86

ujson-5.13.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.13.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ujson-5.13.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

ujson-5.13.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

ujson-5.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp311-cp311-macosx_11_0_arm64.whl (54.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ujson-5.13.0-cp311-cp311-macosx_10_9_x86_64.whl (56.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ujson-5.13.0-cp310-cp310-win_arm64.whl (39.0 kB view details)

Uploaded CPython 3.10Windows ARM64

ujson-5.13.0-cp310-cp310-win_amd64.whl (40.9 kB view details)

Uploaded CPython 3.10Windows x86-64

ujson-5.13.0-cp310-cp310-win32.whl (40.0 kB view details)

Uploaded CPython 3.10Windows x86

ujson-5.13.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.13.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ujson-5.13.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

ujson-5.13.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

ujson-5.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ujson-5.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ujson-5.13.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (60.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ujson-5.13.0-cp310-cp310-macosx_11_0_arm64.whl (54.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ujson-5.13.0-cp310-cp310-macosx_10_9_x86_64.whl (56.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ujson-5.13.0.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.13.0.tar.gz
Algorithm Hash digest
SHA256 d62e3d7625384c08082abad81a077af587fdef2761bb14c3822f4234b8d07d75
MD5 91760898a81e82a71e4c71f9d070f8d4
BLAKE2b-256 897ac8bb37c8f6f3623d60c33d15d18cd6d6655d0f9c3eb31a9969f76361b199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43dee3081b00fe447c5b9e2fe7ebfd57f7bcc5dd25b8a439c26c8c174dd581be
MD5 2cbc287314b1dfdb4a735ee9792c40ac
BLAKE2b-256 12cc91ff81c50b85a158878f06d6e9153227bbc04209db291a152c286a0ee4a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfaa8302eb9bb7f5e231f256caf83040760585e32751d19155c0f0c0225f8de1
MD5 791553601bebc56d6502eb5c5de1218d
BLAKE2b-256 e82d39da479a8461d1d78d533940a8426a84e23708a6a7a426f2178e04443252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b266f182d4bce74a6a9e1f86988485e8cd422efdcc7c3f537e00cc956f52678
MD5 b9a72d63fed47d58a95b68716e83284a
BLAKE2b-256 afb40bd6449ae35b6026d94f4d1a32dbc9f40c969ed1d6e36a7e26ccf56371be

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3f6d55c68985654a84a9b47ac51f2655adac4fd264e4189f832960c2270dcf70
MD5 364131620930ccf1a392a7a0dd4b984e
BLAKE2b-256 6cd67ea7a32f35457560806375193dbc4f0d8ffd8c8adae42f86686392a76c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_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.13.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c8bbb1f5ab810954fb307b6c5e68af58210c31da8569f9e6498a3958c1859e72
MD5 16db52e7996c141cd710ff91abfe079b
BLAKE2b-256 61a6825d92bce42cd442b57d89b4c20afc1737246321d3433c6194e5c35c6a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_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.13.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e1842e10adc8f0db0d3e8aa3a1f8b05ce0456b39e180c8553d7f36dd0bf24b6b
MD5 ce4ac071e38e5445406cb24e6c5996b1
BLAKE2b-256 7815399766e8ba002bd8e5e2e45828e0e12a5dbeb4145d6a604ba3787db5eec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7892ea6dd85ede6d30fbbd22af1239b9d81dabdf9b7a8f10ca6d4464d4d9b8ab
MD5 dc444a3b51c7e645e0a3e7cc449d48ba
BLAKE2b-256 fc5099b05555ef42a2ab2e26aa369c46bde6a64f8aeeb687628102e98cc78bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 96e7e019b097b4b25fccddadb369d13f412c13695fcf0680b6bf906376156151
MD5 6091887aa54e43e865d5db1b17a852c4
BLAKE2b-256 c77f276f830bef4d530d50ff4d8f8c568002e7ebed9f64c06747b1d1c4325f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9bd0f2dd05937c3b089af316884de18c6f6182ddb8ffce597d2e7c7a9ba9f447
MD5 1d485806f49f497419ca6485461538e6
BLAKE2b-256 81b5689613037fe691d18eae075cd141089f3a3156146be14512df92d8a9ae8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-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.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c16e07581172f08585b409246f4535dab13ee85af0e3d3cfa8684b653ca44fa8
MD5 f59dabb315ae14752f14665d5fce653a
BLAKE2b-256 4a48d0e3e511039b86fd1ecfe2bf761c800552d273ef8f19e71de93bf38a909e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-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.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2862f81af44b3a7e74c5d80caa118d736be1991ce6f1d5c723716fa403060cc6
MD5 8133e3d53edf2f70d4e3c5b56ec1e650
BLAKE2b-256 76ec8e3802fc4a4e31e817b972bbb0e704a484d8c75ec349b3feb45fa9fb54c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-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.13.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fb296a0aa480ab88d895ddaa90372604c08ccc72323f02590612c775426ab413
MD5 84e29963aef0f31f7936faf07fa7e4cd
BLAKE2b-256 f29d2bb91e1e25a8584cb3b63544b9bd26f621173535c77ac6cae13bad8e7904

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_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.13.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8bb53ef95d35875262b8d0aa28506ca612ddd07058bee2a90f609938e69dc801
MD5 536868fb10a366e2eaf1c09a141bbe03
BLAKE2b-256 7148592c70af94a67cafacd9c840ae2980f27d511dde2732a4c0dfac8f176ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_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.13.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e074a1f7778d58aa3b3056bab7b6251aabb3f381808018ca2b7fb8dbdeef7ab
MD5 d01f0a0656c06fdbd78348e7e3ed960d
BLAKE2b-256 3070dbdd277d64bd3a149532567ceb082fe26f4ead58c39e0a97566ccbdf14a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-graalpy312-graalpy250_312_native-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.13.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 40.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.13.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 aefd3c9c95f9b62348956396ff7b31818476f8f54dc4a4e64cbd4f0491db6fca
MD5 b3fc27330fb370200094123057a4cc8c
BLAKE2b-256 3d5ffcc6c6a9d711fd8b020ca8ff65148212f0a712c809d173cd949e58de68c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 42.8 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.13.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5c31317d5e4504dae8f98795358b6082fc0ef96e7394806db0a76a4a8717f446
MD5 87696ef1f6b1f806bcccfd301a6db6fd
BLAKE2b-256 bd66a6e669e90083febdf6c0600d3807f6017fd4d3962d5bd6ddc605c73a06e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 41.8 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.13.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 74f3dd61aeb01b7b2a6754e400224e819279041b3867935a55ccf57fb86a43b2
MD5 332c4ead5d713a0aa132c81a70a33d19
BLAKE2b-256 c467cdaa50bba29d7dc9eb19212755b09bb96f56596e75957c3717c6b85454de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 751ad01042472f1c7c02f5c597c7aee79834e82a6cc384ca302173bbc8e8deb8
MD5 920e0357b55d7c945746fd40c071581c
BLAKE2b-256 f3bc2f073bb708f9d128f5d1cb39063a5f6421b1ce94c61be8661c55a189f407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bdf2518971586f2b413156c49d9dd8b56cc990a8647081e1bd00af60564d469
MD5 24e885b9e0a1f6218d1de85bc24a22f0
BLAKE2b-256 7e93fab1d786174c8780eb3e386c73f1925a435e97fbf77c957fea4fca83994d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38afcf994b28ed85ea2420e2a8d79a37d0a77348b3daf53850c16edda66f942d
MD5 5d3f95c3b8686289bb3a394b1961be43
BLAKE2b-256 e18eb44a6afb77b94118655c029081b7932d64bb4c5b1c8ba2b7f5808b5d0bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82e1393e6dbe3c95fdfc95c6c528890e191351a1f024ef51126cf1f22543af52
MD5 d57588fe6407129d8de4b5bbb837ba3a
BLAKE2b-256 4843ad41e8752d5ec3a590a5e7b426a54e36b7aab911d9b5a4f7384dc62507ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7f19b81b73ff28f5c5022ee794f94122bfcda07a76423078e349465d71223a1
MD5 a1f8f9a214b05ed0dced266a288be0d0
BLAKE2b-256 228edd12b735aaba0806c3d70c18184d50e1f9712e0757c7c0a4f376450cfe28

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 02200035bc80e830f076ffc1b329a94c295aee6d9de8c9043647cb9a7bd4f76f
MD5 7b3b594c3ca08663f407fa09d1dc89e4
BLAKE2b-256 5fc0d8608c3f4d3f05e6441364b63fde1d279700135c1a6577a773662c07fbcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6e343c5f0c058523f1edbf6ae4eceb4e0d934205a53bbdd8d9a945c83324662a
MD5 c24e671393f391d82d4f79570f77399e
BLAKE2b-256 e6d4dddc4646d2633c85c938c2ded7d5a9711cdad5be1e13b31b7dad76f61c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 15107aaa4f559d55201165ec32abb35c283a861be1fa67229578cb7d93fcd93a
MD5 84cff54efe72cf8f29d5f8da91edc827
BLAKE2b-256 0266f53d3b32c3f177f846ca6b624e832f29000d8a213a2d8768e254bd470ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b644d50f66de5490c1823c7176618cead5e8e8a88cba9f40a6308ca52e79267
MD5 1929ca0907096f08f755aa4b765effcb
BLAKE2b-256 99e439862f0f7174ff07cfd1e2d0c9065ded34aeebdb7db8daf2f0e5bf89b46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69b4e36bb7d5f413ba8c00c8006b2ec627cc5ace97301462f6aadb66ec9d2979
MD5 b3c5231f8898a90db6a21dbbe3d9841b
BLAKE2b-256 12e91c543837c6a3c6672361882a0fa269bd02daf9cc4c0ca88a9dccd9df98d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 40.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.13.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dc470179775468f9a007d3a6a2734624248c94bf47c6645e808c7e50a5070d1a
MD5 c78a7f6af4628dec20f172ce4b7a21b4
BLAKE2b-256 b0293e9a8fba321c031315f6d263510969a5d01f41fc471b5be107e413c1b2f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 42.3 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.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d5e206e9f849ead27e51ef8da44e52b38da7c6dbd929a7340ab44533edcda8d7
MD5 1948f205124246259606e7ee1ccbd78c
BLAKE2b-256 23f37f2bd9ca0c507142d0c22347b3d6f8803be1d8851c31707e57f5923fdbea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 41.2 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.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 576f35c35b918d67d41b933878062ec0a5c9f4d1e9e14e04aeef35384963feae
MD5 987a833eb3d64482c543bb54ce1bfd74
BLAKE2b-256 dd5f242fd97a2628b842d4bfaa9b18e1f68187f934d67503291ebbaab1254637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 144e9d8a454cfa727e0f755e1863738ed68068583bda5463052cb446835bd56c
MD5 b0c4c602c4d1931c7b262aa53465d33d
BLAKE2b-256 3c3c9eb916377050b0785f048a34588c1c390ddd41ae00b78db68ee1ad022356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6eee5d7cce3f32a468905f9ff61807a60287a90258d849460f6fa826e810870d
MD5 0dec4c24e07643d462890eee623f7548
BLAKE2b-256 2cbdd286947525ea7ce3f2d8dc55c15b9ffbe425bc455c96af7b8f8a402599a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7576bdbef327c3528f011002a2d74486f6fe4e33289bdb7a042b7f1a6e9d8285
MD5 dd19a9b678449905b4e5b6d11ed2f5b9
BLAKE2b-256 f10cc33655218b8e0a8adbf066de0b999cae5c324061f3eaa4dda17423145d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7df805aad707507a1fa165fb716218ca3a89f142125dc4b23c9fcc08fa402d97
MD5 ea5555232b8cc7b5ed6b12b9172baa15
BLAKE2b-256 2933a948f329252ece3f9c93d177243de6e677927ebc6ac44256742dbbef3c39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a4b92344b16e414aeb609e57f62c466500e53c94f1698f5b149dc0b7223ec3e
MD5 2448f5d7779f0bd298541c0215b04fc5
BLAKE2b-256 babeec91029aec067174473d022fa0f6c3c1431a173f888d7599739f05c668eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b98bf2faa5e37ecfe752226ea08290031e375a0c43d425a0b955fb3e702a2a71
MD5 f7f152195b66f89b279620e535c4c4f3
BLAKE2b-256 6eb30ac9a03551467784067f505df1bb875c639ba32f1da79ce467ab15911ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ea939ff629ab03ae970d03eca6d1febd8ed55ba38ca44aec64ce997537cd3fa0
MD5 c3cf1c6a212436ada2fdcc1277b5a34a
BLAKE2b-256 26b608c6cf5548bd6f4bb557c9fa7e8edf87324bb04c17249d1966028d61dde0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a554b2e5bee85030369514cef8b0b913cebe1a4c2c0c13541966d50bcba22b1a
MD5 000d23f8ae5e48d27cd45deac3c50c3e
BLAKE2b-256 ea6355e5f23e156b4c8bca095d828b4cd3180c0b42aa3501ef88836d79606fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca7ef2fa6c408a7c0f558e4d33d93b32ddc35ed6d3cfc505747931a64b7465d5
MD5 42573ebc59f471365d921b5da44f120f
BLAKE2b-256 5355477183aeddfdf0f88ae039ffee0ed866cfb993da0c0c9aa915807554aef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc9dfd41fed397ab03bb9d9fe1cbd83301211c772a17536033ce7d68877ac82b
MD5 9d446d2e0ed531cccbb8b0dfb989357f
BLAKE2b-256 1c9ab5139d696f5328f3cab70b9ec046f15e3f49497a4de6280974640602f539

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 38.9 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.13.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b49516fbe803ff30d6caa9ccc3799ec7f968992747ce3099eae4758928577b53
MD5 f202a510a06f1302cddfe95f64a82cc1
BLAKE2b-256 505eaceadce24fdb7cbc67f02286b1d4e91a575aaef5afb876c9908d6e6e5769

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.1 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.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17a59d5cf23ef98f7c9314524976b4b288374d83200add01d953024fb06404f9
MD5 8031d8b2593013a7fd1dae923e066c4b
BLAKE2b-256 b4b51fe203bc294e98fdd65606883692ad8dc0aaac73838b89c99c3513404424

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 40.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.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b63d3820f978bc8e98cc3f1fe26a33b0d2ea237733a23fe5e9cb5d51f466bd97
MD5 6aff7c07fe7034cab656f219c3481f37
BLAKE2b-256 fa0a8e583cce90f9f91ca1bedb3e628b6f5642aed91feb29b197431268d4c4be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6eca7751d61045a9b1e7f9a8c97ac24b164f085b60bef1c4668654bb2338011
MD5 325583503d5a49619b903450feafd528
BLAKE2b-256 5023b473d101412c68527cb502a8728f96ab307aa7bfa75d6ea2037e2c7f74e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf3c2c4ea55d4187903fcdc689a9bf5b0fc72d8c0eaff39db18c1f337c8832c1
MD5 630c43ecdefaef197f2407d297ffb054
BLAKE2b-256 545adc6afe071d6b977390d2dc41e15800a2716f317988dd03187cffe7b4d624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fd41b86444df14f8b4b7afaaa9f27bacfbf8c18380872317aeab6cd125dcede
MD5 b88b8350642d0b742a4ab01fb910799a
BLAKE2b-256 a98c51513357a5c75bf3e5bae46accfdb3e6e6f5caeb72ca8b253ec45ba853fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 496e662a6b46d5f936d77fb68259cece19213bb2301ddd520dbd75ac7c90c5f4
MD5 7491dfb99932f55c846057160fb2f934
BLAKE2b-256 6634b64278f67e19052f09810576c7e50b3da8d4f5218b226046324d4d5c24b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c00323c13a35822c9a67a26c0b2a0787510bf1ef490922b58009b362d1a3e21
MD5 5f3cf1333f1852e60da34f31336e6108
BLAKE2b-256 bc3d7e49a70265a1e5ed1b5e8edd5f54d57ae41e2134faeae9b16f6f5a0eae20

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ffc61fc756a64f4d169a78cc638d769e3c324f45fc51997626abf4e5e5dd6460
MD5 b48b176b55a7f3907b052af024b8bed9
BLAKE2b-256 0902f9dbf6c3e46d700eb1d9ed637567221a06eeb1ec289633be992ef54d7a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4cabd73c114ce93c21d7db2e2d8e16217fd8a5b2b3ec754629eebef5c262d47f
MD5 9efc78b1221a5d3140736416da31a92f
BLAKE2b-256 9c11876dff43f05417a01c6119f0fa10e01f1226631c5927ef08f56876b2bb67

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cdf33b588a81b05d0b585c66f83050c49cb670623424d10e4d1ad37ba2f7eed9
MD5 da7fe82351930ffcae34b992f37c4596
BLAKE2b-256 10e64e9e998d991ff88bbc93b21daa63bba2baa61c6f952dbcec937cf7304ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee03ce288ba25b05cf0de87203165642277a25caa4f00a437e13152e5214e310
MD5 ac92175f4ba75a8ed5c39d0ff56560f6
BLAKE2b-256 6ac0c7ab82d6471dfa7e4fd68ae6ff2c6a50d077c05d6ecdea0cec8af635b2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46998fc8d11aec34a20e2010905e7059732a3d192d9a3c3fe4f9ffd146c87ec8
MD5 cc98c371e00954ed645fdb710d8be2f0
BLAKE2b-256 a7f1fe8a467d8ff5821e076b96f398d3acfe3cd568d900e6ccb41b215592b152

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 38.9 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.13.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5737ffe0740a788b0e6255f0ffb281db49305fd6e6a587be44c73d9e92b554c4
MD5 e51ec7bd5a44925640cb628b415fffa1
BLAKE2b-256 72a14b147c06ee5bb14bec6e26786358c8510c4d75e28b88146a6ac7620f1f71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.1 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.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6692d49ff970aaa5008f4a6fe06974bc91fd957bf13173f765e46d8ba44906ea
MD5 eb96d152db9c65630348c7166b6d82b6
BLAKE2b-256 b523d3536d8945d1bb00248d998c8dcbe678a884681ad181072daecfafe4eea6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 40.1 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.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6bc9fa43a49e403c68c7eb164eef0feee9dd29474a7c6e0d3b6267025371990
MD5 94ec11f972c82cd1bcb1490c87b20b1c
BLAKE2b-256 7353310aabff0704f9c7ef0d3f431ce8b8e3147c3cca25334a205615c511f65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d0ad1207694988498fca7e0bb28eba7564fa33261d2f9fdf66a3aaab376b803
MD5 028c5ee40a14924304672a480f46cc4d
BLAKE2b-256 cb1c65f2ce1a0411ec9a87339db01f0d5d554a49c4248ec68ab52a1b7e14e9c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b535e0970c96957e999cfe5ec89361f0e8d0bb987fb5d5144f6f495cb3ed9e19
MD5 39dcfcc4569138a31d3f65b5258c8465
BLAKE2b-256 c3dfeb5bd92dc1b23254fea5b2022007baff5491a7478bfcf7e9260d3a10f1ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c5a2478a3a1fa4421f7e035b87194eea0cf44c7971a3f32ad1b42a0dfd63c03
MD5 0b2ea04f7e487f4b8f5d0387ca36c6bf
BLAKE2b-256 3606407633f0709e168107f56368bd5a0fa8fe07acd7f1d3000710bc0bb07470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea7204e9fa7538bfbb1396e1ee8c2bbcd3818b3633ef5bb14d4fdea52994d14d
MD5 d59baf7b1aa79e72d9db96c2dd88771e
BLAKE2b-256 bcc49a34ade542426f56a0bc042f774073d1c247ae7575363c27587788cb2b2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d02f31c2f59cc6a1c2c3633b377701fc2d8e876cc01950735d7a01132ccc233
MD5 4b63e5a50b5c51753167c8b57a386702
BLAKE2b-256 f66f7f55c1e9e0be87beebaed553fa186ad5f6d5d639cbaa9d49f78f2f91c3a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 229faf041ef249ee3fd57bac1cedb123d2718ab63f6ccd50eca95ea902eb0dca
MD5 494cbb042d1361d6c3370276cac46205
BLAKE2b-256 7d1a5718237cf4141e5be46ff371387e90b01f27774cb6f0f79ff4803a2430ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fdde6341d213b29f413b5fa9fad1392d5408074c75f0900ed949e97e546fa5df
MD5 7a8ca9a1635cd042c0f971d1be7b6be1
BLAKE2b-256 bc1df68e14cf476d149945211142f4c20782c1f232c489e8edcc4f4b58ce4997

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 24539618fb3243cfdf27dab9a850acab80798a01501e9586b61fb9ecd016a891
MD5 5b1253ae6a10b596393e781a53ae4071
BLAKE2b-256 7779f98c6c1a4ed9d92d39d5d2d133f2b6fce5da11ea50c341117aedde8011c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7edf16359c52ed53406e216565d83e6b98c23c3cb9a0a01673f2493f8fb15edf
MD5 6726f5699d37f333cb164fe0f905e6fd
BLAKE2b-256 884fb03bcc9eaf4621ac9008dec90918d8fb4839d611666cb99eb255696c67fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf81570ac056cb058f9117b52ca5dd800bfe9381d0076d0bb30a08a54591d654
MD5 b5c9431aa176d15b97d9ca6de213b83a
BLAKE2b-256 eeaeb66deca15da1f7faf6952d8eddf55978482bcbfd294ed2afe2c526ea325f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 39.0 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.13.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 32a59e7151fe2fec8fdf9a565ee66fcf87918d48827e21cdab5e15ff9f274b78
MD5 64299afa41fc471a6d19dc80aa148437
BLAKE2b-256 15ec46058bbbbe45e054cdb9f1dc0bf416fbbd5fec06bf3b4987c2437e496350

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 40.9 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.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2275bbaaea3eddd2e8ec0863e28a420f5f520b14a760fc3f1e49fd07a974448c
MD5 5d6e106042fbd9804ca370242246dad4
BLAKE2b-256 ffc5f9f3cf19f6ac29e07782eafed562fe0a7cb451b44bd1664c58fe8974235b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 40.0 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.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ae53b3f046529c193d533ca8111492330b204d6007611cdfa20e8b764c7c1389
MD5 fe72f718de0f10369fff4d26d364007a
BLAKE2b-256 2b6c4aed5dce0161d6b8c95c5da760477602a05e2a540a762424395acad9aec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e12192a37c6c0e476554b62647acdf6139a47b6f13d8bad8dd2316763c4cee12
MD5 eb50d6fd9212de140fa62750f036350b
BLAKE2b-256 acfba1d0a6a83a13adee3a13cad308dcd3251ac53c4bd781f737242ad2f10d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12078e81def2790140583abefc1b979f3c77be15d53c524bf0e232f669822052
MD5 46ad55072e5ba5ad5bdce3c587996b53
BLAKE2b-256 894e8a4ce87d3eaaee398f4238f74f128c6eb34269f041659995b2c09710ae7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c75eb7fac0fe92925b959cf2fa18f88d9fb76b10781fd2a6ccb895d5fb89171
MD5 db33aa75ea950ffb059ba64171de13aa
BLAKE2b-256 25e27891c4a1c954307ab6a575686897a4963aad36c284742216f52dc40cba4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2282039eb26f08ed1a1381360395f8a310f39a45ef7314cb0f258a7d2917ea3
MD5 4e7889807a234ee12776baefcce011e1
BLAKE2b-256 ad8e9d11af9d1d19ea239b0d289cf62a611cb4f2da9ec0d46b826767f4ab1768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1cf46c79498c81f088cad4165b1669a78bba7bfbeb778c7cc1aff316e062b0d
MD5 0245cba89f2f7c352d878daeeeb07859
BLAKE2b-256 c65f8f1ce659a59ef9510fa47b95773442049a383c533a645b2da8beeeec90f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0806683e8171ec06817e6af22f14ba0cd2f16def8a2ffb22a28a10615249355d
MD5 0a9b3b1d88d932eeec8d533cc11ed4d4
BLAKE2b-256 a999d6bb0e18188954326b38499ae61b04ce8ead6425b8844384e537a491267b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cdd9618e07b3b142a02f0ab8227fd52453688b8e8e60ac0511f13a25fa8009db
MD5 94d7b367a76eda41a5e3f400f8dcc336
BLAKE2b-256 ee43d28ca5e6c3d8c467a4c6296404067f4eee9d67dfeeebeb3c5fb0bd6cb958

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 89d0bfc986d02b4ce76b00e0f560bc8d30dfe8c05a1bfd8529e085eb6c1a77d9
MD5 ffc666d4d26e3b7a88a158c66a2edbc9
BLAKE2b-256 f06c6d87206988172015781b9ff842c0a7eca897c026b2e7a95e11d86d46ddf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09effd42924a80df20a63b31a1ede905e66b0ce24aafe7a4cbedb05c783f8bb3
MD5 51d60b812c2d4295abfcf6296f19c3cf
BLAKE2b-256 b5c683db69f96dc12509c9510084c0389c4aff4dcf427f9b613d1a23abd446ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b7badefa73f96bad9e295ea22bd06967b851c8aad68c74196437e3584f25de5
MD5 680ffadcfd3563049b6080f466bc8b13
BLAKE2b-256 58dc2fcf821896803248122835c800e74f4582de9d6092efb37152acd7f79bdc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 39.0 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.13.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7b4a05f61a96553995da6a4d502e07bc8aa5d07a90031df006239c6b00ce1c83
MD5 69ce19a59b3cff6875d2b182128ce67d
BLAKE2b-256 abb1eaf4308ff7e7dc5aba78d7479102a69fa5fbe65e1b02f16c62b553a0b506

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 40.9 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.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0354d6b50b0d153ed7c629845b18a953d0c727b7e768fd94a94e0602abfa1f29
MD5 2662a50c14a738ff5fb4a074377138a6
BLAKE2b-256 568ada9bb80765a5ea582ff8c1bd2f3c3909c05733314c55652d1c0bd34514f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-5.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 40.0 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.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 326553ae6c063c8246974906a6c137a0780fe46d143abebc52cd2cadda0f1814
MD5 6f0eb0a56832d967a5013353d07869b4
BLAKE2b-256 cc6857e084026ab657ab0443017fd0aa51009300bbd2eb09f5113af113703e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1209c985d1f4c2ae085ced7325509650cdb3533bb7294558dd1f26d48377942
MD5 29b37d98f685cc2a8b3333612a990d11
BLAKE2b-256 8eaaa945aeba9d463e335169b3c0ee60adc147e22e80bb636fe0f185bed1247f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 820b78a6a183ab6591b2ea888020032ef0fe328d852af9a5c8d8084ababb2218
MD5 06852f12dd77caf546e35927ab8cc91b
BLAKE2b-256 d402baaf3ad0bb4b2c3bec3d9ff8a59768d39d20201146742e8581f8a0f87e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3cae1c811e787b9500e2830af8632dcb32a78dea5baf15aac51d681c59a59dd
MD5 cdd32d945ff2127e402d880097d1e9f2
BLAKE2b-256 715eb8b2806996c75d4c34cf92ec04c5fff58a645a32632f27836886a718cb87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b877fe7926107d25d54b655c5b8dd94b294b22c157233163ad29fdb54ac10cf4
MD5 57241a48894b4fe8001ee90db1a856c6
BLAKE2b-256 0d6010f6c92b549cff72e555a900ee7128b992ebf510bad0eebd946e72b68ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0b5f6983b2469db00e540b68fa8297b7a0ccd0d5173c60cc3e84f336b09395f
MD5 2b45802cc13ab254abe0b8992bdb39a0
BLAKE2b-256 c8ba44fcf17cc93be7c6647fef2e556d703791659280e6409623dea854e6db7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.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.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 82c17b904c03c2b9629486ec91a8fa46a15f10d03504284f54ed7257a917d9f1
MD5 27a689dacb18daea0b3c86822d0eb270
BLAKE2b-256 4b73103c2c6df7bfe57e01fb6006551188b4dc9f873cb5f72146bd5b177b75f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5aa9bf16f0131812720dd4ae70bc1a0cf68f79e93c07c66100d328e75944b567
MD5 605200b5631be9759b14bca0df8b6fb4
BLAKE2b-256 9a52f5b72747349c66552396166a13424a717df70e76a18ac5bbedc84c244407

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.13.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 65c1813fdd742fe3c249d9c417fa490e5b54e8a91bf343a88486ec50d175c444
MD5 71b25990d9aff3db0767c6abd57d466e
BLAKE2b-256 969c3eb2d21778dbd0a9f1adae7ce73e4f6c981efa7fab534eb28afde31fd25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.13.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.13.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8e8c1203cb1a27720debc334f840a9170da741503522f86999710cb4738fbe3
MD5 3fc0d08352a9c59b14b32fe6e9b7f5b8
BLAKE2b-256 8ed292e83af35cd65d3b7c47fb0e24927aa2b478897af8b0dd0ee19abcd50c03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-5.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 770643b4752266c5a466149848b78c3874940926a4ecef304f518b2b6cdb432f
MD5 1ab50a8c317baff158e9d0910dc5f8f3
BLAKE2b-256 d3a4ff15f528d386f47b1972859f25587da017d5be84c75076b380fedde318fe

See more details on using hashes here.

Provenance

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

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