Skip to main content

Simple, fast, extensible JSON encoder/decoder for Python

Project description

simplejson is a simple, fast, complete, correct and extensible JSON <http://json.org> encoder and decoder for Python 3.8+ with legacy support for Python 2.7. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost.

The latest documentation for simplejson can be read online here: https://simplejson.readthedocs.io/

simplejson is the externally maintained development version of the json library included with Python (since 2.6). This version is tested with Python 3.14 (including free-threaded builds) and maintains backwards compatibility with Python 3.8+. A legacy Python 2.7 wheel is also published.

The encoder can be specialized to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). This is best done with the default kwarg to dumps.

The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). It can also be specialized to post-process JSON objects with the object_hook or object_pairs_hook kwargs. This is particularly useful for implementing protocols such as JSON-RPC that have a richer type system than JSON itself.

For those of you that have legacy systems to maintain, there is a very old fork of simplejson in the python2.2 branch that supports Python 2.2. This is based on a very old version of simplejson, is not maintained, and should only be used as a last resort.

RawJSON

RawJSON allows embedding pre-encoded JSON strings into output without re-encoding them.

This can be useful in advanced cases where JSON content is already serialized and re-encoding would be unnecessary.

Example usage:

from simplejson import dumps, RawJSON

payload = {
    "status": "ok",
    "data": RawJSON('{"a": 1, "b": 2}')
}

print(dumps(payload))
# Output: {"status": "ok", "data": {"a": 1, "b": 2}}

Caveat: RawJSON should be used with care. It bypasses normal serialization and validation, and is not recommended for general use unless the embedded JSON content is fully trusted.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

