Skip to main content

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.

Download files

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

Source Distribution

simplejson-4.1.2.tar.gz (121.6 kB view details)

Uploaded Source

Built Distributions

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

simplejson-4.1.2-py3-none-any.whl (71.1 kB view details)

Uploaded Python 3

simplejson-4.1.2-cp314-cp314t-win_amd64.whl (94.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

simplejson-4.1.2-cp314-cp314t-win32.whl (91.7 kB view details)

Uploaded CPython 3.14tWindows x86

simplejson-4.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (215.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (219.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (214.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (223.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

simplejson-4.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.7 kB view details)

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

simplejson-4.1.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (218.7 kB view details)

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

simplejson-4.1.2-cp314-cp314t-macosx_11_0_arm64.whl (93.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

simplejson-4.1.2-cp314-cp314t-macosx_10_15_x86_64.whl (94.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

simplejson-4.1.2-cp314-cp314t-macosx_10_15_universal2.whl (116.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

simplejson-4.1.2-cp314-cp314-win_amd64.whl (92.6 kB view details)

Uploaded CPython 3.14Windows x86-64

simplejson-4.1.2-cp314-cp314-win32.whl (90.3 kB view details)

Uploaded CPython 3.14Windows x86

simplejson-4.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (185.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp314-cp314-musllinux_1_2_ppc64le.whl (189.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (181.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (193.5 kB view details)

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

simplejson-4.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (185.3 kB view details)

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

simplejson-4.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (188.6 kB view details)

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

simplejson-4.1.2-cp314-cp314-macosx_11_0_arm64.whl (92.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplejson-4.1.2-cp314-cp314-macosx_10_15_x86_64.whl (92.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

simplejson-4.1.2-cp314-cp314-macosx_10_15_universal2.whl (112.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

simplejson-4.1.2-cp313-cp313-win_amd64.whl (92.3 kB view details)

Uploaded CPython 3.13Windows x86-64

simplejson-4.1.2-cp313-cp313-win32.whl (90.4 kB view details)

Uploaded CPython 3.13Windows x86

simplejson-4.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (193.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl (198.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (189.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (201.4 kB view details)

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

simplejson-4.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (193.8 kB view details)

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

simplejson-4.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (196.9 kB view details)

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

simplejson-4.1.2-cp313-cp313-macosx_11_0_arm64.whl (93.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplejson-4.1.2-cp313-cp313-macosx_10_13_x86_64.whl (93.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simplejson-4.1.2-cp313-cp313-macosx_10_13_universal2.whl (115.8 kB view details)

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

simplejson-4.1.2-cp312-cp312-win_amd64.whl (92.0 kB view details)

Uploaded CPython 3.12Windows x86-64

simplejson-4.1.2-cp312-cp312-win32.whl (90.2 kB view details)

Uploaded CPython 3.12Windows x86

simplejson-4.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (191.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl (196.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (188.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (199.8 kB view details)

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

simplejson-4.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (192.0 kB view details)

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

simplejson-4.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (194.6 kB view details)

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

simplejson-4.1.2-cp312-cp312-macosx_11_0_arm64.whl (93.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplejson-4.1.2-cp312-cp312-macosx_10_13_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simplejson-4.1.2-cp312-cp312-macosx_10_13_universal2.whl (115.0 kB view details)

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

simplejson-4.1.2-cp311-cp311-win_amd64.whl (91.7 kB view details)

Uploaded CPython 3.11Windows x86-64

simplejson-4.1.2-cp311-cp311-win32.whl (90.0 kB view details)

Uploaded CPython 3.11Windows x86

simplejson-4.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (185.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl (192.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (183.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (194.6 kB view details)

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

simplejson-4.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (185.4 kB view details)

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

simplejson-4.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (187.2 kB view details)

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

simplejson-4.1.2-cp311-cp311-macosx_11_0_arm64.whl (92.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simplejson-4.1.2-cp311-cp311-macosx_10_9_x86_64.whl (92.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simplejson-4.1.2-cp311-cp311-macosx_10_9_universal2.whl (114.1 kB view details)

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

simplejson-4.1.2-cp310-cp310-win_amd64.whl (91.5 kB view details)

Uploaded CPython 3.10Windows x86-64

simplejson-4.1.2-cp310-cp310-win32.whl (89.9 kB view details)

Uploaded CPython 3.10Windows x86

simplejson-4.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (174.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl (182.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (172.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (184.3 kB view details)

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

simplejson-4.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (174.6 kB view details)

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

simplejson-4.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (175.8 kB view details)

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

simplejson-4.1.2-cp310-cp310-macosx_11_0_arm64.whl (93.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simplejson-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simplejson-4.1.2-cp310-cp310-macosx_10_9_universal2.whl (114.4 kB view details)

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

simplejson-4.1.2-cp39-cp39-win_amd64.whl (91.5 kB view details)

Uploaded CPython 3.9Windows x86-64

simplejson-4.1.2-cp39-cp39-win32.whl (89.9 kB view details)

Uploaded CPython 3.9Windows x86

simplejson-4.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl (182.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (172.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (184.1 kB view details)

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

simplejson-4.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (173.9 kB view details)

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

simplejson-4.1.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (175.5 kB view details)

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

simplejson-4.1.2-cp39-cp39-macosx_11_0_arm64.whl (93.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

simplejson-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

simplejson-4.1.2-cp39-cp39-macosx_10_9_universal2.whl (114.6 kB view details)

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

simplejson-4.1.2-cp38-cp38-win_amd64.whl (91.6 kB view details)

Uploaded CPython 3.8Windows x86-64

simplejson-4.1.2-cp38-cp38-win32.whl (89.8 kB view details)

Uploaded CPython 3.8Windows x86

simplejson-4.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (171.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

simplejson-4.1.2-cp38-cp38-musllinux_1_2_ppc64le.whl (181.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

simplejson-4.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (169.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

simplejson-4.1.2-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (184.3 kB view details)

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

simplejson-4.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (172.0 kB view details)

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

simplejson-4.1.2-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (173.0 kB view details)

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

simplejson-4.1.2-cp38-cp38-macosx_11_0_arm64.whl (92.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

simplejson-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

simplejson-4.1.2-cp38-cp38-macosx_10_9_universal2.whl (113.0 kB view details)

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

simplejson-4.1.2-cp27-cp27mu-manylinux2010_x86_64.whl (163.8 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

simplejson-4.1.2-cp27-cp27mu-manylinux1_x86_64.whl (163.8 kB view details)

Uploaded CPython 2.7mu

simplejson-4.1.2-cp27-cp27m-win_amd64.whl (93.6 kB view details)

Uploaded CPython 2.7mWindows x86-64

simplejson-4.1.2-cp27-cp27m-win32.whl (91.0 kB view details)

Uploaded CPython 2.7mWindows x86

simplejson-4.1.2-cp27-cp27m-manylinux2010_x86_64.whl (162.3 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

simplejson-4.1.2-cp27-cp27m-manylinux1_x86_64.whl (162.3 kB view details)

Uploaded CPython 2.7m

File details

Details for the file simplejson-4.1.2.tar.gz.

File metadata

  • Download URL: simplejson-4.1.2.tar.gz
  • Upload date:
  • Size: 121.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2.tar.gz
Algorithm Hash digest
SHA256 6ae4186f90362e9c03c80a1cd5062a20f3a11ac9d391f7ee0ef0701a0e2b7394
MD5 ceb8e049dc1d531998d321f6c1bc4e08
BLAKE2b-256 f1e31cc7dbf4deebc16e9dc42db37f473b5b612d021eb10e69974be308425171

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2.tar.gz:

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.1.2-py3-none-any.whl.

File metadata

  • Download URL: simplejson-4.1.2-py3-none-any.whl
  • Upload date:
  • Size: 71.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 93f95f6769f37f4c3763666950b23bf9b9230b60bf1d718845e92db2ebcbf32d
MD5 6fa1423e17db82da923c487ecefc6c08
BLAKE2b-256 95e27f47df8fbd3d9c35902b76c242e21759a27d6e8c030c901c4f0ad93dd10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-py3-none-any.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.1.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e933a481b825bac33fb274de49e1574f805f48442198e06b1f2c3b4cbde40350
MD5 b34cc73e89fb7ac067d87076b30000d7
BLAKE2b-256 dab26911f3b7d82f641b7050190cc64dbae6dcc1148bb02f7212b26f6119f0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 14a6a1fd97aeb7ebc54773bd0d195b480e946b9a915ebd163671744a387abee6
MD5 e71ee3e587cd96151668cdf3a4a72bd1
BLAKE2b-256 fc53016a4132161e1ac0b75385c1f61dbd96c0dff57ad2bb09e6e1653cfd7513

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d284ea3976a73054151e7906fc1b4fff25d589970532b6209ed7aeda9079747b
MD5 aa7ee5299dc9a426341ebdb55e761487
BLAKE2b-256 c2cf01e88370229d92f1e8b2bc660cb53b3c3b5068fe76768021a331c9f276f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a2f883839314597ace1f48fda2e8f4bf1018674d3842823f54b027690b15e41
MD5 7bfcab60d8fd72e3a850268e1a5b6909
BLAKE2b-256 33abf39ffeb873375d3a733e886ca7c3e03131721e3e814edcd020cdfd339ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 601184707588eec8e04e16c534be5a4794aeac9a5163600e077c85c255a1f9b3
MD5 06e59fdf411f41bcfb3558ac988b3c37
BLAKE2b-256 5fcb5498d477c0131abf29349102c372307119c1b111d7992a8c899f8de03899

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4134f1afadf815295d5d38f50f2b64e1758ce053b552526b44f74c5a34bf9bab
MD5 9e8041c537e8976aae2d8f929b13de7d
BLAKE2b-256 4cd86ca3a747348465a80c1dcf50f8265477806981253677331a2b217b414f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15ffd144c44be1f5ba2a9bc5641ea7af925b75e240adffb79ced67f35f58b4dd
MD5 564870af9196d72221c82ce54efa8a62
BLAKE2b-256 d34b419a05e7aa24650a28c572a421ae71e3a40f5e10375efa2ce96db80cb358

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 119733522f1f5d50a4262820ec587753a368cce0231aae02b958bb47e705bc13
MD5 a8800e78ed4475b5f8a077fd95693c19
BLAKE2b-256 53cd292be366a353aa16c7e77a2b37b83bfa24e4bbca9fbf9914475375eaf2b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcc4c6b0ba1f0515cbab539b5b7c1b38f3671999b390f8056cd71ac05895d901
MD5 0858e3f6f99a4102cca3ab2b1eea6296
BLAKE2b-256 3ffef82ff72f373f3cd9078819525940fefb35b36b0f4581e602a78952c84531

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-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.1.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2081a5f1a1e2645d4b2db48e49b54862f60bc31387e71549c1d4679caacaf694
MD5 10e927a03c8b6848464f9b1cb6b250d0
BLAKE2b-256 3cb31bec2de25e21864d9920bf00427f965da74052e84088b924c12c92a1b1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-macosx_10_15_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.1.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 92e85afa383ac2f6a80ac0d9dc6ccf9e92bc19d24451c41d290e83bab5534ccb
MD5 a3312a7d7e529ef5eb2f138b78589aa3
BLAKE2b-256 6bf115e52fe9168510d78315439ad5d0f737e8c9f920cad251c989acac4ef263

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314t-macosx_10_15_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.1.2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a52db90cc4175bf7aaa36bf7b8c1ff92403349d2d999794ad3f75b175c627ff1
MD5 1f112ab855248b92e7e6d977ea9752fe
BLAKE2b-256 d0814ed61f6cfa01e8d43ca242d04a6155091a7f19566f095715ed38a2dcfb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 432cc50cc23ce980ec60d3cbf8f35383653fec9b4c952e24cded2f638a48f48e
MD5 ea800ca2aaa39bab07dfe84376052fa3
BLAKE2b-256 99709519355cebd5916aabd8d1397a626c9c2e97f47edc4827d3b0859d9903dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7273dd5d56430549d5bea9176923891f765ddcc421a1a05c74c6ff5397edaa38
MD5 1011bf6845ed7d858e05c46c2b56c26a
BLAKE2b-256 d5b91ece5f5ea9c72eaf98ec06c3f73971c868971b4f8d0d266758e7d95dc95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c8135ff667bd1c131964795196e2428a9db4befeb074133b314847675d6ca367
MD5 93ade781faeb36fb8c333e0e597e0038
BLAKE2b-256 2a87dd6b9713ddd91fbdf6f78cf87fe6ff11c3216d01795db6206ee77fb86a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87dd15ed478dc1dea9e5ee3e564bd49ff9f9ecab854a1ae896d66b8667387b28
MD5 8eabb6437568692ea264efa8e5fbf93f
BLAKE2b-256 735d8270e305880188acbe83324c7f8d9a913cdfeec180bef845948113c96496

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 205e28d0506e72cedf5b8bad4a946779db236d1fe4d43f2481a3361737ed573b
MD5 a50d73ccfae5b87788522174908bf5fc
BLAKE2b-256 980b2f60218ce135fad65dafd9998272c7fd029eb7195645c439395027a872a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c0bd55cc396b7dc1df43b19a9df8d85684fd84dc196fad674c1f4c4887279d0
MD5 eb0c84d58dd2a1e414da0fcaebe7f136
BLAKE2b-256 2a9843eb3ed7edbb07afcb861fc24dfcfc52b0e83373236420dd59ba1dc9aacf

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d350798258029864b27bca50b4ce7ee138faf8f07be21d2192b7088da9c38074
MD5 0097284c4d6abb3dbab4652ec4288b98
BLAKE2b-256 8b952eddb2053b9ca497bbd07c663e54bb6e13747b1ff6c3f3c79a86b19ddd6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a48a827277963a557ad844c845fa8992356d1afd6edba76cd32fe056cbf8df2b
MD5 7c60540634cf79aedf756be2e49b2a67
BLAKE2b-256 4c0b05e95a9a673adeeece7d368fd7ff305cfa00599d482a9ba23667af73ddf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-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.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37c0293cd6b04ab0e2c2bb8bcbe5c3c7c2cd3bd487bbd95c043237a7db4d4e9c
MD5 1473c1dedc472bbe49fe3ec7379f194a
BLAKE2b-256 05aca9f131ae07efa8fd7b17961bdcdd5b6a00b0b49480cf66e379fe06459614

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-macosx_10_15_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.1.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d999597ff19143130d2e52f363e5e7791703a87be3df9219fbec6eb54958d4d1
MD5 1ab660f9af48f35dee22030615d89adb
BLAKE2b-256 0aa03a0934c2b465cb8bbd6fad7e9ca32cfd70f1a0ffd204e0e5db9704fa1fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp314-cp314-macosx_10_15_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.1.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f76148abeeb476ac0e129433c9734df9391f5373c8529c3d0b628de14b859fa3
MD5 3cb4401a004b3563a4bc02ba282ef679
BLAKE2b-256 a87a7d285a780569195d4bab5f44b6691823497d36a2f34c95e3c31507b12b5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 28d0e567e74865139d2576dc135e22bc509dbd64f3cab72e5ceed7b2d198bd89
MD5 8f916b5c28118d38c3f12ad20366613d
BLAKE2b-256 b5f6a1e71e0d30704f3b6f520b086a2786ebc4c8e65142862c318c0f2d20ec74

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29fd672ee98241e1f0f6008a2d0a5664ab3d92fb0c454124c18c3b119362beca
MD5 88baeaa58e6413f051fff6697cd65dba
BLAKE2b-256 f4fefc0b116a4239b8f312030e238eefd0738b27b0b7efb59cea631e1c5eb755

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c13623bab64ead9f5f246a0a232dcb8be6152fbb9b500b757808cc37c4a025e
MD5 4050d13afd4c20e9b3fc41a2f05f6cf7
BLAKE2b-256 f2c9096bdddeb6809ac1e32b63c682fe6851a135fe35e7dc44d10d1e1cc439e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cc740929b41e32c63a22b56b1f1e55174fbcb062a2bc9872c4dc02dc48e5bc9
MD5 66355c33bbe1773df85cfa32e61c2d3c
BLAKE2b-256 f5227c6a2599a83e1db980235a16c5195c6c3bf4a0d3b95c7088cff747042d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e20baa381e4c6e9c0b2767794504f40193caac93bdd03116571379490499325
MD5 e64228434438d760bcdec17ba63b96ca
BLAKE2b-256 561ad4e0b631616a118359811b7f1c2245f5995c41c0a97921d0e224f20a62ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df5da14ae3daafe11c13861a39e7f57a92c2b5fd7b4b06601e82f7f941d53f07
MD5 ec3ed5be45899601b4dc8c1033eb6f0d
BLAKE2b-256 8b49cccd27be83408a6736e31056ff5a8e1631b55f09555a1c99c0013425d1ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f17a3c875f0fd6600739ee9bba4137a5138f8fc9524c69be4db8c659e0f703b0
MD5 6c0952ab9eb275a27bfb0b09386a0d3f
BLAKE2b-256 56a04ad5d81a2adf7ee437a57c6bd2b676c476457aa85c2fcd1b03bc3577ac35

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01554fea464ecb8a3a9a7053de4670c87e18590836398a30a535124bc4453480
MD5 9cef5b1c0d270c2c10be8245743d8ab2
BLAKE2b-256 c151cad8715b85c1a822c790b557ecbdcc03f170ea03c5ff23d61d2efe4de364

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 760864258e2ecf64c9de6e91756b69fe9821b3cc7a1a4326ef99902306a83816
MD5 c4cf84c229d8b5d21a398e881ab243bb
BLAKE2b-256 fdf9372afb2500e6e4b52899861f3d477a2fac63af4c3e9aa64039d9a62aba18

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b99859df62436dff54d597fa26a251c00a0b8227277a6c018faa64cbd76e3a8c
MD5 6834bdb4c650135c2056df0d64847c07
BLAKE2b-256 45149603f47a6da152a1e3c66748484546ea337f380951f9f971fd9bac6f4d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp313-cp313-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.1.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5eb414922b5ef7ca6ef5a3e3c82b036f4408f9d15aea9dd8c5de798d000929e0
MD5 32e5335c922807cf5058b3db984c4d62
BLAKE2b-256 da2d3049dc3da55289d3d82e148fd95a6cbfa04bd31db49ef11325e0b681c0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp312-cp312-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.1.2-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6e7a978f030beb0f9f710e906c59ed7b0e43e7ba20cbc1a1e67021de24e34b12
MD5 f9abb61e8da3f2f0a5fdacc8ef1e136e
BLAKE2b-256 80cf932a5d3ad0877d34381b3319b69fab8b9839173b47eaea5b6cf08033d16e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp312-cp312-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.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 438aa043f693af285aaeea2ce72fa4a45b96d1532a1431d937577083fe13254d
MD5 7da607c61be07861e31fb3bc3b717296
BLAKE2b-256 1b4753185d6bfa624dec5a9d1b10d4a9ca46b29124bc5695a1f33715a66606a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3b8d4ff4cd6e8cdab666431169378820cb4570fa06cb74d3f0cc165aa5434b62
MD5 184a985ccac716b45acae6cabe54d9c1
BLAKE2b-256 30007876a15fbecac1d4653ce2af0b446fa1308af8d6f3f802e2e7019698b46d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0247d71cd72dbd4f1b9dc3db9a1e333b74cbb35ee4f9287230de97de4cc03eb6
MD5 ee4be9d72fbd6cdff08663a3a3a4319e
BLAKE2b-256 497731a91f9e237591802d72d9ff9922c4c88f94eef34ade81d6e36769d70ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd305a4699fc949ba6089ddfd17f582ce7c4a5d85e5601c44b42e35ebf521174
MD5 93a6a6741d574019f443657f69b88cce
BLAKE2b-256 4ec475efe79679235b74ed3ff9ef91421bf4d57ca9e7ffa84543975f3fd833af

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2156497f031d5c0051a335216f7ff5441746a93fbab5932e47105da7ef24ab9
MD5 040fa3c37ae9152dfce3b2447313aa43
BLAKE2b-256 e73d39e7253427dd4c2ec38596b944e3d3a53926cab7b3c2d28c43ef1a34d6d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a769bce267ef4091b7ef380bcad1c474f4e66bfcfecb571e996215dcdd24df70
MD5 ecb62856e43856852696aee61213ff8f
BLAKE2b-256 8df969d2be0cbcdc1bd6052998b7d22cb3e7c80c9d6a371eb345cf079401fe41

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78a0ff56305feec5217639247dba9174d20d4fa6538885a29b9910aad44fd92d
MD5 c42afe340db29824f9d843647ac0c309
BLAKE2b-256 d570ff9cce6cdd7b2271ccf25e700a38986fa8ccf601fba405db28150414a7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 630160f22edb2b13e05e0fe13dd80c2a064374f212696d3ee472f9ee13ebf4ac
MD5 da9671f213c28bb2b4d7bde7dd8310ba
BLAKE2b-256 ecdd1ca3b57840863954e1d402287f8481c88f4e84bdc1cd27f6a0f3a7097b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3733bf9afd79291eb0744b5b01041356df1b1bc25175a72519eb548751b61aeb
MD5 b30d93a5d8c459595965083e7830b6ed
BLAKE2b-256 b746cd6f49506d633f5207c868c9373db594d4636b0fd69a2ce3dea53a1a05ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c79ab4ac91e62b9ccb1269366f3aa51bc2985c2e71dd344541ef2f8c291f001f
MD5 beb0e9709d24b07244669ce0dced1f68
BLAKE2b-256 6d935009ff024b798311b3478588dc833f4eb5efce0ed22c0158f4398953b415

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d792ac0ad6cfc763339895fa08aa5b8512dd262161c9fb90138a0ba814236fe4
MD5 a8a6fefb6f2cf418d6b18eecb7bba0a2
BLAKE2b-256 7665f57086a2b505c002f12be455dfc349d91ed5865df73a9bcc2c7f4c2239d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63bc3adb552480c890b9ff8fc119e8997b414a8cb68b888761f5dfefafd2bf8
MD5 1b6d74b2826f9061bf4bacf2f0287b89
BLAKE2b-256 20dcad9aa843de7f9cb74a924f79a6d53986b3351206b792ccf27d6a4a92b745

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d7426d083647d034debf499094637f63257b72b9899c81aa8196444ee69580c
MD5 c7b92f105ed8f60ebb40741e9e1c2355
BLAKE2b-256 58dd3253f207f0d7ce5fe4b78d76c70e1e9433c4fc94f40044ac4105ed6c6301

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5589cd313b201cb915d796b6f9ad372b2285672a6bc9e9833bf23011297b38f6
MD5 04120cf84ade40b67d9010690a242f0a
BLAKE2b-256 350ceced473e9bdd47c741dcdfc1e309d243be970a9bf432d3f2e274f66f111d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0be6cf935487b8d0bc97c528c89d0432f22e33ca1e1d4fea666d50d36b5afe4f
MD5 e0f62e548c1c35fbef25c60732e8fd7a
BLAKE2b-256 9fdedc931f8621a3a6f58f3582e345f1a9e620f3d622f110be2a39e3343a488f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c9850876ecf19c044d1f048fcb176997c0eb47ec9a9ba85d32d995fcf797168
MD5 ed1849146d442d3966021eff4e095dcc
BLAKE2b-256 5276b3fe036455beda5e0ed0dd84dba674deb2c7b60f977b711394e5913250d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ddbdfe504c8ab09443856544fb744dc881701b0289da68e3e6904ec1745ff4a6
MD5 a823c6ea3dfd7cca8cbe507ae407fd48
BLAKE2b-256 3d578473951699049947b25c64e02f5897e37a4598a269a217d25e44bc35c571

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbc4f989e44d6153b5097357d260336d8021c21b3ae9d8954c9daf55788bfc16
MD5 c7ff5f96ab7f28edf0682f3c3861e848
BLAKE2b-256 64b682c2322d80345113a16451ecd7f2f487c380de0dbcfdbdefee7b99095cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a83dd08a7cbe770e9d14be2dbedde77890477cc44e804582ef69cbd8a1c834b2
MD5 7f9ffdcc110558f9a797ca8d7e240889
BLAKE2b-256 2c67dff3c64269e352dbec781f1920c4422816a675d1953b62d18c100ddf4931

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8842cae188daf4f7ab93cca85156bf57a1f5fe24379b9e20040da7d3a829ba64
MD5 9abf663955bad0f5a4f39018809519b5
BLAKE2b-256 0fe94d6181137f23088baa8abdc2a6e01a4eb872865532265cc4fae23f7dc193

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b60497514538df1eff7e0da8db1b48a220faedce5d33bd364fd2574115958502
MD5 34119e0997008db59b8f70c04a0691fd
BLAKE2b-256 30f96a8afbb137e2cdc79eb3f1b65226070c0eee5526376196388022b266742d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a372e803f741ba3884cba8b37208da2daba8155cbe244c1db83cedd73f26fa6f
MD5 3d8187d6773aa25c86b28864ec061b29
BLAKE2b-256 026a8546173dc4dadeb261b86fc71eb72e2863263c8a680d191b63e81505f2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2162d7f5e2e9dc48c08af14d91481b9ffbb8d8420d7d1539209fa7f0ba8823f
MD5 a2f5ad674bbe4cf6a1bf27bb966c952c
BLAKE2b-256 ad9d2b91d17c91638987dfe54bf3d2257370b235b66c1fe2fdb84e10767ac159

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 81c1746fcf232faec2b5b7160f8e249bb5826234286f861b7aa8e80faa0d98c4
MD5 3d97bcf1eb2a4fc2c22fa21ff0939681
BLAKE2b-256 0be743a5331fa3918b239621a8258993e3ad5217861b345c6464ecf0a84076be

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f155b6b58725890f9a9d915b9e7108eaf7080542ab5fd8e31e9a5908ecf2c7d
MD5 58f40f25faf092d67548edcf1a8a4d1f
BLAKE2b-256 1e5bfa612786782b09373339ed89f1e80b0d667fdbb372534f0250bbceae1db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 53b56770b5893d91b24f6ba985eb5bade5908971f62cb7f8e1ed50a9314601b2
MD5 3a7aa4e8ff84ec52f5c8ef1842275c27
BLAKE2b-256 8985268d7abe6feb708c6ceb6651d28e8120d7d9ffb409e7aeb1f3acbe514e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99a76da628af68a90c906e5c0dc7da784eb1ceff7e631aa7c43745b3e6d426a7
MD5 1509c3f217e8ffbbe5ff0cdf31d9af14
BLAKE2b-256 57bfbd3582de3eeadd0f7d2864f37a91389f34e19d66391e9ef94bcf028be844

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eaf2652770fc3415498cb7446bdb399624cc685df868d58e09d6722b63e937f3
MD5 98df1e517ad4160af48b3546ef1f7652
BLAKE2b-256 8f3daa0c2337b17aeee27c24dc512f88db6093ffbe224d7107d6ef0d1a3f35da

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0b62163144dbc0dfc78df632a64ada3ce2e0760b65ead0f42e7d9c69be6f16f
MD5 73231c65ab6320fbab463e5ddb3d4f61
BLAKE2b-256 bf505a6059682c6980d5f2b039aaa643d4d9e7272fc18eacfc7be30d922d20ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c41397ba7c5d0a4ce2f058e8ebb0bf80703b0ba1cd1df9616399c35dd1a7df37
MD5 a32ba7fc2d21b172b7bdf232c1066d24
BLAKE2b-256 d724a0d405be16e7cbac5d1dab9b7f40a5c8dd681b546811047a8f102e53e125

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 95569ac177885494967c1445a0fcc220eaa1ae53b71e852eb0d8689b683ca6d0
MD5 712e0eef23f2e4dc32fd2af6932755f3
BLAKE2b-256 d93abf9ab4db6f3c5e689acf5e3665fd1100413aa85604fd88bef879b2869b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 91.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5f9e8e0c23b362db62ddf26f7adce70feedd10e4e4cda87c5d3c9f42f424c337
MD5 dfa3f68a5aa671bac114d2baedd3b20f
BLAKE2b-256 e9c9483b0e7dda7cbf40deaff4839b7f61cef77e818f676cad76abf1d4432191

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 89.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 544c3a309ed21fc351509d3b118b1847fa3bdff56f8f372d726e7a8adfaa2625
MD5 3a93fcdd09242cac54f5831b36c43979
BLAKE2b-256 a55947e478e5e6e666773009859c39caf8e3c6511957b9cd24f0bc2555f18d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ba518c07ac042215e74e975fc8864cf78f14dfab9fe651f211ef368b59d6667
MD5 451672de8327ee06a9fe46b69a84af17
BLAKE2b-256 f5a368b3f1eefebf56385f213be0f430c3ec087c212b6ca029ef2504ebab4657

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12957b48771b92dc07ddb25863f0311797dd48fc9b55eeeca54ec3097d0dd8e8
MD5 c288fca39de81e191cdd60b37dea9ecc
BLAKE2b-256 cf3fcf3a6981f71ee1c7fb1c033cff76fe802f94b974a32fb5e15240d0e32920

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7aadf8120850af3e048b68346f83e19725dfec0173c1b845921fcab05e942da
MD5 9e53dd310978e5a9bd389a744abf36c6
BLAKE2b-256 e936d9857649cd60655635364aa242bb87df027e42883f21e2f17792a499b431

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6e444928168a87867708b9c2c88a0a69adc1d83d6fbf3277577afe11ca8d881c
MD5 af31278b8815f634e10da0b1c354ac70
BLAKE2b-256 ecd150e1604064ed5050a038b9125acf21cbc33760248a3bddcbeaffdd7e1d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5480c663d8276db574c3c74e07b21ceb2857e7776a63753179e8036d93884d45
MD5 79353d456626f53af351470eaf37c1b8
BLAKE2b-256 0414d1537fb83f327c43ded44ce4a2b28634809c904c84a0158712460fc8c799

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 385dbd36a624faae40c965d640836fac8a79aa5ecdd5d5e46e26067cff151ecf
MD5 21460a595ec9b9eba4ac754eed26605c
BLAKE2b-256 d1d7830f11e0e08909fe8e08bc5ab9e643d4096e47a10387b41859f325ed1b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1112c640c17cbce4362e4d44007224603ccdbd2a9c86d452284ad7a82628eafa
MD5 ab79963bdd99999c9cf923897ab164c5
BLAKE2b-256 5a5feb82da4864fa47cc729ab216669d3446fcde1b23f8e966a836caa0f619af

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba83530bbb5ac1a60f8256b0870572ed240c84fa3f825a631ea8bf8b6540ff5b
MD5 ac89bb1c6bbe3f8ef8a7e8ae9230c5a5
BLAKE2b-256 f608a9cf29bbab46084bc0336a41b192233e1e65736acaa8e28d79e69ed9db19

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4cce74b83e0f3832add7e2e7df5e5bab54a5b238d74c3c0ba074e3596eaf7147
MD5 5229ce2ae981da8915e002066fbd3607
BLAKE2b-256 2808ac9be9aeb0dde4df1592f1df2283fbde79dd71542e575148abfee5039bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp39-cp39-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.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d064a5fbef0afa7cc1ea78ec4b6f4dbf654e1e09226918bc82a2cd5d84565ed8
MD5 4c289d3f920fee8e16d91262a660e692
BLAKE2b-256 4d0d08cf540a82af754d545064bba1e9e3b527d9e1f02d54c8daafcb70e9d6df

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 89.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6c1d8d492049af479c1232953c9938d23380af36ff57ead88c3bb16d7d22c927
MD5 9acfc0e98f96dfd01407fff182d35768
BLAKE2b-256 fde01024ed21600aba1ed304d827774691a2ec45b0322b0ec5fc6424c4e2713d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 995ced25d121a06a8ad67da62aff1385ead173f2053049c45fce008683a848cc
MD5 5329fb45620f1050a136a464ad5be220
BLAKE2b-256 c9d0a686f3acdb5803db67cb4732eaa6aa5c014a0980159391d3b63a3f7da816

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cceaf50ec4c3b3ee4f61d5a42b7fee4ce90ce628b8b942804eb8760ce11e1674
MD5 4ede43a1c5793738f530163603d333ff
BLAKE2b-256 9b3519d5ec299447ffd2b90d7198cff56230659b3f00ec54f2753fa257797bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 201fe42d042f40e30414864b140c349a988ef280bb9bc012064e02920e544d8b
MD5 81e7b58b40a2fbd29677d834edabb32f
BLAKE2b-256 76354f3f46beffa4a084824289486e10e5e50ef2635b72dc0f8cb3d78a2bf4cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f75cf75d0fe5c570a8522341857bce3193deb01ce48671133838be0adac528a5
MD5 3ceae67f55a0ccc5361ad4eff99722ff
BLAKE2b-256 68362164dc176e0220ce46bc89e84925cf908a75439795d281d066eb9afd24ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea597ba3f7bf546b392f1bc19aab5d6aebdbf6987361e63388d7b76e7d53936d
MD5 4eaf5a58d8434e64708856de0f9c4001
BLAKE2b-256 2b199864cf9ddd2b673676f9ac32408bd00c922980ec760378aba1122247495d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 91f1c155adcd7b6c44f4ad452adae9f6d640d5e886ef6361c933df0e2513b40e
MD5 5c3fcd2cca8fbf464a3aec8cecccee99
BLAKE2b-256 7e9121806f453bd4df1e7494fe2e382fa3dc569517a145a76068f9ee76b0214d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c820ecf680a1fbb6b9a8890d8157e4d14d8862b0789e1513d5354625a974267
MD5 33077a4338b8a9be0db722564fdd9a92
BLAKE2b-256 bef339c84fac4678aaf56ac76c2fde3f08cd94ffe27e2ff1d73daa2422ab0a7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f9fab61cd752fd314d1d623452e2f5663a22ae0100d9c5a2b2dce25a0d067ce
MD5 3e057905663c243a43c7100241238ae3
BLAKE2b-256 0ce2dd1054654fa513bbf1e83bb21ce3a5cf20d6771b46f25ba27a215f3fa301

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 24f8780169ad3c709b9ad6bf484998b684188348502d6f61f1dd09206ec48418
MD5 a46963be3d1a7f6a749a43c9b294df33
BLAKE2b-256 037263d03c76c28bf7ad37f7cff633d8afa33b234767d86d770c0283498ca4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp38-cp38-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.1.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 162bae3797fc0bb10acce3f00fad022f625cd4714f4da1b950608a169799cb1e
MD5 aa450cfcb6ae93093932c761d67ea0d3
BLAKE2b-256 023d157bc878e1a3c36b8d9cfaab2c8e62f13204aeb9739ff3ceea0cc4a765e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cf0aae6fd669a74987f63a8eda1147876903c85cb9dd8f8488e2ea98b03e661b
MD5 012d685a3ceb369599a127cc51102671
BLAKE2b-256 a45409d94ba970fb23ad260a0af2c9fc079111a16170b307260d2f00e45a8f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 93.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ecbe7de137f6fe0a68fe6b6270a76d294cb87c8afa93629877d68c000e0988f0
MD5 2540fda9f7ab0eded3d8e9b23af9117b
BLAKE2b-256 d03c02e9e57f0f703797b2f36da007ec1fd18981e7f4b995d7ecc22131932c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp27-cp27m-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.1.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: simplejson-4.1.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 91.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for simplejson-4.1.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7ffd78bca509eeedea395423084aa70446c72548507d52ee45bbefc5f5e1cda7
MD5 2089acac52fb059df2af269e6744aeef
BLAKE2b-256 f4cc788d95ca903785afd7c623ce8b6dbcdde2d71b436e03cd7d71f1d17707bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-cp27-cp27m-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.1.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e7e1f3bb0b5d15b46fcc5cc7c1bebef4f018d94dbca90a4f7dad51b481847f9
MD5 8b065a614da84d3acfd39d97cab00cc3
BLAKE2b-256 927f17a331c019b0fc8443148760bd90a5535af60d1617b243730cfc19336a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.2-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.1.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejson-4.1.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 daccb7f792a8741e1119fdb350c8301df85697943607f26e478c9c039f625687
MD5 03c6d93544cc04a06db1a9f24fda0716
BLAKE2b-256 3b62f126c5886919c9a1b9cf6803cd9855b137fdfeca32b101cba3fe3661bc83

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

4.1.2 This release

96 files

4.1.1

96 files

4.1.0

94 files

4.0.1

94 files

4.0.0

35 files

3.20.2

110 files

3.20.1

110 files

3.19.3

110 files

3.19.2

98 files

3.19.1

85 files

3.18.4

85 files

3.18.3

73 files

3.18.2

73 files

3.18.1

72 files

3.18.0

61 files

3.17.6

61 files

3.17.5

46 files

3.17.4

46 files

3.17.3

38 files

3.17.2

45 files

3.17.0

28 files

3.16.0

21 files

3.15.0

21 files

3.14.0

21 files

3.13.2

21 files

3.13.0

10 files

3.12.0

7 files

3.11.1

17 files

3.10.0

19 files

3.9.0

17 files

3.8.2

19 files

3.8.1

1 file

3.8.0

1 file

3.7.3

1 file

3.7.2

1 file

3.7.1

1 file

3.7.0

1 file

3.6.5

1 file

3.6.4

1 file

3.6.3

1 file

3.6.2

1 file

3.6.1

1 file

3.6.0

1 file

3.5.3

1 file

3.5.2

1 file

3.5.1

1 file

3.5.0

1 file

3.4.1

1 file

3.4.0

1 file

3.3.3

1 file

3.3.2

1 file

3.3.1

1 file

3.3.0

1 file

3.2.0

1 file

3.1.3

1 file

3.1.2

1 file

3.1.0

1 file

3.0.9

1 file

3.0.8

1 file

3.0.7

1 file

3.0.6

1 file

3.0.5

1 file

3.0.4

1 file

3.0.3

1 file

3.0.0

1 file

2.6.2

1 file

2.6.1

1 file

2.6.0

1 file

2.5.2

1 file

2.5.1

1 file

2.5.0

1 file

2.4.0

1 file

2.3.3

1 file

2.3.2

1 file

2.3.1

1 file

2.3.0

1 file

2.2.1

1 file

2.2.0

1 file

2.1.6

1 file

2.1.5

1 file

2.1.4

1 file

2.1.3

1 file

2.1.2

1 file

2.1.1

3 files

2.1.0

2 files

2.1.0rc3

2.0.9

2 files

2.0.8

3 files

2.0.7

3 files

2.0.6

3 files

2.0.5

2 files

2.0.4

1 file

2.0.3

1 file

2.0.2

1 file

2.0.1

1 file

2.0.0

1 file

1.9.3

1 file

1.9.2

1 file

1.9.1

1 file

1.9

1 file

1.8.1

1 file

1.8

1 file

1.7.5

1 file

1.7.4

1 file

1.7.3

2 files

1.7.2

2 files

1.7.1

5 files

1.7

8 files

1.6

2 files

1.5

2 files

1.4

2 files

1.3

2 files

1.1

3 files

Supported by

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