Skip to main content

Ultra fast JSON encoder and decoder for Python

Project description

UltraJSON

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

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

Install with pip:

python -m pip install ujson

Project status

[!WARNING] UltraJSON's architecture is fundamentally ill-suited to making changes without risk of introducing new security vulnerabilities. As a result, this library has been put into a maintenance-only mode. Support for new Python versions will be added and critical bugs and security issues will still be fixed but all other changes will be rejected. Users are encouraged to migrate to orjson which is both much faster and less likely to introduce a surprise buffer overflow vulnerability in the future.

Usage

May be used as a drop in replacement for most other JSON parsers for Python:

>>> import ujson
>>> ujson.dumps([{"key": "value"}, 81, True])
'[{"key":"value"},81,true]'
>>> ujson.loads("""[{"key": "value"}, 81, true]""")
[{'key': 'value'}, 81, True]

Encoder options

encode_html_chars

Used to enable special encoding of "unsafe" HTML characters into safer Unicode sequences. Default is False:

>>> ujson.dumps("<script>John&Doe", encode_html_chars=True)
'"\\u003cscript\\u003eJohn\\u0026Doe"'

ensure_ascii

Limits output to ASCII and escapes all extended characters above 127. Default is True. If your end format supports UTF-8, setting this option to false is highly recommended to save space:

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

escape_forward_slashes

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

>>> ujson.dumps("https://example.com")
'"https:\\/\\/example.com"'
>>> ujson.dumps("https://example.com", escape_forward_slashes=False)
'"https://example.com"'

indent

Controls whether indentation ("pretty output") is enabled. Default is 0 (disabled):

>>> ujson.dumps({"foo": "bar"})
'{"foo":"bar"}'
>>> print(ujson.dumps({"foo": "bar"}, indent=4))
{
    "foo": "bar"
}

Benchmarks

UltraJSON calls/sec compared to other popular JSON parsers with performance gain specified below each.

Test machine

Linux 5.15.0-1037-azure x86_64 #44-Ubuntu SMP Thu Apr 20 13:19:31 UTC 2023

Versions

  • CPython 3.11.3 (main, Apr 6 2023, 07:55:46) [GCC 11.3.0]
  • ujson : 5.7.1.dev26
  • orjson : 3.9.0
  • simplejson : 3.19.1
  • json : 2.0.9
ujson orjson simplejson json
Array with 256 doubles
encode 18,282 79,569 5,681 5,935
decode 28,765 93,283 13,844 13,367
Array with 256 UTF-8 strings
encode 3,457 26,437 3,630 3,653
decode 3,576 4,236 522 1,978
Array with 256 strings
encode 44,769 125,920 21,401 23,565
decode 28,518 75,043 41,496 42,221
Medium complex object
encode 11,672 47,659 3,913 5,729
decode 12,522 23,599 8,007 9,720
Array with 256 True values
encode 110,444 425,919 81,428 84,347
decode 203,430 318,193 146,867 156,249
Array with 256 dict{string, int} pairs
encode 14,170 72,514 3,050 7,079
decode 19,116 27,542 9,374 13,713
Dict with 256 arrays with 256 dict{string, int} pairs
encode 55 282 11 26
decode 48 53 27 34
Dict with 256 arrays with 256 dict{string, int} pairs, outputting sorted keys
encode 42 8 27
Complex object
encode 462 397 444
decode 480 618 177 310

Above metrics are in call/sec, larger is better.

Build options

For those with particular needs, such as Linux distribution packagers, several build options are provided in the form of environment variables.

Debugging symbols

UJSON_BUILD_NO_STRIP

By default, debugging symbols are stripped on Linux platforms. Setting this environment variable with a value of 1 or True disables this behavior.

Using an external or system copy of the double-conversion library

These two environment variables are typically used together, something like:

export UJSON_BUILD_DC_INCLUDES='/usr/include/double-conversion'
export UJSON_BUILD_DC_LIBS='-ldouble-conversion'

Users planning to link against an external shared library should be aware of the ABI-compatibility requirements this introduces when upgrading system libraries or copying compiled wheels to other machines.

