Skip to main content

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.

Download files

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

Source Distribution

ujson-6.0.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-6.0.0-pp311-pypy311_pp73-win_amd64.whl (243.7 kB view details)

Uploaded PyPyWindows x86-64

ujson-6.0.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (50.7 kB view details)

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

ujson-6.0.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (49.9 kB view details)

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

ujson-6.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (48.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ujson-6.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (47.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ujson-6.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (54.3 kB view details)

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

ujson-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (49.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ujson-6.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (50.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ujson-6.0.0-graalpy312-graalpy250_312_native-win_amd64.whl (228.2 kB view details)

Uploaded Windows x86-64graalpy312

ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (55.5 kB view details)

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

ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (54.4 kB view details)

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

ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (55.4 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

ujson-6.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (58.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

ujson-6.0.0-cp315-cp315t-win_arm64.whl (415.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

ujson-6.0.0-cp315-cp315t-win_amd64.whl (236.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

ujson-6.0.0-cp315-cp315t-win32.whl (236.5 kB view details)

Uploaded CPython 3.15tWindows x86

ujson-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

ujson-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

ujson-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

ujson-6.0.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-6.0.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.6 kB view details)

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

ujson-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (56.7 kB view details)

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

ujson-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl (54.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

ujson-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

ujson-6.0.0-cp315-cp315-win_arm64.whl (415.0 kB view details)

Uploaded CPython 3.15Windows ARM64

ujson-6.0.0-cp315-cp315-win_amd64.whl (235.4 kB view details)

Uploaded CPython 3.15Windows x86-64

ujson-6.0.0-cp315-cp315-win32.whl (235.8 kB view details)

Uploaded CPython 3.15Windows x86

ujson-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

ujson-6.0.0-cp315-cp315-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

ujson-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.4 kB view details)

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

ujson-6.0.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.4 kB view details)

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

ujson-6.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (54.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (55.7 kB view details)

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

ujson-6.0.0-cp315-cp315-macosx_11_0_arm64.whl (54.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

ujson-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

ujson-6.0.0-cp314-cp314t-win_arm64.whl (415.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

ujson-6.0.0-cp314-cp314t-win_amd64.whl (236.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ujson-6.0.0-cp314-cp314t-win32.whl (236.5 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ujson-6.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.2 kB view details)

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

ujson-6.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

ujson-6.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (54.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (59.3 kB view details)

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

ujson-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl (54.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ujson-6.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (55.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ujson-6.0.0-cp314-cp314-win_arm64.whl (415.0 kB view details)

Uploaded CPython 3.14Windows ARM64

ujson-6.0.0-cp314-cp314-win_amd64.whl (235.4 kB view details)

Uploaded CPython 3.14Windows x86-64

ujson-6.0.0-cp314-cp314-win32.whl (235.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.4 kB view details)

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

ujson-6.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.2 kB view details)

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

ujson-6.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (53.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (58.5 kB view details)

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

ujson-6.0.0-cp314-cp314-macosx_11_0_arm64.whl (54.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ujson-6.0.0-cp314-cp314-macosx_10_15_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ujson-6.0.0-cp313-cp313-win_arm64.whl (400.2 kB view details)

Uploaded CPython 3.13Windows ARM64

ujson-6.0.0-cp313-cp313-win_amd64.whl (227.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ujson-6.0.0-cp313-cp313-win32.whl (229.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.4 kB view details)

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

ujson-6.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.2 kB view details)

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

ujson-6.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (53.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (58.5 kB view details)

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

ujson-6.0.0-cp313-cp313-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ujson-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ujson-6.0.0-cp312-cp312-win_arm64.whl (400.2 kB view details)

Uploaded CPython 3.12Windows ARM64

ujson-6.0.0-cp312-cp312-win_amd64.whl (227.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ujson-6.0.0-cp312-cp312-win32.whl (229.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.4 kB view details)

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

ujson-6.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.2 kB view details)

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

ujson-6.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (53.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (58.5 kB view details)

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

ujson-6.0.0-cp312-cp312-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ujson-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ujson-6.0.0-cp311-cp311-win_arm64.whl (400.3 kB view details)

Uploaded CPython 3.11Windows ARM64

ujson-6.0.0-cp311-cp311-win_amd64.whl (227.2 kB view details)

Uploaded CPython 3.11Windows x86-64

ujson-6.0.0-cp311-cp311-win32.whl (229.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.2 kB view details)

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

ujson-6.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.2 kB view details)

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

ujson-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (53.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (58.3 kB view details)

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

ujson-6.0.0-cp311-cp311-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ujson-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ujson-6.0.0-cp310-cp310-win_arm64.whl (400.4 kB view details)

Uploaded CPython 3.10Windows ARM64

ujson-6.0.0-cp310-cp310-win_amd64.whl (227.2 kB view details)

Uploaded CPython 3.10Windows x86-64

ujson-6.0.0-cp310-cp310-win32.whl (229.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ujson-6.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (56.2 kB view details)

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

ujson-6.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.2 kB view details)

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

ujson-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (53.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ujson-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ujson-6.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (58.3 kB view details)

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

ujson-6.0.0-cp310-cp310-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ujson-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ujson-6.0.0.tar.gz
Algorithm Hash digest
SHA256 80e23393feb707582e0ad495c397a4477b646d08094d2df64f7316f9fafd8aae
MD5 0821265a819a657e8b9fc5147e4cb3b7
BLAKE2b-256 647ce1fa3fb70b53192436d751b5cb671f0ee960baa188b8351a7fec735223d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e9f1625d047d011804a3dde0b8c5099ca2230224ca6b17f13a97b5531799c3aa
MD5 47437383161d32d8139d65c93731da0e
BLAKE2b-256 23d7c2c025b9e5e41fbfc7ad8382175adaccb6047500de16c16dee44e738d1db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5d13a4ccf3fc9a00fb4e8cae818ad7ecf33f210d8098fecbfc087ff43573544
MD5 10ed40d564221daa4c296fde7961166d
BLAKE2b-256 badacae247036886535a5e43945f3ffd414b9fab92f54706ad40d7304c7630c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89b1962c30dc29ba99e522c4f2e39173961b6098328cfbcdad3f9f1c308dae89
MD5 0351e8f314c23aa9568c39c64861fcd7
BLAKE2b-256 21a78c2e2121ef48616dfa2357d1f982d54e2d44586a557f9720ee84bb4f0021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6759d1a9f8aa45dbe2fb3e49ef181e8e6dacca89c595c5ec007ab2b839235117
MD5 4d2ee5281236d808265445a3990517b4
BLAKE2b-256 cf8fa4c91917c51f64ecc846bd2bc7f0a4397d4339cd1e91d2965cb85a484cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7de7692f330c1ceaf6335ad8039d2fe9344d30ecb415e86ee719e9d5585b2077
MD5 d9b9fe70d1fc8748543f1adf5e7bab82
BLAKE2b-256 e60da93e8d790a36262b662187dad04ab84b0204a9ad58c4ab5d87004b18b2f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 65bbea52c251b568268b61f9377bee867addc81c9b4c24da277b051ce16f6151
MD5 d1735bcfbe9647955cb9237bb3a06e1d
BLAKE2b-256 efaba0f4f171b4244a9d61be0c7be767791cd51d01cf805db534a2a2bde59eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 970f9ff27d12e089fa342379f52ea3f4aff6fbe8690aca9a1645c14aee5d08fb
MD5 348995b1ee5d177eaecbe9d7fe4111e6
BLAKE2b-256 38e495346e93cea1e0af9d987ee1e8dc9a22867baa59f2cd60bbe1f3d77d78ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fbae9b1a4d70e2283d71a0b66db2a91eb1a2cefaf370e47eff3a79f8ece7148d
MD5 815113afddd80e76a0b1d5e2756e59ed
BLAKE2b-256 5984cdb0286e5fb188b0fec4448fbc48be6be6c029fdfda7bff949f789997386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 0d6e29b91a0934ed9d22ee48aa91518523cd2ce1c6caee2810b439fb371b8439
MD5 6974b78f49f7a7458245fafdaf035a56
BLAKE2b-256 c7071ddd75170364566389db80faf7845950f79bf71989bf9194e7a331d585ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 868856ea75794d952c773c506bb638e2a692bc5a8095cefebdcd98f43c79e772
MD5 0c5a0c60c491b307ce2d9f19cbe9b314
BLAKE2b-256 e5597b0b75c19cc394436fe8143a3f88a39a9c2015469e540e236c6046773e42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15aa57f6d0dafccd20f282f46f6a8d721d46c73fd9474f5ba996e9adc48d3177
MD5 b2bbc9a3b91ee2ca426f9489f067405f
BLAKE2b-256 eba97fcaed6aa33a50a9dfb2c2e3259a2fe9075b66bba44bef77bc597c05a263

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8604968307105c3229ce0170e70bf3f172cf96f73c978b1afbc3d0ec8bdfcf86
MD5 af95290f66418aa9d60d1de0d0251e96
BLAKE2b-256 dfcacaa8d28fc2507443fd4c32fb7e415f6d8fc70aa332160de36e253d8b083c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e0652b2110fc374c766cdfca4fad61f9d13a0ad60c5b335ef3fed509374557bc
MD5 c481117bc9801195c20c8161204fb440
BLAKE2b-256 7fea2175d546216366acddc5f677d8a2eb27fb1a24b53871c8e31f5109237ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28ac884b58c62eacdb6ac67284475b3f19b8160dbacb723956e67a0c11e45014
MD5 757a157bdd31519c51b159aa3471fa97
BLAKE2b-256 a10446d0146a9b4185aaee6b8b5d4fb58df59ec62e9557d6f59b0fdcd7c84b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 415.5 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 a2e699d5f290f81829f42638f8bc6582e3e73452d8607edf749ad3e1843946fa
MD5 8aa205ae595d338f2e8cd546d42248f8
BLAKE2b-256 4076ccb45390fb2bab53b69c7a49c0cec655a93727eeae0b3912132fa7150649

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 236.2 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 801ff407fda799f4ff98d960342128b065a14113eaccfc116b50092342636861
MD5 a02d1bb3a5896153b8d716a2b1a08723
BLAKE2b-256 15e839a55080f06270c7fb9a9e6384a2cc8a9d24094ffe90c6447fea6724f346

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 236.5 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 54ab6b66fa6f67dfa8234e109df132074e155af3b299ad83aab13ba4b6db9b3f
MD5 b6e445d6b3e0b586bd3a1d670df85d09
BLAKE2b-256 c2cebaf673bd0ebe6135abb5bee5a4dcf162d2a79608bdd18fbd0e47bb7371ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7945560fc6ce687ea83aa0bc375aa8a1101d9eee1fcbd085c5e0a5b6c6ac8ad
MD5 7c9eb51971edac224ac835de9fdfcd59
BLAKE2b-256 3140b25a5f2b7bb6a5940692dc9d10bd89dad0c1e7d5af64c473d7391ec94513

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cda9f81e58120675dbaba7b254849ee59698e5dee83c4383a3c1a96ca92a679
MD5 6be3945fb0aa4ba0da9180c439bd0249
BLAKE2b-256 3f21deab9b41b6a8737210cd2460054e915f10b878bfda824e2dccc3e5f0db5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 add6b3827cbd6ce068ad70b1b890d44271801386a726e2bafe5bced784466642
MD5 0403c38f8bafe3140c15f4a671bc9464
BLAKE2b-256 e1b18747b3acf29d6219b042e8983f840fd4866dd9c65e5da9457311d4fb4fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d56d408ccfb9b0e5c2b4ea687396df30ca42ebe2aedac88362069620ce65402
MD5 e40a0c1d2688df876bfd18a209cd4e71
BLAKE2b-256 4c2d742897add5ea6b4ac9262208fba4bcb463e3f1b60606b6d79f05c7f27f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b6494d29f7103a97d930cbd25f23fdc4d77e145a931e743660d697a200fd831
MD5 0fa268c7fecfaaf1524b796139f17453
BLAKE2b-256 5549f80678f440126a3bd20253b91cf5bb200f1233bc5822f90024c7c94cfcd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7253ae5cac107d2940226a113165738630a98c19cdeaec1e6d6d6c3a7c307b95
MD5 aaa23ffdb6680dab35ebf98e7c359fc9
BLAKE2b-256 025bff1227377dbd1b1bb5834d59e3410ff27ef9c1eac1125fbb610e220f0e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 68d623416ad997666bd8ea899b15554462b6250e803f4ce084c7dfd06a775314
MD5 96413cc5e11349fcda25029eb65c4bef
BLAKE2b-256 d6a489d2bfc97fd073a3fe44c90beea19eb402c48101f83d46626d4b4d32c9d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0eeef12ef46e129278b50ca4c66c6b35c318f2fd09346bacddf218ed378cc0bb
MD5 f4d4a2c892d5095902e466fed6d09361
BLAKE2b-256 702d6e65a3a336717d65cd8035ff870ad507b5a6375b8bc992718e744d620891

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 987e191700873419cc23d94d4212e57a85df24eebbe9a33785907b0c99a5a57a
MD5 48a49bbd1d7cf091fcc6a3088ef1a606
BLAKE2b-256 09dd1dddba1b0f74092f433e6a26ce4cb0f419a7a93575b54fcbb0c6d64e616d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7168df25a051fd2a60f8d123b2123b60ead7c1f22cdd467ab7c2bba0fad0aec1
MD5 f060c26476998c81e3676dd6fff4e73f
BLAKE2b-256 e9605c91a9e9e7f0b433dd782c57c388f7e764f162a1de433545f30fe93f48c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 415.0 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 9ef1920b423effe2837351d19a2278d7a516404a07200cca30b881077a2d7877
MD5 74b6bf0407452300fcacdb657cd7b4be
BLAKE2b-256 b1db001d7bd04cde9cd35fb0635239026ad0ae8b57cf12e770db3427dfc85217

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 235.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 102ddbb1677540f0cae80cc36f5db9663a626c7b3bf872ed10f10fe72343a3c9
MD5 55eba19205f5d890a90c3d73c6e48b4d
BLAKE2b-256 26bc1a118013f92236150444d6ff931e78e698bf45f2bb9e9688d625970f3557

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: ujson-6.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 235.8 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 aea27aa0927b0423a0cfb167bd505c2dc59d1df65c66372204e43ba94fc964a8
MD5 d7ecae4921dc57bac060529d88d9002b
BLAKE2b-256 49c26fe4524ff1edc26234f67b1dc9077e05c70dd59cdc736297dea18b171bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a1472649bc9ef3b9ce3ab279e9e812368bfac25210b7ec96bd544767c019577
MD5 214811cf2d6c1c10064828bed357be39
BLAKE2b-256 0d1cfb168acf568b8d1312cfb3b079ae4a91ff95130219551ce2a3fd5edf71a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6926204905e1a2f278bacf92ff2fe31343bcc7fb9ff08fdd42be66b3a217ef0
MD5 f3c0780edf536298981d2c82b9f2f071
BLAKE2b-256 bca359bcf91336ceebeb6a54716987c7069f9ddf99579488e513252300beb6ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd835565b660ca125f5895105981d691c708c15367b88a69fa4d92ddbe24504a
MD5 743b46797b1bf6687ad50317578c7621
BLAKE2b-256 26d65cd07dc0732de702101e2360b07f2841ba50a77d2d758b0042623caae049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 928d83b72808dc73a5df530b7fc27101052be1baf013a5dd75a1535de6cf107e
MD5 9636e97f584ed9c265e804f7a8dac913
BLAKE2b-256 f21203ef04cde2e056f9ec699046f78bf2e8c1339ebfe0f29486098bf965e9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee87d8c4a4ebbef1c7cb2cf251a1d77726ef06a1597ed04d3dce92709b8fe0f1
MD5 89a04690fa8eb78f9265af6d19c31d99
BLAKE2b-256 52fb4dd3f307f62f0b22f33b9d760efbfa7c7890a76591e6867c72bd27070966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a38a21efd05384fb82d35bed81fac0ff6056ea39c3dee3c293885ce910879dd0
MD5 a0adf3c90530dee41e08eb77ac6901e5
BLAKE2b-256 6c493d702afd9beb434f5140b12ffdf88198c144c1de5bd17a2a3a6fd7872b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8d56340493496d50ccc41b460610c1ce6a197aac710733b5f36910e8c9f3ba6d
MD5 55c4eb15981883bdff9f93c2dfa7e2ce
BLAKE2b-256 9992b59b4827a9c6ba0d12939b0d6e790b8629946873b7a655ff5a06735bd173

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 34c0403b485d8ddd86bd29d879cc9f72223579b57188b0a2bc07a8b06f8cfbdf
MD5 a8ed550694252224591cb9b746d6d8ba
BLAKE2b-256 0a0e876719d6f04bb48560806bb508a038550f6a8184558f0a7274bc3015e1fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dae3765f731779faa947715485f6794bc5984802be4584478a3e9e5143dd62e1
MD5 cebff753b2b857ce3fcf3426f567bf79
BLAKE2b-256 4e0e1cd913419d17260f6d4c9869ab1208132b1281f4db00d3f07b664712ffdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b2ab962524adb39dbad565fd259e15a1c26b8944fa978c24ed6dea5ab1eeefd0
MD5 62cf1e67df4fdeddc3ce933e6f342115
BLAKE2b-256 c22b020feca4cc502b274029cd1514d428908e334a17386761d157da32447fa6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 415.5 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e1fa46cb8ddbfba2adf8277b8225e2ebf5bae435e2251c730c17bc0020f63c5e
MD5 4f85ec62193c2a1f8867faca15cf952e
BLAKE2b-256 6882f301c155669dd0bec9e569ecd5013b61e88528b7587bec2457b96b7fce23

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 683501475e3dfa935574bfd2b3d26f7393b4a880a745aeab63cc3d013027bba0
MD5 ac1c6a31775f51882743af819a9d96f2
BLAKE2b-256 7912bb371cd75bb779d3282e5c1efaeb5e20bada1faecba6d83cabdd36756031

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 236.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3bd770b553bebc408b49d6fdb46efb1dc568368d949ac7813a07fcccaea044ae
MD5 25d5ac3239e6f389a4047634cb36d379
BLAKE2b-256 8586af921b0c127f2c2d953836abfd277178bcbdfdf72318f26b4793d04a0c9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97caee7e4c3e20dff9e6adca0b7443c3cf9d7546ed5d0750954c5bb5456bad86
MD5 484a1aee3ee3ae8501b432ffbdf21a12
BLAKE2b-256 f91d3fcc1ae871d8cd6ee40ec7e92556d9641fdf248875656780c4feea33c793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0dd8981828f6b515ba5e9f2473f433aa59bebe4784182b48695b71af52033b4f
MD5 44a5b589fc1cf303beb6cbd5b4ff9a77
BLAKE2b-256 5fdc3cea633a17cb79d8b642e06b6c07f21ac31072a4b3043cc41df74db54fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad8bdad17cfc64aefb049e53687ff8730a72e2c3d99edcb36001683122597846
MD5 295b537c6e4bc2ab69a3a1277cd88bca
BLAKE2b-256 230182ed9b5594d770f6490334ce78af22c754b91b8de12efd3ddfaa1d23da9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8af54166141d5c8ebeebc044c3569ef10edfcdf6fd8ecb487a2bf33c776ebc8f
MD5 0de871c372d62465b6f406aeea177717
BLAKE2b-256 ecc99ab8d5ab9ca362381d0fcc8c6e6a831e96385a908792b2378db6282a374e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4579b8c96824f65888d4a615463c2dc2b7db6c6f0c7f83ece2a58714fd1a8123
MD5 7156e74212191b73cc0604376dee52e1
BLAKE2b-256 f8f73688adc11a3e22e4b26563256404c6557682efe62510f988bf7dfc09d8b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0f3eff1f93d9d1f0bd5eee35883b9c71ad9befcfcd0ddc7cd5862c69fba21cf6
MD5 dc2f9a42a80534fdc234494e7a146f78
BLAKE2b-256 63c0640ed28e4443c81e3ed9cbec2b216f4c3943388f4f45b703e8e0993c4f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 65e0e0c21ead4d0087c9c65a82eb2446c4bd51d36388d41035ce773517e7a3bf
MD5 3c7a0e40ef48700d13a80577f90f82a3
BLAKE2b-256 61fd7baf38f591fd964558891a1798e9b49078558346a24020b7c27945389130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b3afbe992e2d1b8c1e4e7a0da2c77da23f29545e5ba695a4a9241702234f20e
MD5 a624a5764028fadce09af8f23db9cdb3
BLAKE2b-256 16f62d4bd6fb364f8ded5840854bdda58032c8cd11614d70ce0c125a52dfb7a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 593acfa0f36ada24e89c07147441fe364081fa1631db73ee55f40893c196e0b9
MD5 54d1fb0f4b1103e680f827d0a1dc67e6
BLAKE2b-256 512933891cfee86cc13e00a1de6fa326378a637dad786078aaf56ab6336c60cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 222389a616f6407eb40e1efa80a35c1ba468903e50a305faf425c26e3c32bdb9
MD5 9663d2d7b680d8b9a74a8ef6e5ed8242
BLAKE2b-256 bd53cdc879e035a9b67e50fa34aa13d2d9160a826801a5fcf2993f48b9768944

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 415.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bc6df52a60b521c7b7d69de0c14856397d3cce1e39aa22cfe439c350d6f52524
MD5 041350ac94150d1530e3bdd72411688d
BLAKE2b-256 99cc69a625656d73634af2e7bb8854b05f0d47a4650954e0876e28515965a522

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 235.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d522e95bffac7338178757a7931b81639b9e0f2a3ee6e8c7ffdf867f2bfed36
MD5 cf5bd125fc62ecf9a0baeb78891bb916
BLAKE2b-256 e011c897b08e00d9778a0dea895d5e88031180812941e3cd7fc63fa26034767a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 235.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 22eafdd4f8ee6fe2db0737285c75b15f7486dc53c07b09a4b3699c92c407c3e5
MD5 138cc72cebaa9d56e186a3257bcd30b4
BLAKE2b-256 c592504ccce4f8b56612dd5ebb1f221b5cb6435bc33d357dafbdedfe5b0b691f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfceda99f3105e9e6fce8dfd157f80894ad20247dc9ffce368c8b7883e7a2aac
MD5 48336110259a6795c09607fa363c17c4
BLAKE2b-256 ed4dd63aafdf83ecb52a76ab46b0450e5431462b713e0b2576539a1b80ed6afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90f766c5f8e55de2fe65e4241e3e2e46ed7528e7931255a7ed0dfcb5ce622b15
MD5 fc6ca5ad15da3ec2ddb5b99c53213d64
BLAKE2b-256 b86173d5ef4020716e08de4992519d090785908bf229a3d464abf0a067f06c21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc115cca04dbdfd98a67ec89ba5ffd8a87f3201171af54980cfd550997611c41
MD5 332bfe3818f394da54767082a1bb59ae
BLAKE2b-256 a9ad5e2dd3fbbadee85811279e57dee23f346d8cc099809c14f7bb01d1a5a879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9d26982045b28db1937ac60682a9940fdb72f9cab3421a5d56c03f2207c99e9
MD5 c19f6f56630d95abd5027bac10cf8fcd
BLAKE2b-256 cfb4c52aa5b797b76a2ca10da513010120809d70bb12acdfc27ad7875a652fee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab7b316bba31be494635dcc5db87e429f2478073d15d2c54925c32fd9e1947f4
MD5 cc86ba8d4ac930dc20211eaffbc59b4c
BLAKE2b-256 d6c3e6d76ff353d179dd0dca2e5df6afdd170874031eb73284acb9a327dd7f52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 63b56e3fcccc339e2c1332e75adc779bd145964e1a47a39a229fa01b2e25618a
MD5 d9cde43b795167d4e73dcc7363638e60
BLAKE2b-256 3773a7ecfa39bb08cfe57d35064b4be21712fe671bae47574a4c9901a9a1ad2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c2c670cd7aaad2a3bff450addb32b26aa831f82a8b6c2c875ec19bb282a6c45d
MD5 b106397310117f4178d38bc30d926628
BLAKE2b-256 cd3b11fc8994c579a325c5c2075f03c70c967849d2c63cf97197507f31aaa739

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2145005321a4b175486dd890946b036bb8730e4e8e17744f5abce23ea014e024
MD5 a4d22951e3ce8b22437149bbd3e33289
BLAKE2b-256 6263a275e218f7c5f49c0e31b446e9eb581267b7d3393d4dfbc25f397967e51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af85ae40c71d422fad944aa8666d59374e4fa92f77899fce34b984037db41420
MD5 e73e89b10cbdf1e9a4ab9184dad8c1a1
BLAKE2b-256 864090a47580ae4246134a080b0f76637e038476271461d7ab227c1c4431822d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 63eefaa34abbe14167493710619b840d3fc167ba86e5fbe0c4a5eb01686aa3a0
MD5 bef074e5f8647662a52b7d2e67988e2f
BLAKE2b-256 7c40c22e49f786f5a0a71bae6323d0e6fa9a4a47b7b68c9f00631fdd78f147f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 400.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ec570979304a529a8be1bf9ea28889742a2ff5de9af1c6734584dfe1645da3e6
MD5 55f51cddf39f6281226b74524e629a5d
BLAKE2b-256 d5cb807314a66fb495d600718b11f7639af07138a25ea301b91234a18a43af59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 227.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88b237680c705fd37bacbaaa335106fecb234a47e1df0737d949b8e32c7eb5f9
MD5 8abaea419fe3e79f9a7b4e02f0f080d0
BLAKE2b-256 051955a89733b9078a88605f5884763e0457409fd8d04d2e47d4d761052e28d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 229.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cea0a63173e4ae98cd960f484096233da76a62550ac10c53312a69ad9f3545b1
MD5 5b5ed0ebaca3c2ca9dff62aede808302
BLAKE2b-256 6df5faeb3439f844e61040dc4bd2744c58745541ec1a94e68f08994fe4f41ee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c626f68524a19f50d9a9babc17f9c379d1b2a9f2a3da5ac3c40a205cc736259f
MD5 bde0af69b76fd46c9d8d8a38b960ce6f
BLAKE2b-256 ed512e3b3a19b36862f72300a306051fb7a265ba0f5a72d6e2eebd30f2722b44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e36269e715c8deea036d263557042e2598e79d52110233c1a623ed9e7c1cf0a
MD5 4af5364ff26cca0ffc150ba5993a0a20
BLAKE2b-256 83bf21cd9110b8b33ff1530d854f38b7bd2b8d2be41af67590fccffb418fb29f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 619b2152aa77c57a535e3e7eaf88ec8e25beac6d380378b2ade10362cce50f75
MD5 227f8a050bef87c0d5182aa89dc57d1a
BLAKE2b-256 62607f0d5da6198fcad7037dafc68e6c76aebb6536b323c07a2d1f82bf692099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3967550c8952bc516c79c40726a54313aceeb3162a8d5cc655362ab83d0957c
MD5 ffdb39cf6ddf9c5cacb2fbc248eee6f1
BLAKE2b-256 45ad26f40cdffaebd1158b1083d6c89efd9e056badd706022386a0e9567ae499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8bd6743ad58fe6067ea1677d5df4674bd7de143b038bcd4129c3a6ced483ae8
MD5 f9b0aaa427bea33c80ba0f2519b54874
BLAKE2b-256 15480462149003b03afe83450f6bdad3ebff9ac9aee315690eb0670bf2a6e342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5376a8c14d0eaf80789bdb10e21ae12582cdf526eb921a47f57053ef08c63f8c
MD5 a49ae11d09d5916cf3f60b2174eb4275
BLAKE2b-256 069acc0d306e93d1a8f1d48d54f52cb2cae39b56a4c990e2cd8cf328697bbc80

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 455e6ae6c925eca6358110e665a31e5bbcf0a93dfe9822a26b954c9351de2c3f
MD5 c954bee2682bf4bafc3fe9dd40dc9b33
BLAKE2b-256 705506a578dd00551b10bc94d68889387e5de11977ee92cc53921eb02713146f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2dbe0b6d417b458164ccf1f59e081d6bd65c1fb2f626e0daeb6fb88c436f9643
MD5 4892c3c693763323d87e6eec4c40a79f
BLAKE2b-256 9a100993497a08f9fcff34cbcdcd6da46491f415e711a459c5d81f594e89769c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad11c9153c775087d261634410da7cfaac2743d79bc9ab573177d9e3398f00c6
MD5 09c98067fce7748a9c1d47a3fc89ac0d
BLAKE2b-256 b7a0e5c7ae933fab41be06f0ff7976e3483519cbbf9e2492a217a5550af95c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb37ec7d7542e2f23fd7ca8fd034c8db7221c5e86d6a6a3a170711f993eecf15
MD5 399e1bac2e22699ad1792142a2dac960
BLAKE2b-256 bd32c67df85215ba0ebcdca8f8b1b3a856fd2434da87f84f9757e275ef99bd40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 400.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9b59ead8dd9a96399cc38994d19720443a3cc626b730cbb4f414fb768b3e2816
MD5 3bbb22b72eba502e7ef082a01bbe81bb
BLAKE2b-256 037850dac7c077e60c1277615bce2b25eddd6312e769d425a00e6fe3cf603fe5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 227.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8cd9f7203c0b2aaed66809edf7e66aa3ab0fe3402e87b69a43b9dfd8d33125ab
MD5 cc6c2d6184dc150515d4b71fc5867db6
BLAKE2b-256 303203a2ad4b3c6ebddaee2dc157f8342a9147dbafba0817c3452252749b0478

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 229.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2a09d4ea9ee60c023220195b229ce2688479dbdcf51630acdd54ee75b27c0c00
MD5 5a2906069d4defb9efab38e48c35b882
BLAKE2b-256 70820380bc0636ff366ea8666fd072cd31dbfd10947cab34f4eb06b2f299c93d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd55ca435d6c3c7e4cb6d8a0a98a133d4fd1b67d9abf90449442d9f5a728a9ff
MD5 f488a10fecf488a7c55eb0a8964e462f
BLAKE2b-256 3d8d39cd22f388524daa0155e78ab64232711e7331fe31ae3074f9e6593b7685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8141cade37dabc5f090eb5e6a267eabb6b193078becdc82aaf10433196715c33
MD5 e38ae4d4733ae90d3412753d0c93b246
BLAKE2b-256 7fb158a77bf3939317a679474d9e0cca62ce87f0c299689aadf2940ba6a5acc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 921408c159b01d39d70e90252b8ab17f16594fc91f229e6f881642fb0ed24ae7
MD5 67aff60db880506e1d225b25f211159a
BLAKE2b-256 21188835fce508f89f20409b1ba336ffe5cde18e4ef66889aeafaf3e9a73ce4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9359bfd0efd12593f0db40ccb2d1497284401da207f1d6a1783718313201b21
MD5 38f3190af9e74e7d64d3ff696c023b0f
BLAKE2b-256 09be4ddd61b3d4beb21eced10d0d100a4dca26f13303d4952e48fb5e89167869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa247eb50a52bb2190871ca8c2e0a96f8190bfdb1ebd68c70d1bf422f640b73
MD5 80ce87b616f9634f41b8491404a73e0b
BLAKE2b-256 463d066537298a91738f2f598ebea58baf0a612a65fad92a522ddac31d8191fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 aa03ac78c7806c6a391c037e0a63552e11532210b719bc062cddc00671a7577f
MD5 3ba3063364c770693c7abbd4726987b8
BLAKE2b-256 d67dcd5139cbdab193562713851e751249e2981c90c275c57584403351d7d70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c51915961a51e37403fd94114e293d580dd916ddd1961b229217a87193d2454e
MD5 bfb940dc40d82050c55a1b437f46695c
BLAKE2b-256 e7e7870f261071662573c6e0d74f28ed3e6d4ed8c604ced85df3a1e404c679d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a054959ec07f2fd63b6e8a63019a6879262c4f1983a100545c5a0206eefe993e
MD5 69967eda894146a16988dff3c0a96a5e
BLAKE2b-256 e0394536f25a8c47fb78a12b5253929ce4b41a121fcd4e1b34d02634b6939e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b305657e2ddc29a50b333053e7c7f431a8c24c92b7dcbbf7a420f2330152b486
MD5 eaef2e2362cc3ddc2e0933dd75c8701a
BLAKE2b-256 84b0454f4a6aea48fd580eaaceb9d692cfa219b41e197c6bbfd534ee8945dad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 02148bd4706f42b063bb95f6cc309e16554fb4c250db4683688c0a3eb83048ad
MD5 04b517f3d3f528537164dcc001766796
BLAKE2b-256 efd16a5526d896ead68746997a95f0ae9077e5a438c1574ecb6ea031e72cb75b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 400.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2c5a1b422ebe9919a39c183543dff29edce76bac90080af5ceed51aeb6b60d0d
MD5 171598a3a17548dbf5ceec18c8c06cc3
BLAKE2b-256 dcf525c2c98489c0d827f9aba0c48bdee8f319b81bba44f14aef929f7756bd15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbe0374e18beadac588f47e10cd14cf8b06395dc982062b643c5e3690355bfe3
MD5 5eb5166ee8df7e36f7af899c54ca397c
BLAKE2b-256 02f479333d12eb64ef0b41c0a576449d3c84ac2e36263943b4ae92179cdb7b42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 229.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 212191672712e5c40219d568c495a8a0bec526934eb87f16f30da78d962fe5ca
MD5 ae796bb609c225c8c20a114f4706c49a
BLAKE2b-256 3ffb31163721b2ccdbf9bf2d3fe8f588be9409eeae4432c6c0789f365991ab79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5919fe3109a08f8bd682a2ad1cec5cdeff7c1f563b812aba26e86b8b0ab05558
MD5 38355e5deababc0950e2c07deea5f5a6
BLAKE2b-256 fc0376c7213a59dd0f21a984f3422e14f7955e97a67e159890b29f3a2c5c0e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2e29a0dd1d33e49623d4c69bfa7e6d3d5c7530cf42bebe612cff965acffd1a9
MD5 ac1f2380753bdacc6e76902dbd7742b4
BLAKE2b-256 40116335f73db7f59e54f574adf226e94b7c148c1b492cf4fbfd95d853504d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a4edbeb091b195031a0e96fab005150340e383c095cac6b5c2b7dc8f55040b5
MD5 7f6d891a786d25df252504f2e0fd0fda
BLAKE2b-256 db66e5edd446495ede37491da219779b762d1877c9a3d69f87aadbddafe0cdb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd26d4b182b7138fc948cda55fe2e91b70d987731e169e628f42ba22cc6e3cce
MD5 53c9212581402f18e6eeca5cfe5a50a9
BLAKE2b-256 86b568e1eeee2c35f79a0d720ac066236f0ddfb9a29864cec5dbe9ec006a0f74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f3c0a77235d7ffcce5c54b872fa25de4f14e6ffc159c62ad93b0a9ca98a1d20
MD5 075a24bced7ad2203667226923db36d7
BLAKE2b-256 1f0923ed92a4f03d44598775709fcbf7930021353ed17d98a992c62ad6a29b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7e747c535d4ca9afdde31e034484a1020717fb18fa8a8faa789171abeb2ad1ff
MD5 59d412435fbe127230219dfd68b26561
BLAKE2b-256 35defba3d2c547622e66dfa0aca869a61a457df64d6a29867b9a5c7279336902

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 20eff4f1ea3b970b998bf111036404eb18e976d4919783f793e539370b8627cb
MD5 c19749a24573aacd7f1692b8b43f0714
BLAKE2b-256 fb42878078293fcb394f3da724e6cfee089d57202365846a3b2e3ace2f112405

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d4a731cc7cd513bf4c4016a24a060fb1aa8475e8682e1f8b1bfb836f8d3f50f0
MD5 93f6a920fa034f603fbc33db84074e02
BLAKE2b-256 8452bf7a055ae58f13933500906a937b58b7e9052ea881c1159c1ad5bfdb17d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff3b33d8c8dbbe32936d2056296324371a07ed0b29177e2eb8ec46569436817f
MD5 41fb3f758749f01cfddf505e3c77910b
BLAKE2b-256 4af84b927dc315819479058551d9b18307460a5e1a07ff0e7470a82aedf63c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a69419253e9367281db03355eb55b5231eef5ff338bb816eb5926ee788faf48
MD5 682f9771d766cc4840efcc2ad7011498
BLAKE2b-256 8dc3170109078742892cf5ca19b0c8df517e5945f5b7141782235c2cb6124518

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 400.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c3e26771a0759d213e60c885012e1f75ad84897f3d6b56b65092fbc93615bc24
MD5 b070c945afc15d6cd66fe944332923de
BLAKE2b-256 edb1bff8c59dce8eefc94e2323c93e30e2a94bcef6c7725e39ea8bc334aaf00e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83ed82fe4a17fd30796e65edeb46409f49e2794a33c0b6649d5194347f2412f0
MD5 0c28876b5123ac94c11195a44dc25751
BLAKE2b-256 1562837d0830b9be78dd01f2e6744b0ab2a614130b75da7061e9fa808f670b04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ujson-6.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 229.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ujson-6.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a41209acca3ade45d27ed665a20f8d174d5bb10c3bf0881802f5215e3269fadb
MD5 35737111038cc987ffc994cc95a893e4
BLAKE2b-256 fc79e7ee510705fd030e94f8a0a2fcdec19b82e25373e9e5d2087b1ba7afb396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03a385e523f67dec6d4dad0970f20a080cad045b56d9a3564d07807090a9c106
MD5 9dbb3a069ca3e39f5dbd22e0f5f8bf6a
BLAKE2b-256 512ba445456fdca0a4bd6c691861d66a7c226f015a543d9f6b2f5537e1b734cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 666a91606eeb47c997927ff294f3a9f8f930a02d0d2293ec7b19da5ed688f7ec
MD5 7e6f09fdc93e4bd6203c26c023d2136e
BLAKE2b-256 eb407db01714718c4324d3641061b12cce285ef906f750c09157f65dfc5c16fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bde35c0d6b5a204990f43e4ab43b6e3e4d5a1de773246e11d518945e3ba789ed
MD5 fd3107334570369c09c3036bd68a0da6
BLAKE2b-256 0fbb4e37fb0c4593870684f848ba0e3f06f17695596df3311fd4ccf0185db2de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e94f0b95459caa6cb5e333baf6763bf1e7a96ea5e4f1ea7fbb0ad88e81a88ab
MD5 90962f149d38f3801e693c7c18bd1430
BLAKE2b-256 f3eced610aff77e0f060d0abb6e1d5ad8f07b2b6e4a0c5e765225ccc5f229ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 108a9f3a635913d38a856e05007afc9b243929938939cd11576a3f5484925145
MD5 dd051e1a891b2e8e05bf77eaea3b6a7a
BLAKE2b-256 15bdd1652f9e1ff16b1324c0715d97c8c295d845aba2766d69dab8a2cd90de9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 83194e213d9df2f2aed1edb821689f99c0f7789bdee173125fda510282f61070
MD5 48c6b36551e3c45c54cab58539d07820
BLAKE2b-256 499acce4d9f023bc3213a17ceab844c597399f1e65c6654ba3ba178aff28683e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b8d019e935e4f8d6493690036161e62fae033891b71f20d238342ae266fec852
MD5 e98669410e92c59943c6bb2752108bff
BLAKE2b-256 76670e6a2ee29000cdde7a8fb931bf2fdd941a8c0deef18451e3e9c936dbfece

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-6.0.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-6.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1080587042cb19f9cfb08f289498d866ac5f93393b21006321dea331dbf62375
MD5 fd9260fe00d2cf9f5cd4d49fd9ccec1c
BLAKE2b-256 b478ac325bada531de2fa2623e7dca1f690ae2314f9fb790ebad64dd41571298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc8510c8b5b8373e0789ca05ebffc0aaab6e8a8f86d67956c91bc37f43d4f989
MD5 57a0cb707dbbae9d01c603547a911ebd
BLAKE2b-256 f6e6988d06bf5e46c992397d93123012bdd1e84bd829afe8181d8334a98ba7e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ujson-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cca83e86a300db6c72847bc7acc259bf86481063aea408b07c8a96d649797b7f
MD5 4b473a224d9f1c315bf1411268ef47cb
BLAKE2b-256 d20e37251c324a2b8799a22b5354b8edd4b867b91f0e68fb74423772c377bd7f

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

6.0.0 This release

119 files

5.13.0

93 files

5.12.1

76 files

5.12.0

78 files

5.11.0

84 files

5.10.0

78 files

5.9.0

65 files

5.8.0

61 files

5.7.0

65 files

5.6.0

65 files

5.5.0

65 files

5.4.0

50 files

5.3.0

50 files

5.2.0

50 files

5.1.0

50 files

5.0.0

50 files

4.3.0

44 files

4.2.0

44 files

4.1.0

21 files

4.0.2

21 files

4.0.1

21 files

4.0.0

21 files

3.2.0

21 files

3.1.0

17 files

3.0.0

17 files

2.0.3

7 files

2.0.2

7 files

2.0.1

7 files

2.0.0

1 file

1.35

1 file

1.34

2 files

1.33

3 files

1.30

4 files

1.23

4 files

1.22

4 files

1.21

4 files

1.19

3 files

1.18

1 file

1.15

1 file

1.9

1 file

1.8

1 file

1.6

1 file

1.4

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page