UltraJSON
UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 3.7+.
Install with pip:
python -m pip install ujson
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("http://esn.me")
'"http:\\/\\/esn.me"'
>>> ujson.dumps("http://esn.me", escape_forward_slashes=False)
'"http://esn.me"'
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.0.0-1032-azure x86_64 #34-Ubuntu SMP Mon Feb 10 19:37:25 UTC 2020
Versions
- CPython 3.8.2 (default, Feb 28 2020, 14:28:43) [GCC 7.4.0]
- nujson : 1.35.2
- orjson : 2.6.1
- simplejson: 3.17.0
- ujson : 2.0.2
| ujson | nujson | orjson | simplejson | json | |
|---|---|---|---|---|---|
| Array with 256 doubles | |||||
| encode | 22,082 | 4,282 | 76,975 | 5,328 | 5,436 |
| decode | 24,127 | 34,349 | 29,059 | 14,174 | 13,822 |
| Array with 256 UTF-8 strings | |||||
| encode | 3,557 | 2,528 | 24,300 | 3,061 | 2,068 |
| decode | 2,030 | 2,490 | 931 | 406 | 358 |
| Array with 256 strings | |||||
| encode | 39,041 | 31,769 | 76,403 | 16,615 | 16,910 |
| decode | 25,185 | 24,287 | 34,437 | 32,388 | 27,999 |
| Medium complex object | |||||
| encode | 10,382 | 11,427 | 32,995 | 3,959 | 5,275 |
| decode | 9,785 | 9,796 | 11,515 | 5,898 | 7,200 |
| Array with 256 True values | |||||
| encode | 114,341 | 101,039 | 344,256 | 62,382 | 72,872 |
| decode | 149,367 | 151,615 | 181,123 | 114,597 | 130,392 |
| Array with 256 dict{string, int} pairs | |||||
| encode | 13,715 | 14,420 | 51,942 | 3,271 | 6,584 |
| decode | 12,670 | 11,788 | 12,176 | 6,743 | 8,278 |
| Dict with 256 arrays with 256 dict{string, int} pairs | |||||
| encode | 50 | 54 | 216 | 10 | 23 |
| decode | 32 | 32 | 30 | 20 | 23 |
| Dict with 256 arrays with 256 dict{string, int} pairs, outputting sorted keys | |||||
| encode | 46 | 41 | 8 | 24 | |
| Complex object | |||||
| encode | 533 | 582 | 408 | 431 | |
| decode | 466 | 454 | 154 | 164 |
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.
Release files for ujson 5.5.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ujson-5.5.0.tar.gz | 7.1 MB | Details |
Built distributions (wheels)
Total release size: 18.4 MB
Release files / ujson-5.5.0.tar.gz
| Download URL | ujson-5.5.0.tar.gz |
|---|---|
| Size | 7.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b25077a971c7da47bd6846a912a747f6963776d90720c88603b1b55d81790780
|
|
BLAKE2b-256 checksum How to use checksums |
6e4a03ddad85a10dd52e209993a14afa0cb0dc5c348e4647329f1c53856ad9e6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.9.14
|
Release files / ujson-5.5.0-pp39-pypy39_pp73-win_amd64.whl
| Download URL | ujson-5.5.0-pp39-pypy39_pp73-win_amd64.whl |
|---|---|
| Size | 37.9 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4ef4ab8352861b99bd7fedb1fc6df3ea7f7d5216c789ba6d859e4ea06f1a4c45
|
|
BLAKE2b-256 checksum How to use checksums |
c272ade00a04d2d8e896541923aa6fd128d2e35bf2408c902c50036f74d8e432
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 42.4 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
d75bef34e69e7effb7b4849e3f830e3174d2cc6ec7273503fdde111c222dc9b3
|
|
BLAKE2b-256 checksum How to use checksums |
32d674eeaca4137c544ab9d2fa753a6e3e2af2edcc4cb801a5902762d67446bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 41.9 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
603607f56a0ee84d9cd2c7e9b1d29b18a70684b94ee34f07b9ffe8dc9c8a9f81
|
|
BLAKE2b-256 checksum How to use checksums |
9db50313dd6174abf983d9b83eb45f3fc2e1323496e2ca0207c3441f09512c80
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 48.2 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
abfe83e082c9208891e2158c1b5044a650ecec408b823bf6bf16cd7f8085cafa
|
|
BLAKE2b-256 checksum How to use checksums |
8e6b454b2dcc9dc0e7e7ecf579cdac8b2f744b731993ea32ca7e693f0044fdfe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 44.1 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
2ab011e3556a9a1d9461bd686870c527327765ed02fe53550531d6609a8a33ff
|
|
BLAKE2b-256 checksum How to use checksums |
899578933c95d85b7c1ce0d1c50e71a8111ef1bbbc19045ff8bad6f1a31b811f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-pp38-pypy38_pp73-win_amd64.whl
| Download URL | ujson-5.5.0-pp38-pypy38_pp73-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d9c89c521dc90c7564358e525f849b93ad1d710553c1491f66b8cce8113bc901
|
|
BLAKE2b-256 checksum How to use checksums |
80cc6b8d454b33e9963c243a70d5b749d3fc96c489b83a198c1a4afaf5316eb4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 42.4 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
ee9a2c9a4b2421e77f8fe33ed0621dea03c66c710707553020b1e32f3afb6240
|
|
BLAKE2b-256 checksum How to use checksums |
b66df63381fe48f36b12beba891563a65d9b9d0443f0b3804a119573985cf6cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 41.9 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
7471d4486f23518cff343f1eec6c68d1b977ed74c3e6cc3e1ac896b9b7d68645
|
|
BLAKE2b-256 checksum How to use checksums |
76f47088dc921fc57040a308250d27cf070235a3c503b9c5a4ed981bd0092863
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 48.2 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
4a8cb3c8637006c5bd8237ebb5992a76ba06e39988ad5cff2096227443e8fd6a
|
|
BLAKE2b-256 checksum How to use checksums |
be4de750aa8b850ef3f8fed4fb3850fe17d8f6b5635e99b122af162cd3a77577
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 44.2 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
2d90414e3b4b44b39825049185959488e084ea7fcaf6124afd5c00893938b09d
|
|
BLAKE2b-256 checksum How to use checksums |
041219214a56130600ee1bf23bcd56686a3ae7475485b212c790a6cd1947512f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-pp37-pypy37_pp73-win_amd64.whl
| Download URL | ujson-5.5.0-pp37-pypy37_pp73-win_amd64.whl |
|---|---|
| Size | 37.9 kB |
| Tags | PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
95603eff711b8f3b9596e1c961dbeb745a792ba1904141612f194e07edd71e5f
|
|
BLAKE2b-256 checksum How to use checksums |
a8b37af273e37bbd75958dc49839c91c3c92885f6c6b7b150e6e36d4ae4b9b82
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 43.1 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
5f9681ec4c60d0da590552427d770636d9079038c30b265f507ccde23caa7823
|
|
BLAKE2b-256 checksum How to use checksums |
3fba577634e03bb04b3eaf8d56c77233fecf4251cedeb57212aef66f3e6ce588
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 42.3 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
7d87c817b292efb748f1974f37e8bb8a8772ef92f05f84e507159360814bcc3f
|
|
BLAKE2b-256 checksum How to use checksums |
b9e300660a5cf0f1283262ed65f1c7ddb89466ba7cf1bd5804d0c70623d08808
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 48.9 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
f63d1ae1ca17bb2c847e298c7bcf084a73d56d434b4c50509fb93a4b4300b0b2
|
|
BLAKE2b-256 checksum How to use checksums |
00811f6f7057e38500c38da02d71757b4da10c38c806484f37c908af4b7ea193
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 44.1 kB |
| Tags | PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f19f11055ba2961eb39bdb1ff15763a53fca4fa0b5b624da3c7a528e83cdd09c
|
|
BLAKE2b-256 checksum How to use checksums |
c2d396830ea9184ebc7ca554c977b5b4a31b3c7bf0d82b47919bf95bfd067ab2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp311-cp311-win_amd64.whl
| Download URL | ujson-5.5.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a34a5f034b339f69ef7f6a134c22d04b92e07b6ddc1dd65382e7e4ec65d6437d
|
|
BLAKE2b-256 checksum How to use checksums |
bcdd17ad07f0d4e89bce089a13a84f4ede876b0e865ccbf1ac1286c6690e6fec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp311-cp311-win32.whl
| Download URL | ujson-5.5.0-cp311-cp311-win32.whl |
|---|---|
| Size | 34.6 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
e0b36257dc90194784531c3b922d8d31fb2b4d8e5adfd27aff4eee7174176365
|
|
BLAKE2b-256 checksum How to use checksums |
d3b3657a7b4d42f5c7cb51b6734a12b09588ad3e81c42059c0c5c72bdc0af0d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
| Download URL | ujson-5.5.0-cp311-cp311-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 591.0 kB |
| Tags | CPython 3.11 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
977bf5be704a88d46bf5b228df8b44521b1f3119d741062191608b3a6a38f224
|
|
BLAKE2b-256 checksum How to use checksums |
d96ee576c7c2f8d5ab5062f81b5f5436af1ff500e4bd578432f97a5a798a08f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-musllinux_1_1_i686.whl
| Download URL | ujson-5.5.0-cp311-cp311-musllinux_1_1_i686.whl |
|---|---|
| Size | 649.1 kB |
| Tags | CPython 3.11 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
880c84ce59f49776cf120f77e7ca04877c97c6887917078dbc369eb47004d7cf
|
|
BLAKE2b-256 checksum How to use checksums |
1a423c7dce4341d3995cf339248068073cb34c99670228b8fc5aaf8574885d47
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
| Download URL | ujson-5.5.0-cp311-cp311-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 578.6 kB |
| Tags | CPython 3.11 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
d93940664a5ccfd79f72dcb939b0c31a3479889f14f0eb95ec52976f8c0cae7d
|
|
BLAKE2b-256 checksum How to use checksums |
f10666ad7240f3c4efa10b32891244ebb2610a01cd815eaf725f1d87115d1214
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 46.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
d5bea13c73f36c4346808df3fa806596163a7962b6d28001ca2a391cab856089
|
|
BLAKE2b-256 checksum How to use checksums |
614f57f46d7c22b0f9e7b133d1acbc39c89d5d95d6ab7235250551a2e644178b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 45.4 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
9cdc46859024501c20ab74ad542cdf2f08b94b5ce384f2f569483fa3ed926d04
|
|
BLAKE2b-256 checksum How to use checksums |
51d2b188e44e6a1915fdeee81938586d0188bed3347d8060345c0a350a8da8ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 55.4 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
3f3f4240d99d55eb97cb012e9adf401f5ed9cd827af0341ac44603832202b0d2
|
|
BLAKE2b-256 checksum How to use checksums |
9bc6a9d911f8b4d2c503b7406421307699775ededbada77594ac2a8705bf43a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | ujson-5.5.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 45.1 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9585892091ae86045135d6a6129a644142d6a51b23e1428bb5de6d10bc0ce0c7
|
|
BLAKE2b-256 checksum How to use checksums |
f616821b04b006f3e1d1ce44397a99a13190693e5677457f8d60278780fcccb9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 48.4 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
278aa9d7cb56435c96d19f5d702e026bcf69f824e24b41e9b52706abd3565837
|
|
BLAKE2b-256 checksum How to use checksums |
5083e9e90cfe0885007e8b0aaaf80a1fc9c415927b3509cf3afe83fbd3c2ce90
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp310-cp310-win_amd64.whl
| Download URL | ujson-5.5.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
765d46f3d5e7a1d48075035e2d1a9164f683e3fccde834ca04602e6c588835bc
|
|
BLAKE2b-256 checksum How to use checksums |
6cbe3727d198931c24ed71dd6d46592daff00164bc1416394bb772e6cb22d5f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp310-cp310-win32.whl
| Download URL | ujson-5.5.0-cp310-cp310-win32.whl |
|---|---|
| Size | 34.6 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
33cd9084fefc74cbacf88c92fd260b61211e00bcde38d640c369e5dc34a2b4e1
|
|
BLAKE2b-256 checksum How to use checksums |
09c94297a0294d323b4be58c4ca70884082db081be5a9ab3ee2e9a2cb8df1b30
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
| Download URL | ujson-5.5.0-cp310-cp310-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 591.0 kB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
6b9812638d7aa8ecda2e8e1513fb4da999249603bffab7439a5f8f0bb362b0db
|
|
BLAKE2b-256 checksum How to use checksums |
b4304ca0411535b405f9a11a8860368c890e7f52a7df689b2ac2cd17c966178b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-musllinux_1_1_i686.whl
| Download URL | ujson-5.5.0-cp310-cp310-musllinux_1_1_i686.whl |
|---|---|
| Size | 649.0 kB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
7a09d203983104918c62f2eef9406f24c355511f9217967df23e70fa7f5b54ff
|
|
BLAKE2b-256 checksum How to use checksums |
ca1f7bef09a38ee73f4908cff9c8ce26799b972a475a264e1c8c74a29a062e2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
| Download URL | ujson-5.5.0-cp310-cp310-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 578.6 kB |
| Tags | CPython 3.10 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
60a4b481978ea2aad8fe8af1ecc271624d01b3cf4b09e9b643dd2fe19c07634c
|
|
BLAKE2b-256 checksum How to use checksums |
a2c27303ff5646dec30b273db2867af54f1d9407a3995f6e689746cb9e38af71
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 46.0 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
f5179088ef6487c475604b7898731a6ddeeada7702cfb2162155b016703a8475
|
|
BLAKE2b-256 checksum How to use checksums |
05cf4e666848824b1f8541654ef26a6db0e397f3f5dad61b823dfdad0d5581d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 45.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
6019e3480d933d3698f2ecb4b46d64bfadd64e718f04fac36e681f3254b49a93
|
|
BLAKE2b-256 checksum How to use checksums |
a2d96da0faa3b5cc083d95171a2ff9ef5311f9e380495471790ba902a27a94de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 55.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
c04ae27e076d81a3839047d8eed57c1e17e361640616fd520d752375e3ba8f0c
|
|
BLAKE2b-256 checksum How to use checksums |
068bafbe9476a149a4a95ba5a728a9dbc806a1209e4d43fa77ad87b41dd900e4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | ujson-5.5.0-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 45.1 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1dc2f46c31ef22b0aaa28cd71be897bea271e700636658d573df9c43c49ebbd0
|
|
BLAKE2b-256 checksum How to use checksums |
219f5bdbd5d7da94f577cee930e2e68ff776b88d8750c01cc4925416da7d3ef4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 48.4 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
ff4928dc1e9704b567171c16787238201fdbf023665573c12c02146fe1e02eec
|
|
BLAKE2b-256 checksum How to use checksums |
c2f35c35af5f09f23d36b541cd3b6c1bf897581c814c6e4e301b4cd8c8a5918e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp39-cp39-win_amd64.whl
| Download URL | ujson-5.5.0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a655f7b755cfc5c07f2116b6dcf0ba148c89adef9a6d40c1b0f1fada878c4345
|
|
BLAKE2b-256 checksum How to use checksums |
d54ccb5e487fcc558f468e45dfef97fc043aade6b6a82575c68f6936589e699e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp39-cp39-win32.whl
| Download URL | ujson-5.5.0-cp39-cp39-win32.whl |
|---|---|
| Size | 34.6 kB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3fe1aea596f9539fc20cd9e52f098c842afc090168824fd4ca9744fe13151a03
|
|
BLAKE2b-256 checksum How to use checksums |
e26d4d292218e87e2506806cb876525ea09a2cb853df6b153d21f250b37ea696
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
| Download URL | ujson-5.5.0-cp39-cp39-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 591.1 kB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
8141f654432cf75144d6103bfac2286b8adf23467201590b173a74535d6be22d
|
|
BLAKE2b-256 checksum How to use checksums |
e6557b57ab91b30ddd3b416787802fdbfc998aef1193161c05440dd6c0807885
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-musllinux_1_1_i686.whl
| Download URL | ujson-5.5.0-cp39-cp39-musllinux_1_1_i686.whl |
|---|---|
| Size | 649.1 kB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
6f83be8257b2f2dd6dea5ee62cd28db90584da7a7af1fba77a2102fc7943638a
|
|
BLAKE2b-256 checksum How to use checksums |
5579a3159113498f8c6963a49dba44c04511138de66a10fb39b104f269fd4b0c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
| Download URL | ujson-5.5.0-cp39-cp39-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 578.5 kB |
| Tags | CPython 3.9 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
7c20cc83b0df47129ec6ed8a47fa7dcfc309c5bad029464004162738502568bb
|
|
BLAKE2b-256 checksum How to use checksums |
96d6989666a0db829fb6c7740458e13269514a43fc0d8b7ef3b09a2e284181fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 46.1 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
bf416a93e1331820c77e3429df26946dbd4fe105e9b487cd2d1b7298b75784a8
|
|
BLAKE2b-256 checksum How to use checksums |
73588b80631f93bdf2ed9e29714a98a2f4049cea5d4f3497e694da1325e20056
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 45.4 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
849f2ff40264152f25589cb48ddb4a43d14db811f841ec73989bfc0c8c4853fa
|
|
BLAKE2b-256 checksum How to use checksums |
7bb38c5ebf1d449fa7e3a16b5fc8e0d5ef757ae2cd96d761951470133f00eec4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 55.5 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
593a0f6fb0e186c5ba65465ed6f6215a30d1efa898c25e74de1c8577a1bff6d0
|
|
BLAKE2b-256 checksum How to use checksums |
6ae6d8d8a598deca71a0f7b1445b01c04d5756a5fbdcc8b23c987e8449ae9df7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | ujson-5.5.0-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 45.1 kB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
703fd69d9cb21d6ec2086789df9be2cf8140a76ff127050c24007ea8940dcd3b
|
|
BLAKE2b-256 checksum How to use checksums |
2418844fa5d6668900a6fb2cfcc1bd38a6b2cd0b75783943b4e422a8c867ba1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 48.4 kB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
e1135264bcd40965cd35b0869e36952f54825024befdc7a923df9a7d83cfd800
|
|
BLAKE2b-256 checksum How to use checksums |
cd35d121c224f0b38aa6234bce0d09f8fa22ed8cef8bf33c6659cc50b919b617
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp38-cp38-win_amd64.whl
| Download URL | ujson-5.5.0-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e510d288e613d6927796dfb728e13e4530fc83b9ccac5888a21f7860486eab21
|
|
BLAKE2b-256 checksum How to use checksums |
2991fd14b40ed7db2370d5742d22da6c8f2a65736735a3b715af45eb9323eaaa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp38-cp38-win32.whl
| Download URL | ujson-5.5.0-cp38-cp38-win32.whl |
|---|---|
| Size | 34.6 kB |
| Tags | CPython 3.8 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1cef44ea4973344baed3d50a5da4a8843de3a6af7dea7fadf0a594e53ce5892f
|
|
BLAKE2b-256 checksum How to use checksums |
2fea6dad52e7e611c6381449536ed58da479846d1bab055717da46147e0c2c0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
| Download URL | ujson-5.5.0-cp38-cp38-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 591.1 kB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
701e81e047f5c0cffd4ac828efca68b0bd270c616654966a051e9a5f836b385e
|
|
BLAKE2b-256 checksum How to use checksums |
11c60cdbc458df922521f95396a0fed3d60bbfaddc35ae19bda595c001d6c369
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-musllinux_1_1_i686.whl
| Download URL | ujson-5.5.0-cp38-cp38-musllinux_1_1_i686.whl |
|---|---|
| Size | 649.1 kB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
5a9b1320d8363a42d857fae8065a2174d38217cdd58cd8dc4f48d54e0591271e
|
|
BLAKE2b-256 checksum How to use checksums |
444c8b7619c9bc60685467b4c40522a2d716e6aab681b90feee9050b6cdf5cfb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-musllinux_1_1_aarch64.whl
| Download URL | ujson-5.5.0-cp38-cp38-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 578.6 kB |
| Tags | CPython 3.8 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
21678d7e068707e4d54bdfeb8c250ebc548b51e499aed778b22112ca31a79669
|
|
BLAKE2b-256 checksum How to use checksums |
31d0b66fa5b4201d3f6ea94062456451e9494eea34450948ef5e657778c8f62f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 46.1 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
a7d12f2d2df195c8c4e49d2cdbad640353a856c62ca2c624d8b47aa33b65a2a2
|
|
BLAKE2b-256 checksum How to use checksums |
0aacdb3e3b1938729234d2c02ae0111922e5c79af4ddc41bde39f7b4bd2f8aba
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 45.4 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
5035bb997d163f346c22abcec75190e7e756a5349e7c708bd3d5fd7066a9a854
|
|
BLAKE2b-256 checksum How to use checksums |
15823e5fe7c7b67de55b0710417bbdbe9434a725c4b3e557808c245812e047f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 55.5 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
1a485117f97312bef45f5d79d2ff97eff4da503b8a04f3691f59d31141686459
|
|
BLAKE2b-256 checksum How to use checksums |
005755b155552c462beb62b8f7ee584740296dd928189a9a948950c4118ad63b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | ujson-5.5.0-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 45.1 kB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
10095160dbe6bba8059ad6677a01da251431f4c68041bf796dcac0956b34f8f7
|
|
BLAKE2b-256 checksum How to use checksums |
80bc1b1ed9ff02ef0db06c7ec38d9ac10d905d2d158904c6361277e96bec114d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 48.4 kB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
2e506ecf89b6b9d304362ccef770831ec242a52c89dab1b4aabf1ab0eb1d5ed6
|
|
BLAKE2b-256 checksum How to use checksums |
3cd88968c150ae7b666579d50ad63b0bba41bef0e20abcd37b56319893d82161
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp37-cp37m-win_amd64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 38.0 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
59cdcd934385f36e8bd76aedc234371cc75c848d95bdce804ac8aa8744cfeffa
|
|
BLAKE2b-256 checksum How to use checksums |
6081151c3a72200321a949a7df0d319d7e4e851f9639f250eebc9f200c7807c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp37-cp37m-win32.whl
| Download URL | ujson-5.5.0-cp37-cp37m-win32.whl |
|---|---|
| Size | 34.4 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3b74467564814fbce322427a5664e6bcc7dae6dbc8acbef76300fe43ca4072ab
|
|
BLAKE2b-256 checksum How to use checksums |
ccc2de74760ac23e32df8663dd5218137fd5e3f1e78fb52ca906494d014ee559
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / ujson-5.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 590.9 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
94874584b733a18b310b0e954d53168e62cd4a0fd9db85b1903f0902a7eb33e8
|
|
BLAKE2b-256 checksum How to use checksums |
edcca26d48f5a303d30649d8ac9043aa49c33e1564424a36667877e4b10f9613
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-musllinux_1_1_i686.whl
| Download URL | ujson-5.5.0-cp37-cp37m-musllinux_1_1_i686.whl |
|---|---|
| Size | 649.0 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
6c7ae6e0778ab9610f5e80e0595957d101ab8de18c32a8c053a19943ef4831d0
|
|
BLAKE2b-256 checksum How to use checksums |
4d10fd298c4268d60f4672982bf46e2086feefefac88eaf50ef997d024a02511
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 578.5 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
0762a4fdf86e01f3f8d8b6b7158d01fdd870799ff3f402b676e358fcd879e7eb
|
|
BLAKE2b-256 checksum How to use checksums |
960528adc35fbc7d17ff0c6a64b1c8dc570a8fc51a70507db0bc3fa94542b079
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 45.9 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
7d7cfac2547c93389fa303fc0c0eb6698825564e8389c41c9b60009c746207b6
|
|
BLAKE2b-256 checksum How to use checksums |
64f6d5a0b4fba60451649abac5347945d7b8f7cc6eb2c0dc3e89f83764256513
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 45.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
5fd797a4837ba10671954e7c09010cec7aca67e09d193f4920a16beea5f66f65
|
|
BLAKE2b-256 checksum How to use checksums |
514ea788ac6f74e77d933d21470171e9b356036387da4aa608731ec5b0411117
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ujson-5.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 55.4 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f4875cafc9a6482c04c7df52a725d1c41beb74913c0ff4ec8f189f1954a2afe9
|
|
BLAKE2b-256 checksum How to use checksums |
e0ef42fd75348bec379019ff032219266f974358356c627fa1bfecb6b2cb4565
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|
Release files / ujson-5.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | ujson-5.5.0-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 48.2 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f26544bc10c83a2ff9aa2e093500c1b473f327faae31fb468d591e5823333376
|
|
BLAKE2b-256 checksum How to use checksums |
5765e6d07fcbc05a54ef78243d656ea909a43da80cf7d499fd10b7f04f2adcd5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|