UJSON_BUILD_DC_INCLUDES

One or more directories, delimited by os.pathsep (same as the PATH environment variable), in which to look for double-conversion header files; the default is to use the bundled copy.

UJSON_BUILD_DC_LIBS

Compiler flags needed to link the double-conversion library; the default is to use the bundled copy.

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

ujson-5.12.0-pp311-pypy311_pp73-win_amd64.whl (44.1 kB view details)

Uploaded PyPyWindows x86-64

ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.0 kB view details)

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

ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl (57.0 kB view details)

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

ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (50.8 kB view details)

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

ujson-5.12.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (49.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ujson-5.12.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (52.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ujson-5.12.0-graalpy312-graalpy250_312_native-win_amd64.whl (44.6 kB view details)

Uploaded Windows x86-64graalpy312

ujson-5.12.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (55.7 kB view details)

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

ujson-5.12.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (54.5 kB view details)

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

ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (58.0 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (54.5 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

ujson-5.12.0-cp314-cp314t-win_arm64.whl (40.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

ujson-5.12.0-cp314-cp314t-win_amd64.whl (46.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ujson-5.12.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (58.2 kB view details)

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

ujson-5.12.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (60.6 kB view details)

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

ujson-5.12.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.7 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ujson-5.12.0-cp314-cp314t-macosx_10_15_x86_64.whl (56.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ujson-5.12.0-cp314-cp314-win_arm64.whl (39.9 kB view details)

Uploaded CPython 3.14Windows ARM64

ujson-5.12.0-cp314-cp314-win_amd64.whl (45.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ujson-5.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.5 kB view details)

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

ujson-5.12.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (60.0 kB view details)

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

ujson-5.12.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

ujson-5.12.0-cp314-cp314-macosx_11_0_arm64.whl (54.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ujson-5.12.0-cp314-cp314-macosx_10_15_x86_64.whl (56.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ujson-5.12.0-cp313-cp313-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.13Windows ARM64

ujson-5.12.0-cp313-cp313-win_amd64.whl (44.0 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ujson-5.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.5 kB view details)

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

ujson-5.12.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.9 kB view details)

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

ujson-5.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

ujson-5.12.0-cp313-cp313-macosx_11_0_arm64.whl (53.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ujson-5.12.0-cp313-cp313-macosx_10_13_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ujson-5.12.0-cp312-cp312-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.12Windows ARM64

ujson-5.12.0-cp312-cp312-win_amd64.whl (44.0 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ujson-5.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.5 kB view details)

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

ujson-5.12.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.9 kB view details)

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

ujson-5.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

ujson-5.12.0-cp312-cp312-macosx_11_0_arm64.whl (53.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ujson-5.12.0-cp312-cp312-macosx_10_13_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ujson-5.12.0-cp311-cp311-win_arm64.whl (38.6 kB view details)

Uploaded CPython 3.11Windows ARM64

ujson-5.12.0-cp311-cp311-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ujson-5.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.12.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.9 kB view details)

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

ujson-5.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

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

ujson-5.12.0-cp311-cp311-macosx_11_0_arm64.whl (53.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ujson-5.12.0-cp311-cp311-macosx_10_9_x86_64.whl (56.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ujson-5.12.0-cp310-cp310-win_arm64.whl (38.6 kB view details)

Uploaded CPython 3.10Windows ARM64

ujson-5.12.0-cp310-cp310-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.10Windows x86-64

ujson-5.12.0-cp310-cp310-win32.whl (39.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ujson-5.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.4 kB view details)

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

ujson-5.12.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (59.9 kB view details)

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

ujson-5.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

ujson-5.12.0-cp310-cp310-macosx_11_0_arm64.whl (53.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ujson-5.12.0-cp310-cp310-macosx_10_9_x86_64.whl (56.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0.tar.gz
Algorithm Hash digest
SHA256 14b2e1eb528d77bc0f4c5bd1a7ebc05e02b5b41beefb7e8567c9675b8b13bcf4
MD5 a1104b826ed8414130553e4482bd714d
BLAKE2b-256 cb3ec35530c5ffc25b71c59ae0cd7b8f99df37313daa162ce1e2f7925f7c2877

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab9056d94e5db513d9313b34394f3a3b83e6301a581c28ad67773434f3faccab
MD5 bb9c85cbc05d84e736101c615607a934
BLAKE2b-256 e37a92047d32bf6f2d9db64605fc32e8eb0e0dd68b671eaafc12a464f69c4af4

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51acc750ec7a2df786cdc868fb16fa04abd6269a01d58cf59bafc57978773d8e
MD5 ab841c66847f381209cacf794761824e
BLAKE2b-256 02a905d91b4295ea7239151eb08cf240e5a2ba969012fda50bc27bcb1ea9cd71

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 adf28d13a33f9d750fe7a78fb481cac298fa257d8863d8727b2ea4455ea41235
MD5 8a92cc576233bb264335680bed51e736
BLAKE2b-256 1fb6c0e0f7901180ef80d16f3a4bccb5dc8b01515a717336a62928963a07b80b

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c5a52987a990eb1bae55f9000994f1afdb0326c154fb089992f839ab3c30688
MD5 9fee17d08df826d9e7731481386f4f6c
BLAKE2b-256 6e24b6713fa9897774502cd4c2d6955bb4933349f7d84c3aa805531c382a4209

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56ba3f7abbd6b0bb282a544dc38406d1a188d8bb9164f49fdb9c2fee62cb29da
MD5 477890b83435f19bed7ae65af9509a29
BLAKE2b-256 556e50b5cf612de1ca06c7effdc5a5d7e815774dee85a5858f1882c425553b82

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 871c0e5102e47995b0e37e8df7819a894a6c3da0d097545cd1f9f1f7d7079927
MD5 6c953a11aa24f3c486e24035ae68083d
BLAKE2b-256 19faf4a957dddb99bd68c8be91928c0b6fefa7aa8aafc92c93f5d1e8b32f6702

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 8712b61eb1b74a4478cfd1c54f576056199e9f093659334aeb5c4a6b385338e5
MD5 f41ea50b564ab36ed92c7486e719b541
BLAKE2b-256 80251df8e6217c92e57a1266bf5be750b1dddc126ee96e53fe959d5693503bc6

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efae5df7a8cc8bdb1037b0f786b044ce281081441df5418c3a0f0e1f86fe7bb3
MD5 93c10506d40d0c9e9979bccda354a214
BLAKE2b-256 5810978d89dded6bb1558cd46ba78f4351198bd2346db8a8ee1a94119022ce40

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c0aed6a4439994c9666fb8a5b6c4eac94d4ef6ddc95f9b806a599ef83547e3b
MD5 94ac5b5a574874a90410ec57c53ce23b
BLAKE2b-256 0edae9ae98133336e7c0d50b43626c3f2327937cecfa354d844e02ac17379ed1

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

Details for the file ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64df53eef4ac857eb5816a56e2885ccf0d7dff6333c94065c93b39c51063e01d
MD5 9e6a926c96c445c1d6603c53fc31a30f
BLAKE2b-256 ceb39496ec399ec921e434a93b340bd5052999030b7ac364be4cbe5365ac6b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

Details for the file ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf85a00ac3b56a1e7a19c5be7b02b5180a0895ac4d3c234d717a55e86960691c
MD5 8ef4f6ca0393b2736e9331f65eeafaea
BLAKE2b-256 953c5ee154d505d1aad2debc4ba38b1a60ae1949b26cdb5fa070e85e320d6b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for ujson-5.12.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 42d875388fbd091c7ea01edfff260f839ba303038ffb23475ef392012e4d63dd
MD5 b99c2a046f08c62d2e036cdf552b0a4b
BLAKE2b-256 8340956dc20b7e00dc0ff3259871864f18dab211837fce3478778bedb3132ac1

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ccbfd94e59aad4a2566c71912b55f0547ac1680bfac25eb138e6703eb3dd434e
MD5 350a7c771504c19373a4476ba81c6154
BLAKE2b-256 b1c53c2a262a138b9f0014fe1134a6b5fdc2c54245030affbaac2fcbc0632138

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f7a0430d765f9bda043e6aefaba5944d5f21ec43ff4774417d7e296f61917382
MD5 e94906da9e8b4d795db858c85af8b999
BLAKE2b-256 c4373d1b4e0076b6e43379600b5229a5993db8a759ff2e1830ea635d876f6644

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50524f4f6a1c839714dbaff5386a1afb245d2d5ec8213a01fbc99cea7307811e
MD5 f893acba9b1653267b871bf8aca4938b
BLAKE2b-256 1c01b9a13f058fdd50c746b192c4447ca8d6352e696dcda912ccee10f032ff85

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2324d9a0502317ffc35d38e153c1b2fa9610ae03775c9d0f8d0cca7b8572b04e
MD5 e560c964dd9d4f43f1a8793db13e40bb
BLAKE2b-256 2eaae073eda7f0036c2973b28db7bb99faba17a932e7b52d801f9bb3e726271f

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7bf9cc97f05048ac8f3e02cd58f0fe62b901453c24345bfde287f4305dcc31c
MD5 827cf11b822d08095e44acf808956d5d
BLAKE2b-256 9c7e3ebaecfa70a2e8ce623db8e21bd5cb05d42a5ef943bcbb3309d71b5de68d

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ff4ede90ed771140caa7e1890de17431763a483c54b3c1f88bd30f0cc1affc0
MD5 c3db1ec5fa4ddc2ac481a2ca445b9832
BLAKE2b-256 9b74db7f638bf20282b1dccf454386cbd483faaaed3cdbb9cb27e06f74bb109e

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 02f93da7a4115e24f886b04fd56df1ee8741c2ce4ea491b7ab3152f744ad8f8e
MD5 b7c9b89ce9b0bf7baac46cef4c8dd248
BLAKE2b-256 c8ad010925c2116c21ce119f9c2ff18d01f48a19ade3ff4c5795da03ce5829fc

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d30ad4359413c8821cc7b3707f7ca38aa8bc852ba3b9c5a759ee2d7740157315
MD5 94db1a84d5f4353377de1416e8cc6a9c
BLAKE2b-256 db2e60114a35d1d6796eb428f7affcba00a921831ff604a37d9142c3d8bbe5c5

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a3ae28f0b209be5af50b54ca3e2123a3de3a57d87b75f1e5aa3d7961e041983
MD5 8cb511643f122408cc1f5bf21d64f642
BLAKE2b-256 24c28abffa3be1f3d605c4a62445fab232b3e7681512ce941c6b23014f404d36

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7ddb08b3c2f9213df1f2e3eb2fbea4963d80ec0f8de21f0b59898e34f3b3d96d
MD5 3db0b8e2699ee3567c07f6ccc78c3d8c
BLAKE2b-256 c3719b4dacb177d3509077e50497222d39eec04c8b41edb1471efc764d645237

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6879aed770557f0961b252648d36f6fdaab41079d37a2296b5649fd1b35608e0
MD5 22c350e8e701fd765a42349952d94824
BLAKE2b-256 85d339dbd3159543d9c57ec3a82d36226152cf0d710784894ce5aa24b8220ac1

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31348a0ffbfc815ce78daac569d893349d85a0b57e1cd2cdbba50b7f333784da
MD5 e5c16285e305a781b0406289147344a1
BLAKE2b-256 2438a1496d2a3428981f2b3a2ffbb4656c2b05be6cc406301d6b10a6445f6481

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e6369ac293d2cc40d52577e4fa3d75a70c1aae2d01fa3580a34a4e6eff9286b9
MD5 25cd21213ae039b79d38e8b6bae9e7b4
BLAKE2b-256 d3d44b40b67ac7e916ebffc3041ae2320c5c0b8a045300d4c542b6e50930cca5

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94c5f1621cbcab83c03be46441f090b68b9f307b6c7ec44d4e3f6d5997383df4
MD5 d8933b1f0defc1c064fb172576e67a1c
BLAKE2b-256 ed85aa18ae175dd03a118555aa14304d4f466f9db61b924c97c6f84388ecacb1

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bacbd3c69862478cbe1c7ed4325caedec580d8acf31b8ee1b9a1e02a56295cad
MD5 3bc6aa0215f97d47d5729435d0f21831
BLAKE2b-256 9ca7a2411ec81aef7872578e56304c3e41b3a544a9809e95c8e1df46923fc40b

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f19b3af31d02a2e79c5f9a6deaab0fb3c116456aeb9277d11720ad433de6dfc6
MD5 328c9686fad35744d05b688b6943cebf
BLAKE2b-256 e9fdaf72d69603f9885e5136509a529a4f6d88bf652b457263ff96aefcd3ab7d

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e00cec383eab2406c9e006bd4edb55d284e94bb943fda558326048178d26961
MD5 65b0920226abe188dc37fbe62c7bff49
BLAKE2b-256 642b3e322bf82d926d9857206cd5820438d78392d1f523dacecb8bd899952f73

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d1831c07bd4dce53c4b666fa846c7eba4b7c414f2e641a4585b7f50b72f502dc
MD5 127a87c01f082cf3ed5bb0265c53d184
BLAKE2b-256 68fbba1d06f3658a0c36d0ab3869ec3914f202bad0a9bde92654e41516c7bb13

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99cc80facad240b0c2fb5a633044420878aac87a8e7c348b9486450cba93f27c
MD5 ce22103d66c536b6231c965e94db5036
BLAKE2b-256 bf8be2f09e16dabfa91f6a84555df34a4329fa7621e92ed054d170b9054b9bb2

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d22cad98c2a10bbf6aa083a8980db6ed90d4285a841c4de892890c2b28286ef9
MD5 d95d7577bdde2978d067594daa92cffc
BLAKE2b-256 bd2d285a83df8176e18dcd675d1a4cff8f7620f003f30903ea43929406e98986

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 85833bca01aa5cae326ac759276dc175c5fa3f7b3733b7d543cf27f2df12d1ef
MD5 55b11f036847778d22b37accb1677bc1
BLAKE2b-256 10bd9a8d693254bada62bfea75a507e014afcfdb6b9d047b6f8dd134bfefaf67

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bd03472c36fa3a386a6deb887113b9e3fa40efba8203eb4fe786d3c0ccc724f6
MD5 5abe3967af9141e6cc51c06ee3f6a8df
BLAKE2b-256 3fe47a39103d7634691601a02bd1ca7268fba4da47ed586365e6ee68168f575a

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15e555c4caca42411270b2ed2b2ebc7b3a42bb04138cef6c956e1f1d49709fe2
MD5 8742665574204940d83462c37043064f
BLAKE2b-256 0ffe19310d848ebe93315b6cb171277e4ce29f47ef9d46caabd63ff05d5be548

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 76bf3e7406cf23a3e1ca6a23fb1fb9ea82f4f6bd226fe226e09146b0194f85dc
MD5 a0c0047e584534fa907b849cc0cb9672
BLAKE2b-256 7243814f4e2b5374d0d505c254ba4bed43eb25d2d046f19f5fd88555f81a7bd0

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ad57654570464eb1b040b5c353dee442608e06cff9102b8fcb105565a44c9ed
MD5 39df155015158035874be86704d85faf
BLAKE2b-256 ba4ce0e34107715bb4dd2d4dcc1ce244d2f074638837adf38aff85a37506efe4

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 937794042342006f707837f38d721426b11b0774d327a2a45c0bd389eb750a87
MD5 ab0bee7c6b4aedf8b90838c752257dd9
BLAKE2b-256 2d080e7780d0bbb48fe57ded91f550144bcc99c03b5360bf2886dd0dae0ea8f5

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb349dbba57c76eec25e5917e07f35aabaf0a33b9e67fc13d188002500106487
MD5 922cc4126bf3c2feaf0a3c4bda417d8f
BLAKE2b-256 8c04b0ee4a4b643a01ba398441da1e357480595edb37c6c94c508dbe0eb9eb60

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ea6206043385343aff0b7da65cf73677f6f5e50de8f1c879e557f4298cac36a
MD5 4edb25a79810b788c3652b616c79d5bd
BLAKE2b-256 c7170d36c2fee0a8d8dc37b011ccd5bbdcfaff8b8ec2bcfc5be998661cdc935b

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3c2f947e55d3c7cfe124dd4521ee481516f3007d13c6ad4bf6aeb722e190eb1b
MD5 9dc294227f9db8b46df597cf1e28595c
BLAKE2b-256 988ddd4a151caac6fdcb77f024fbe7f09d465ebf347a628ed6dd581a0a7f6364

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bbf05c38debc90d1a195b11340cc85cb43ab3e753dc47558a3a84a38cbc72da
MD5 22a839e0c2917d8464072c39ca1d85dc
BLAKE2b-256 e5a9f96376818d71495d1a4be19a0ab6acf0cc01dd8826553734c3d4dac685b2

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0dd3676ea0837cd70ea1879765e9e9f6be063be0436de9b3ea4b775caf83654
MD5 7b0638a5abe0fa82b8b43d98e4467285
BLAKE2b-256 b02f9159f6f399b3f572d20847a2b80d133e3a03c14712b0da4971a36879fb64

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15d416440148f3e56b9b244fdaf8a09fcf5a72e4944b8e119f5bf60417a2bfc8
MD5 ccee7693b7f4cd1bb6fa8cdfd83db025
BLAKE2b-256 3ff10ef0eeab1db8493e1833c8b440fe32cf7538f7afa6e7f7c7e9f62cef464d

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9a5fcbe7b949f2e95c47ea8a80b410fcdf2da61c98553b45a4ee875580418b68
MD5 e11f337891566dba49db96e2cfb0df8b
BLAKE2b-256 f0a701b5a0bcded14cd2522b218f2edc3533b0fcbccdea01f3e14a2b699071aa

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b5c6ceb65fecd28a1d20d1eba9dbfa992612b86594e4b6d47bb580d2dd6bcb3
MD5 4dd86b0cb316466b174b0c2a4f538cd2
BLAKE2b-256 b520f3bd2b069c242c2b22a69e033bfe224d1d15d3649e6cd7cc7085bb1412ff

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2a248750abce1c76fbd11b2e1d88b95401e72819295c3b851ec73399d6849b3d
MD5 6d1ad84fb79912040e798f01ae5a43de
BLAKE2b-256 e3f0123ffaac17e45ef2b915e3e3303f8f4ea78bb8d42afad828844e08622b1e

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93bc91fdadcf046da37a214eaa714574e7e9b1913568e93bb09527b2ceb7f759
MD5 3551dfaeb52b9132503395d5ab4680f5
BLAKE2b-256 b69c80acff0504f92459ed69e80a176286e32ca0147ac6a8252cd0659aad3227

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d2e8db5ade3736a163906154ca686203acc7d1d30736cbf577c730d13653d84
MD5 8cb32a94dab4a1363ab130ffe57f52f6
BLAKE2b-256 d481dc2b7617d5812670d4ff4a42f6dd77926430ee52df0dedb2aec7990b2034

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16b4fe9c97dc605f5e1887a9e1224287291e35c56cbc379f8aa44b6b7bcfe2bb
MD5 75c65004521392797e84a9d85fa26d58
BLAKE2b-256 ae0441342d9ef68e793a87d84e4531a150c2b682f3bcedfe59a7a5e3f73e9213

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 085b6ce182cdd6657481c7c4003a417e0655c4f6e58b76f26ee18f0ae21db827
MD5 b081b3bbee93dc0cec5ac5e75f5357c7
BLAKE2b-256 34c9c5f236af5abe06b720b40b88819d00d10182d2247b1664e487b3ed9229cf

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7e07f6f644d2c44d53b7a320a084eef98063651912c1b9449b5f45fcbdc6ccd2
MD5 e8c236cc0cb222a4bd66991be5bdf259
BLAKE2b-256 f9c66e024830d988f521f144ead641981c1f7a82c17ad1927c22de3242565f5c

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2d79c6635ccffcbfc1d5c045874ba36b594589be81d50d43472570bb8de9c57
MD5 7ca92af2703d0118db08be11521c91a6
BLAKE2b-256 9a10853c723bcabc3e9825a079019055fc99e71b85c6bae600607a2b9d31d18d

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca0c7ce828bb76ab78b3991904b477c2fd0f711d7815c252d1ef28ff9450b052
MD5 f239a0cb6acfdc8691ed906c6fa5f1d1
BLAKE2b-256 2546d0b3af64dcdc549f9996521c8be6d860ac843a18a190ffc8affeb7259687

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09b4beff9cc91d445d5818632907b85fb06943b61cb346919ce202668bf6794a
MD5 f44da63ae53ea1d5d07b1feddff3a768
BLAKE2b-256 84f6ac763d2108d28f3a40bb3ae7d2fafab52ca31b36c2908a4ad02cd3ceba2a

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 561f89cc82deeae82e37d4a4764184926fb432f740a9691563a391b13f7339a4
MD5 1f2e59184a5bbe03069450a127d76d83
BLAKE2b-256 9e21324f0548a8c8c48e3e222eaed15fb6d48c796593002b206b4a28a89e445f

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40aa43a7a3a8d2f05e79900858053d697a88a605e3887be178b43acbcd781161
MD5 1f3b8f2614c9dff94f029be3cabe8d72
BLAKE2b-256 6fe387fc4c27b20d5125cff7ce52d17ea7698b22b74426da0df238e3efcb0cf2

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 006428d3813b87477d72d306c40c09f898a41b968e57b15a7d88454ecc42a3fb
MD5 b8969e942ca8a3f692b157a65c162979
BLAKE2b-256 18118ccb109f5777ec0d9fb826695a9e2ac36ae94c1949fc8b1e4d23a5bd067a

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6ec5bf6bc361f2f0f9644907a36ce527715b488988a8df534120e5c34eeda94
MD5 56e878cc81e705e580803fe384931dc1
BLAKE2b-256 0d1a4c64a6bef522e9baf195dd5be151bc815cd4896c50c6e2489599edcda85f

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b62cb9a7501e1f5c9ffe190485501349c33e8862dde4377df774e40b8166871f
MD5 53c5d1f157b32d6b5a7022d7108a84e7
BLAKE2b-256 107a53ddeda0ffe1420db2f9999897b3cbb920fbcff1849d1f22b196d0f34785

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0727363b05ab05ee737a28f6200dc4078bce6b0508e10bd8aab507995a15df61
MD5 353590412d67005c371f86939deb8d1a
BLAKE2b-256 5cfaf97cc20c99ca304662191b883ae13ae02912ca7244710016ba0cb8a5be34

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89e302abd3749f6d6699691747969a5d85f7c73081d5ed7e2624c7bd9721a2ab
MD5 951f6c8ffe03d21fde585cf7292542cd
BLAKE2b-256 d73ab100735a2b43ee6e8fe4c883768e362f53576f964d4ea841991060aeaf35

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0fe6b8b8968e11dd9b2348bd508f0f57cf49ab3512064b36bc4117328218718e
MD5 a1eb5bc06cec9b80cac9f025ef7ee29c
BLAKE2b-256 04f6e7fd283788de73b86e99e08256726bb385923249c21dcd306e59d532a1a1

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb94245a715b4d6e24689de12772b85329a1f9946cbf6187923a64ecdea39e65
MD5 0401f062b904e98b8e0f557a21369287
BLAKE2b-256 f9b00c19faac62d68ceeffa83a08dc3d71b8462cf5064d0e7e0b15ba19898dad

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b3cf13facf6f77c283af0e1713e5e8c47a0fe295af81326cb3cb4380212e797
MD5 8bd65f3f0e9c2c737ee302c25b2e1fa8
BLAKE2b-256 c6fd6839adff4fc0164cbcecafa2857ba08a6eaeedd7e098d6713cb899a91383

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58a11cb49482f1a095a2bd9a1d81dd7c8fb5d2357f959ece85db4e46a825fd00
MD5 ca0c80cb3b6745ae96c43c93ec42a90d
BLAKE2b-256 1022fd22e2f6766bae934d3050517ca47d463016bd8688508d1ecc1baa18a7ad

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 55ede2a7a051b3b7e71a394978a098d71b3783e6b904702ff45483fad434ae2d
MD5 ab75fb36f8f1f099e22b911300557077
BLAKE2b-256 8b49714a9240d9e6bd86c9684a72f100a0005459165fb2b0f6bf1a1156be0b9f

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d072a403d82aef8090c6d4f728e3a727dfdba1ad3b7fa3a052c3ecbd37e73cb
MD5 70ef47773ad95db459f89208c629d874
BLAKE2b-256 ece5c1de3041672fa1ab97aae0f0b9f4e30a9b15d4104c734d5627779206c878

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

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

File hashes

Hashes for ujson-5.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 973b7d7145b1ac553a7466a64afa8b31ec2693d7c7fff6a755059e0a2885dfd2
MD5 7b7e02375f4376b9bba7cfaad5e238b1
BLAKE2b-256 db5207d9da456a78296f61893b9d2bbfb2512f4233394748aae80b8d08c7d96e

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ed5cb149892141b1e77ef312924a327f2cc718b34247dae346ed66329e1b8be
MD5 6464d42a1b0afe0d87e546d53e05c18a
BLAKE2b-256 f2331f3c1543c1d3f18c54bb3f8c1e74314fd6ad3c1aa375f01433e89a86bfa6

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fe9128e75c6aa6e9ae06c1408d6edd9179a2fef0fe6d9cda3166b887eba521d
MD5 783e2b7a4d5a62cf12a941eff37ca879
BLAKE2b-256 c276834caa7905f65d3a695e4f5ff8d5d4a98508e396a9e8ab0739ab4fe2d422

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e584d0cdd37cac355aca52ed788d1a2d939d6837e2870d3b70e585db24025a50
MD5 8abd8ffcaffde71a8761c133dc2bd7e8
BLAKE2b-256 bb4bae118440a72e85e68ee8dd26cfc47ea7857954a3341833cde9da7dc40ca3

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 460e76a4daff214ae33ab959494962c93918cb44714ea3e3f748b14aa37f8a87
MD5 1b1dda913619144082c316a6d9602254
BLAKE2b-256 28ed6a4b69eb397502767f438b5a2b4c066dccc9e3b263115f5ee07510250fc7

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9b3b86ec3e818f3dd3e13a9de628e88a9990f4af68ecb0b12dd3de81227f0a26
MD5 d4697c39bb813bb0116e5c7a19c7245f
BLAKE2b-256 68370b586d079d3f2a5be5aa58ab5c423cbb4fae2ee4e65369c87aa74ac7e113

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57930ac9519099b852e190d2c04b1fb5d97ea128db33bce77ed874eccb4c7f09
MD5 14f50a71755ab10073e5fe69427d5eb7
BLAKE2b-256 e4d8eb9ef42c660f431deeedc2e1b09c4ba29aa22818a439ddda7da6ae23ddfa

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 457fabc2700a8e6ddb85bc5a1d30d3345fe0d3ec3ee8161a4e032ec585801dfa
MD5 0230064a11d353cb1fa24e996f864f00
BLAKE2b-256 6ddced181dbfb2beee598e91280c6903ba71e10362b051716317e2d3664614bb

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

File details

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

File metadata

File hashes

Hashes for ujson-5.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38051f36423f084b909aaadb3b41c9c6a2958e86956ba21a8489636911e87504
MD5 ca2cbab6886d92e9aa8abcf65290c3d2
BLAKE2b-256 dbee45c7c1f9268b0fecdd68f9ada490bc09632b74f5f90a9be759e51a746ddc

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on ultrajson/ultrajson

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

Supported by

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