simplejson-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (181.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simplejson-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (186.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

simplejson-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (178.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplejson-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (189.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

simplejson-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.2 kB view details)

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

simplejson-4.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (184.0 kB view details)

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

simplejson-4.0.0-cp312-cp312-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplejson-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl (89.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simplejson-4.0.0-cp312-cp312-macosx_10_13_universal2.whl (110.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

simplejson-4.0.0-cp311-cp311-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.11Windows x86-64

simplejson-4.0.0-cp311-cp311-win32.whl (87.9 kB view details)

Uploaded CPython 3.11Windows x86

simplejson-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (173.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simplejson-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (178.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

simplejson-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (170.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplejson-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (182.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

simplejson-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (172.4 kB view details)

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

simplejson-4.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (174.9 kB view details)

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

simplejson-4.0.0-cp311-cp311-macosx_11_0_arm64.whl (89.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simplejson-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl (89.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simplejson-4.0.0-cp311-cp311-macosx_10_9_universal2.whl (109.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

simplejson-4.0.0-cp310-cp310-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.10Windows x86-64

simplejson-4.0.0-cp310-cp310-win32.whl (88.0 kB view details)

Uploaded CPython 3.10Windows x86

simplejson-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simplejson-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (170.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

simplejson-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (163.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplejson-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (173.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

simplejson-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.9 kB view details)

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

simplejson-4.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (165.5 kB view details)

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

simplejson-4.0.0-cp310-cp310-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simplejson-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simplejson-4.0.0-cp310-cp310-macosx_10_9_universal2.whl (110.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

simplejson-4.0.0-cp27-cp27mu-manylinux2010_x86_64.whl (158.0 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

simplejson-4.0.0-cp27-cp27mu-manylinux1_x86_64.whl (158.0 kB view details)

Uploaded CPython 2.7mu

simplejson-4.0.0-cp27-cp27m-manylinux2010_x86_64.whl (156.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

simplejson-4.0.0-cp27-cp27m-manylinux1_x86_64.whl (156.5 kB view details)

Uploaded CPython 2.7m

File details

Details for the file simplejson-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90f103b2782ffb28828577d75f91cd6be7a6a5fb923753fd5be47500ebf06244
MD5 342d8696435fbf7d950ee68adcdeb5d6
BLAKE2b-256 2b4ba9db28f6e48cd28b82f8db054e3b420ae6e0358115f9269336892fe2b576

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 feabd1a6a45c9e6f72b3fdfdb1b1fc90f89f95ef1cf00e38dfdec80aa29bbea0
MD5 9001b3eef3e845dbf7416d758bfe5648
BLAKE2b-256 3135efd8526409fdeece24eef58a661b94b986668a3aa574528f61b9fade8a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8985428511c21b2b148c7e2cdf39f8c441fbb833f28231d93c5f9f02739cce30
MD5 278dd57566d4c06e79d917bf8d4ffee2
BLAKE2b-256 25b910d32426964e1a55c43b999a6e6cfedb7f8a5a475a4b5c4e8ab48a0ad870

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d9b034d63d097ff658134e1cf392f93c5b9de068ac9dacac761e5a4dc7d1a7a0
MD5 f28b260031ab34142aff05fb7724e872
BLAKE2b-256 3b93959214ec5cf3d7b5288e3ca5dbb02da3405ec9da7b0b1f3bcc418579c48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 752b5936832130a3522358cdfbbbf43e1b03e08c518ae9d0784e9d495e9146e0
MD5 4aed122257a8c340494b3c320becb018
BLAKE2b-256 7f67da1cf7bc6cac906dc96fcebc10e67007e44934b87e63d1dde0ee32a2bee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bc283ec7e90a4981901f29aea892409c2793ebf2f40d0e52b65833866f01078b
MD5 08e06fb2420aab7e41547b440fc0f0b1
BLAKE2b-256 eab7574bc1e563a57199024f4285b71f25a35a73109cab4dabe7b3c3e16aa1b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b9d637c6309213134009d341470f704b873fac1d864a834f2e0234a6d5ea67b
MD5 1197712a15391951c89e6db83110bd7c
BLAKE2b-256 d51bd3d0e743102bda48d4e56b4f89cd2167e65f6709fa742181a4d1ca03fc50

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1c76ad790978ade6681b541ae6c08b7e67fdb42afbe6f190f6249b941165b99
MD5 11d2038a6dc2cd25965e395529d0e725
BLAKE2b-256 c6fd3ca6a2cfb82eb94e24839362b646d61193fbed7a968cf6edfd3b219441bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a1df4396b2e91f1341c59d74745f4487ef283a40664cf4d41b0f3224fcedb44b
MD5 a0a6014b792a6a2a3f8a6fda1302fbba
BLAKE2b-256 9db95f3ba2c372c82213e0414ca2de73bf4e8fcd5300fa493980df12df62f2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83c13de82ae196c6250af95e898300b79e8ac4d81a32c0918530d6f1905aa218
MD5 c51e6e0b4ea73176a140f61c7f4391d5
BLAKE2b-256 23c234533a4f22f447f800709ef3f04f5fdd3a7418ef3cd038b36e678c9f2e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-win_amd64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: simplejson-4.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 87.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e09a8894d7a74f88ceb896a6776ac2b8564be85ce8641eee54a115d82932e93c
MD5 1354d97f7951827bed2393fe103c1eed
BLAKE2b-256 ee8955b8b360b880ff860eca05266b28352bca0684daf2389d342ca9a3948586

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-win32.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eaf534e2c5436a20f37224e730674597519261c3bb2ba0f5f60ac5c20697246
MD5 973abf5493be00e49b53c24eb6103ea8
BLAKE2b-256 0dd11dd7e7df22b537ab70d84fcfd1aa13ae20ef57f521c82b5379dc518e2a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c6174e3d98fc081f0ec810392d3140b8b8a7158e751ef9518237adbdf34edcf8
MD5 87e9bff64265e9a635e87fb2244b96e6
BLAKE2b-256 c1145794540aa669df02153a7af5da9b90e5b9b9dd670b99d59254f45efe0b54

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03fce7a33ef707dd272f4eef120d76db7fcb029aad480181c6478dda9c6f8937
MD5 300c378eeab0bea108f4830e93e00ad5
BLAKE2b-256 07cd0a1e7790ae4839b9421b3e2e2e6d7b864eaa2e03ac5bb189324fa4785f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bf34b959a8326e93ec6652fb8126458b84ad5f32940cfc4c7be5cfeb196837ce
MD5 ac873af634eec55634cb8204c775febc
BLAKE2b-256 b6832606b446beddd767579eaf5a915f43450c57e149e34bc58cddd116ecc016

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73781d0393a00fc8cc820da9016a3ee9297c23bcbf0c6dff470e508db53b6c58
MD5 ae4529b132b908d34e0cbd3775507130
BLAKE2b-256 1e87ba488e54cb8653ab8b328c6c15c170da6735c926d5cc5fe12de03041a8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bd894e2d36f250bf7eba553e32840947c400c6dac43e2e726f276e92d157936d
MD5 9fabb7a42beaeff50097e2381d653927
BLAKE2b-256 d58110c4d9dba518f1fdb1cfde78660c12615134c46cd1f7014947f703244dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0166383d28901691a6d12533295bccdf9ac850c129dffac489216139050d9934
MD5 572b06e9c25e4eed1fdffec215bef08f
BLAKE2b-256 4096360f29e7c8f0de11bde878f08d4fc064190b67e03f74b6d7604bd0c22a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86885efbb6ddbab9aa6b73a5520ed331c3b442757bfc917cee49fc27f5e4b291
MD5 cccb660ad266bf030cc333dff362cd1f
BLAKE2b-256 e6ed954e4a32803cbce0bdcc76c4310f7c0386722895eb91d9560c0d84a3456b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 718b82b5b3efc76c5c178441f96c67e59261fd80cb4c327a02e8b68ee3fc66be
MD5 1f95a823cf49e684e3cfc2133ba46867
BLAKE2b-256 bccd0fbfa6dff885f6d20c786d951c9ff9d29f5c8705d895df6b3b3e107af22d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 90.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f753f68ccb03bdc3801f916f36cf66ef3e44fcce079062d2eb529102b835ca0
MD5 e8bd5d6f939fec409b13e281300d3efd
BLAKE2b-256 9670dbb22f64bb5f9765eecc9e56859e906888f024091a0e97ee2d039622a57f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-win_amd64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: simplejson-4.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 88.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61f4b8e2905d6b7ad424076e88468e483af7aa3e0384b19aaa1aa47e9074c354
MD5 1240e6e53723d985f5d91019fac66582
BLAKE2b-256 75d776dfe1dc4956ad92b389de43eb9a591b863216fa26597944b281bca9ae58

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-win32.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25b9572bc7888bec8a713ee752c801146da28758dfe35ece6b6c2db4e29e90a9
MD5 79aaa291dd93f3ba686e2200631bf890
BLAKE2b-256 24f4ea9d5d3bb58f9d2af76dbcbcbb6ab8dbe1e5b6445a28697879336213ac3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 73ff020c49f647256ca10a54cc60a17fcff04e5cbf75e4e15360cebcc7ab19a8
MD5 ffb1f8b03b2ae3704d1bf1702bbd4490
BLAKE2b-256 9a602253a620f0f3af989671ac0229c565c63667c0f949816658213251cdf94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afa4d46e839c0f795198caf511d2ed2412db2fbefdbbe5435601183279e9e715
MD5 14af03e67be10d7a7bed2f0f2a43f8bd
BLAKE2b-256 5a5d33c4d443d70997567be51e6f8102b2bd6bf3adb42ddb848f815f613dde3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e8f13b0ab40431c5b218010efdb39591ef920918be52e7ff6d461790d9eac0d
MD5 c199e6ff39a6a970042a3af8d9b0b3d5
BLAKE2b-256 927f4588df4e95676cb4c50247d8a76da4f14d22a940c77b563e597431045c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22dc7045bab4c258a30d66055dce156f616b076683b8424c953d97af1ea335ec
MD5 2b39c7e45996f1b49a9aeb8ec645e64e
BLAKE2b-256 9d962c17869ed4295802722b73aaa2af7a7d8e6ca1f0ea12bb556284d30979bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 60b416ccd99bd5d069dbd3a50384074f0f53e41a174e341dea48ce77d98971e6
MD5 d295ab0ea69beb183996f40c84d02f6a
BLAKE2b-256 e657d45a0c3b08f11ad2d1d928b0d1426881939111a36ce082c067e4cceb01ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef24d633e5a014e08088bc2c3fa7b7e4b902fb49f7f3a99ef60f3f6956a5fcea
MD5 aa2784e679e7e74f44aa890309ecfaec
BLAKE2b-256 5dd0665575176d61163586cff3ac3bc14184a715f4801e308038c1054da4548c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b003ba22ccb80c941ea7555cf60bf228b4d5b71e406f231dd61cab020f2f79d
MD5 31c003eebba4f15d72fcd0479f2b3e48
BLAKE2b-256 2f6ff6f48f2a498b8ade17b5e962699fe83aba0f531d2202a4d7c9f5df46e566

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b755164d2391d1fa9542ff6aeaa1db7ea13f1847b28c05be5af3cdb1d554a639
MD5 0ab12b87cc228fa9a445069102860961
BLAKE2b-256 ef6531727eb655b93f92ad840384109888ad9535efafad0d49047fa4c23030d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 31ff9d93ca8e21a4bb2e6559e8e9fab158cf7609fb3027df46e9e12d41da35ec
MD5 ffbd5ff3bed79bad1e6a88d9df331edc
BLAKE2b-256 cfc4b19c985c7f576dae855a7e9f37b6a9231b4ff520a5c2021c34ae539b0bf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp27-cp27mu-manylinux2010_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3deed2e31655d4f57b2da2235e1c232d36077d5ce83ba87010713d43bb034189
MD5 36daf230137c94240ad054344554fbcd
BLAKE2b-256 db36e71ea98277d093bcf9de929784b8a0b382d10a74451de46ba78eead132f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp27-cp27mu-manylinux1_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a27cc3bf97a1cf7e17e0c38070c3b3eb2c3f66aedf92d1a935f8ab744081b8b
MD5 03f072fb0c9c5baff1199bcdae19fbdf
BLAKE2b-256 075e4f88435160bf682517575d64d07ea899ef904fde0bffd57674eeb2015811

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp27-cp27m-manylinux2010_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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

File details

Details for the file simplejson-4.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7aa097f598ccd4edb6b6615b4b0f5fe6cad29b13ce3de30b95d9e3921575c8ed
MD5 a243a82f7537f89505f8a5cab8a353e2
BLAKE2b-256 6da5ba590ef52ca9bf18b3f5155851f5e0595fbab1a817bcae9aa3861ec95745

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.0-cp27-cp27m-manylinux1_x86_64.whl:

Publisher: build-and-deploy.yml on simplejson/simplejson

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