Skip to main content

Simple, fast, extensible JSON encoder/decoder for Python

Project description

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

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

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

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

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

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

RawJSON

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

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

Example usage:

from simplejson import dumps, RawJSON

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

simplejson-4.0.1.tar.gz (116.0 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.0.1-py3-none-any.whl (69.2 kB view details)

Uploaded Python 3

simplejson-4.0.1-cp314-cp314t-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

simplejson-4.0.1-cp314-cp314t-win32.whl (90.6 kB view details)

Uploaded CPython 3.14tWindows x86

simplejson-4.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (204.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

simplejson-4.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (209.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

simplejson-4.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (204.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplejson-4.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (213.4 kB view details)

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

simplejson-4.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.8 kB view details)

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

simplejson-4.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (208.2 kB view details)

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

simplejson-4.0.1-cp314-cp314t-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

simplejson-4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

simplejson-4.0.1-cp314-cp314t-macosx_10_15_universal2.whl (112.0 kB view details)

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

simplejson-4.0.1-cp314-cp314-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.14Windows x86-64

simplejson-4.0.1-cp314-cp314-win32.whl (88.0 kB view details)

Uploaded CPython 3.14Windows x86

simplejson-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (176.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simplejson-4.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (180.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

simplejson-4.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (172.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplejson-4.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (183.4 kB view details)

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

simplejson-4.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (175.1 kB view details)

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

simplejson-4.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (178.1 kB view details)

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

simplejson-4.0.1-cp314-cp314-macosx_11_0_arm64.whl (89.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplejson-4.0.1-cp314-cp314-macosx_10_15_x86_64.whl (88.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

simplejson-4.0.1-cp314-cp314-macosx_10_15_universal2.whl (108.2 kB view details)

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

simplejson-4.0.1-cp313-cp313-win_amd64.whl (90.3 kB view details)

Uploaded CPython 3.13Windows x86-64

simplejson-4.0.1-cp313-cp313-win32.whl (88.3 kB view details)

Uploaded CPython 3.13Windows x86

simplejson-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (183.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simplejson-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (188.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

simplejson-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (180.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplejson-4.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (191.9 kB view details)

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

simplejson-4.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (183.6 kB view details)

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

simplejson-4.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (186.2 kB view details)

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

simplejson-4.0.1-cp313-cp313-macosx_11_0_arm64.whl (90.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplejson-4.0.1-cp313-cp313-macosx_10_13_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simplejson-4.0.1-cp313-cp313-macosx_10_13_universal2.whl (111.0 kB view details)

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

simplejson-4.0.1-cp312-cp312-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.12Windows x86-64

simplejson-4.0.1-cp312-cp312-win32.whl (88.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

simplejson-4.0.1-cp39-cp39-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.9Windows x86-64

simplejson-4.0.1-cp39-cp39-win32.whl (88.0 kB view details)

Uploaded CPython 3.9Windows x86

simplejson-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

simplejson-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (170.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

simplejson-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (163.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simplejson-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (172.8 kB view details)

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

simplejson-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.6 kB view details)

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

simplejson-4.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (165.1 kB view details)

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

simplejson-4.0.1-cp39-cp39-macosx_11_0_arm64.whl (90.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

simplejson-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

simplejson-4.0.1-cp39-cp39-macosx_10_9_universal2.whl (110.2 kB view details)

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

simplejson-4.0.1-cp38-cp38-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.8Windows x86-64

simplejson-4.0.1-cp38-cp38-win32.whl (87.9 kB view details)

Uploaded CPython 3.8Windows x86

simplejson-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

simplejson-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl (171.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

simplejson-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (162.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

simplejson-4.0.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (174.7 kB view details)

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

simplejson-4.0.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (165.3 kB view details)

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

simplejson-4.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (165.7 kB view details)

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

simplejson-4.0.1-cp38-cp38-macosx_11_0_arm64.whl (89.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

simplejson-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl (88.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

simplejson-4.0.1-cp38-cp38-macosx_10_9_universal2.whl (108.6 kB view details)

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

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu

simplejson-4.0.1-cp27-cp27m-manylinux2010_x86_64.whl (156.5 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: simplejson-4.0.1.tar.gz
  • Upload date:
  • Size: 116.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1.tar.gz
Algorithm Hash digest
SHA256 bc13170567a5c856a0e6c16620c0b0388722f7d6382acd8007857624c3dedf3e
MD5 00e423204a8fb0df7fe68cf85ac2b5ad
BLAKE2b-256 1491b0e7a38d63706dde006d1213f9c394ad7702df841c019fb4cf0e3295c58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.1.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.0.1-py3-none-any.whl.

File metadata

  • Download URL: simplejson-4.0.1-py3-none-any.whl
  • Upload date:
  • Size: 69.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dfa6e9923c0ec2880738d09e5ce045741eb6cd4551e261dcd6c3625d26666075
MD5 7a1c84c58eef9fdc1be24bb23f6932dc
BLAKE2b-256 a92d93a5b862ac29f182a658eb3fc2c98fe28acbb5c05a9076402572c7eb6966

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d8c702e19fd99fd75f3371de70b5489dc9f659cd69ada0c72a2f6dce76bd624c
MD5 f898b36041c1fe88e228c5e10cc1bcc3
BLAKE2b-256 3d6b1858670f2b22fcdb26efe9255d9354377d3259e08ed26d0652c7a4bd5aa3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.0.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 90.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3e49d709a121d47acaf6932803407b6feee5d5fac5c7f2a370d7ba5b6fedaea3
MD5 e80f83faf1cffa8c324a94e6187d756b
BLAKE2b-256 0ba0fc26e8d67c2cf9bf4742f1d81c2d15067731be2f60972ad0b780d70e7460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54342df0f6a273436e6869ac372a077161877c826ddc66b861f31a59fabe2b98
MD5 b520e1437805ccf4025a819494992aec
BLAKE2b-256 a52722ef6035399b7c09e07cc7373d3c54a5261fb55554b7efbd0bc9aa360f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5ecc0ad5fdd14109f563510e448a2f937c1d8816e91b33ab5549408e72dda884
MD5 198e29a185012db7d091c9b4a64a7414
BLAKE2b-256 72b2b396ee3ded3fe2a0609b89b922b09ba9134c8da539c267bb2b356f3471a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f8d949c5d34afb3bf81d71879a288526f85cd31277f4a321e4b643f0c4f367d
MD5 276ed3261e3b65170bc06724cc34b9e1
BLAKE2b-256 92870b81b072d1fe185c4723ff1c76096e73b6e0019791804aad5f4946724620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0d98b8fdd7df1cec61de1f63ae7f111d761e2a3208049b5d24358aa29dc3044f
MD5 d464d6c4019e23881a8e6097907c72fa
BLAKE2b-256 a6c6bfdb1be8ef2d7db768237f97a7e420fe34146692ebfbc2ffd719c528ffb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7584d53ed708ad17984a591a542861e0712da285577cfbbcd82c956eb6b12233
MD5 3dd33648afe384b0257142e2d9924beb
BLAKE2b-256 7291abb6e9caf7f08d392f5c50e14f3a411b3e85597b59851bb8ca09829a7466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5425cdfc980972688f08f332ed1d480874b5114855e49a9a6607e220c494c1e6
MD5 323c16463ff8227445193dc0434b4fd2
BLAKE2b-256 9b93ba9ab9bd5aad9df588b39163e6e381d6a5e4d51b6f70320d81a84316690a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4166f23ace9b0cf28be7ed0f147c900baf4e579a57fe926ba54078b244eb2e7f
MD5 9b861f373c1d23eefc488a08aa780251
BLAKE2b-256 b3a4e14d784ddddefc039d651f932a1a43efe4814726de652a3f6cd569fbf0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6e744eacf669056ab19992f694e48149cccae9538e9014a4778749feae9978b
MD5 ac71ee820ea81e9654be0a2bfe0c7aea
BLAKE2b-256 3c1887698fd8c4e286b1f7154d7a5076f5e97fdc7582484ffcc199afb5ea62b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4dab04afe06dc2e83dce044cf53374d37019a5be14f815cb583456b02bcba46b
MD5 cd17661a2e46263a951830a87d2f45fa
BLAKE2b-256 cb76709e8f60385b2c4cb26ad291302594d4711562c8005eb8e36e74080e47be

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.0.1-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.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simplejson-4.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ae4bc39e64d24642c6e2f97a0d7f3c3f2262876e4d45fef439e0910b0b7433a
MD5 a8c9bb291eb969797df4bd04c1c91bb2
BLAKE2b-256 9b90678107cf70a5709066f0a3859e2d56018da9eef1cf97ae478c9a7435294b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cad8fe5e92def6080a31315b74947d956220cc6e7726878de797d233e1884bf6
MD5 ff0024563c07fc9baa54e12b2496b0d9
BLAKE2b-256 6398783ed8ddd0962e6e36c45dbc331fd35f42aa904829ba3757c1a3eee15b78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f64c2bffa2a4438c9b45aef53743271fcac4836dd6d15646b6865fd3c49dd2b0
MD5 ebd298aa77179402eb08b43454f77e15
BLAKE2b-256 365d748bed0e129846f727d37ac5739c562e1aa8aef4ba864e3bdf59eba530d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7962187dcb27c9abe3a5e04969b005f963d6f9bc05f77641126e4ee99aa6a5f
MD5 206facaef8691654d93ec5e3c0dceacc
BLAKE2b-256 98ffa7ba77ba7375aef15617c41383e6a301c3c8e3f789f0356037c149ffd9e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa3595f335868a3a421e089146fe53b0df19d9f7198748ce698d8d409c3c0786
MD5 525950f8c35f97b3f71494ea5a62841a
BLAKE2b-256 c43890c48b57694bc14dab99a77508b037597c44929323d7dc4764b2889b41a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8953fee0520010baae040cf8a5316f5b75794d6bd79364be3deb365821ff2cb0
MD5 8d9065960c17f5ba416853d6ded0aeed
BLAKE2b-256 02ab451bae4c4baf663349437ba5790f489a3956dd0b3d8ddcf25b087ea743f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 851cfde1b505289d8c60cc6057770fe0f0dd675065fdc0b8e916463dca3a9d63
MD5 d8179c4310e65aedf2bd33b45956a3bb
BLAKE2b-256 25195437e74f888f76a0c765e61057396a0932bfab104974d81752e63a5c6dd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4d02c0fb43f2f0f20de94043235fa433e1cae63c39e2f4af0f9d21882a8479be
MD5 14739126ed77e7bbba589fcff05788c4
BLAKE2b-256 561b9eb1901514f48cf8944fe7af8432f522aa1c80dd3a00eddfedefa62066bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5738da4af10c92631e89421d4665f0e92119b63b62085d8eb2d51304bc4273ee
MD5 c4378cd598b4605900a5d8877c77cdb4
BLAKE2b-256 42a29d56e5a028ff4d666f25609f42f2c88cbd155d5fb30b124fcb7cf6081b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb48e3e3f7a97780971d1649989b63c576f86ce91a59cc3400d80cd7964f1044
MD5 6a2b730393fa7eb7c96e4e9d4bc3b56b
BLAKE2b-256 3dca123e47cabb2307ad8959f3b3b6b181e96e83e261dc6033fb5b068cfea78f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 77af5d5f5fecd749786a38e6bd0e4bdd97f37e321ee6008a130dfe0aef7ec4e4
MD5 3682a41f23ca571006fa73afc3936752
BLAKE2b-256 c884103fbe8f7d1221737fc26b8932804a4f9393ab8e83633ed244a3b75c2617

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 90.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d2dc202a5e9d07e893c0bc1aa12b88bff98332c52b3ae184defe054d0e2ff35
MD5 d010bdd90e72056d34c64207dad969ab
BLAKE2b-256 4a18996ef6a0bd5b02bb9880901df01621b6c6de599360454a2ee2d06985076f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 91eb4b42ab0a2de89919ed3bfa960fca0b13af0816447c89123c6658c36fb0a1
MD5 6bd92bfcf5854c6ace906f4f37a3ff0f
BLAKE2b-256 0d268c09ba0fcf0b8c284a4f0f57605890c443b59cec070c6918baa7600976d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 072a481be83b8c3f9167d0463105e0ddfcf2e00a6289c2ad650c3b35920ce0c8
MD5 03b7f6728f9ff68188a7610ac17e82e3
BLAKE2b-256 17b4594be43d55ea5100334bc60013c3b310ecde4135b8288dd8183d21881966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dd525b897132493aa65eecd3c5ddc3602e25c625caafbcc958fc87a74a24a1c1
MD5 3ecad1af8c1fdbfe2a9623cbb04afb31
BLAKE2b-256 00b94a4042c8f24bb53ca03a2d5d794aeefa78965df1213239cf9fe895b40342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2b10899f200b675a8ab0e2abd4c4846d2631d90d226fc3079e8b16073aba31d
MD5 42cef37334696eef331f6fb536d49422
BLAKE2b-256 1be60650672c0b43b9add2c2e5f13f5b2d3770b23bc10688dfe4ea637ef1a4b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 534a7d90b86a97cf15ebe42d732c41223612d981d08f226025499177692a977d
MD5 b07ddcdda276bf8b75c7b9eeb220457b
BLAKE2b-256 1e27eb59ff58a78e57db4120e10bc6b7d6409f9c25180b912593c2cfe5637b5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25a6b3d15ab9c8247f7e0a280b2823eff08bd74e7605701c01d7cd54e80a86ed
MD5 c6ef64378864f9adda0043a2c6241b28
BLAKE2b-256 69ff5757f7eddea36d55593423c5da72cdb1ffd2ae7755d804da08f598cf277a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 24ca278f0ba7b3aff90ed1f873f5f4192ae1da97de72196b4be021f3b1d407a0
MD5 646a8a2ef07442a13d8bb5f7f9cd8b6c
BLAKE2b-256 4358da3da211a3b91ff0f8b9a3926e3b97b9224cbb94e4a67b998394c0e984a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58c125ee57f2a35081c46ca66d76ee3c109394f4aee0d981cb049c5ee5688e62
MD5 61397a6d9135386981937a6ad2f9e559
BLAKE2b-256 92aff457958ef90935e99e1bdf51c16b2a0448726a4db2881d472d22f0259290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2b0211da4be9fcbabe11ff9b65f7e06dd8205197b078fe7f1e9cc268cd0e369
MD5 a19deedd5e607bf474d10186728a1e7c
BLAKE2b-256 9a452c74fdb851af00c18ae11af978e7191972071e26ffe2f5aaccbd0a96e961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f934a918ef7a50698a481e18aa713d3075f94d1402a6d293f755d00118f8a975
MD5 14e6477b3bb596d902d0dd9d24c42649
BLAKE2b-256 ed94afe6285b3b39208473ab9056039cf20cac393d1a7942f644ecb7d424463b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2031d87911379c7a778e5f902eeffc161355c9137c695dd12dc219456e976e9
MD5 d68da0b774fbd928bea6a320531557d2
BLAKE2b-256 d17d1eebe8ef0682da987d637606aa2eaae0e211010a6fce21abd2c680cf65a6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cc962d5029509f2170ef40e5e7db4df87f71208a931aca6e8bdc0c76e1ff2b3a
MD5 cf89a20968824a88979704eade56d1cb
BLAKE2b-256 24ed6f13edaff9106e657aab61320e1adceccbd30f50afd877e99d0de292bc48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f057dd469501aff95bb438fc9593d0c2f353dba83f00c0a3db6447ad79f5728
MD5 cce693cedb6ea3d620354df0a49a28f2
BLAKE2b-256 78eed3dcfaf22d9eb620f8840390a655c22c858e9c2c75073883d7090e9ccf78

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c95f7c5c53c3e62bde8c452f41d6795f541e5dc951926275771ff7f2bbae0511
MD5 4202b8ee71297fc95e908c4e1483019f
BLAKE2b-256 7ef5b8259ecfad5b717199a9ed1c01c54dff0d858934e226dbb6013bfe4a4995

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5deb4b6c77a02c2e2267135c5afd0d4a9acd3c83c3f73674816d2377b475630
MD5 a3331934e5a97d824042b9e5398a5271
BLAKE2b-256 0829c157b85210df6e286f0f52f8683040d49e654ed51d30126f9eea0f669725

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 99f12a0d959d7103403e4774189b562f8b1e0529a41561248e2a3c25b6c80797
MD5 57695d6a287c320035f879d711839099
BLAKE2b-256 3d26809a1ed84241a96868fd3915aad173c7e983acb0f7896b7a895635ab1577

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95c6a6e1f66b6fda46fb9f44809911a90715f05f6df1c6d6db941a8ad2872c35
MD5 08e08c955252885ed2aa2b7ad878f537
BLAKE2b-256 e7e43f61fc83ca56256b581c2c55331ba4a51fc50e28d0153f40baebfeb9b90c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 905d03e5336b20c6d8ac2a648cb178259807836fb5c8a1ee091ca4601962ec47
MD5 17601043b13f5359f0b0bd4a8fbf11ea
BLAKE2b-256 12175135ac3005d2db660182117053d63b97d4ae841efbf77c02ad3aa8b36e3d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b34e268f1c7acb9d1bed942b376cd01c418cee9bf05a207ac962c6ce28d29a
MD5 5a47919686c8d375431e5cb25faf2572
BLAKE2b-256 8f48859d3d12a5f2d6acd1ef1ce75bdd8d25758d63d47223e66eccf3b02461e6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aef5610bbbdffc24820daba4f4c7dd1e52bf0f4e016e2860484b562bb964dde5
MD5 b066aa4619604d566ec5386059ad9415
BLAKE2b-256 a54177b6f4301566206998ba1911ec334cbe3c574fa5095f846ea99e50e81242

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5be5c2b2ea9e81528b3622f8fd486da04e80e983829f2e69a7acb94302792ef2
MD5 b31f77240864c7de0def886a243bca39
BLAKE2b-256 ca2103ec9b2cceff7966637bd7c96aa4f4df7d59edf4f481fcd76ada5d883f20

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6593307239ded14f9a528d633ff054f00ebc874ab3c5dea3c49f1988c9b5f06
MD5 20efda972825b0bb46adabac0770d147
BLAKE2b-256 d6d554e79dd81d3aac52779ddcf3df0205cedd6e2356f790f81c825fd943a61b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f322ac3cb80711e9fdd5c8e625a10db572e116b5e85e22dd302257c49f02953
MD5 2ab28523905b8751e13cbf4ce05db25a
BLAKE2b-256 ed8f47998fcf7b909a8c8adbb494a88bbaa0e10bf4a48ba1c087e187beb07fe8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71fe98c69b876dfde468e0a7e5fd045b5bc60567b30905c78e52a58c03a52946
MD5 32182f8c87a5968290f08cfb767dd2ac
BLAKE2b-256 7d60e83933422071b8712d1f7d3f720ce975d3988d489cf88c418478ddd7576a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3628583e322fb83ed1ba99d7f3fd2e3ee4879e17c1c8d9982f6867eecea5bca7
MD5 53f4844dda1f275dfc3ffff3280bad3a
BLAKE2b-256 669b8371c0f58214b43746e97b9d91ebcaf3fb03bab1039a29e338f6aab65cad

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dda7c9c89626ea6b5a23fe8077bee3c37d49626ce76f4e1b4c1c315c62d7127f
MD5 7404719c17eb5323b4445aab5447285f
BLAKE2b-256 e38ffae6220cdcf7c376d731fc179d49edd2ad0855ad97c9979fb0710e84b894

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e2dfe5d6fb354e7148c15e1fa29dae87f468e7eb99a0996aab8516bd891f6e34
MD5 385df7f97c7cc0554ede508f236de934
BLAKE2b-256 6f619243858301787d396533d705d4ebdb404a2c75676c7450639cc6b13bb864

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 784476f9048049e0bbd490521994505c2f7e0778d94e1f91ce2ac4d90d09471f
MD5 8a11dc4d22fd315affc097ad9d690321
BLAKE2b-256 4098f12acc888a3bec439c54c6714d5734e44c2ab60c681f68bd2d0086c6dad5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 af7e2afde556391281ca98917b72075a642c2988afb9be9a768ba4e40ff6b5d7
MD5 68ccf8eeed71eb1aeb3588864e7728bd
BLAKE2b-256 86c61f5290baaaba5ea1b13ef371b42bd9638c87d562a61fb4e3e3963f6fb955

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49990f02d0ee7681c01c095de3aa08d379e713f1b84c226cc70ac6701f2698a5
MD5 2c2b7543a9923b3216ed2fa18159aa1c
BLAKE2b-256 1260a4772eca1efb4b8e14adcadf9d9b93af4ea8889c61160022066320b8784b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67128132d5d509177a0c9aabcb6f7eea7be9e5a846e1b79e2b5a6b1c7cd6fb49
MD5 83f48ceccd2f20d4ce43e16ed4a1e880
BLAKE2b-256 db1370375fe52b3a7716999c17eb53c3fa88ee6da9d883773f1f819ecb1602b1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aad360482f1c8a779b6d0610d12b66ef01e481ba8af8bfce2693549b102a9875
MD5 e07646fda761bec2d06b3bd0e137388d
BLAKE2b-256 47392957376ab297643d03d799677eb7e539174c340a498582762989664b97ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f70d78eba637f3aea597d6959489f5ec4c6f10a42749dc2bb228bcf56298c6fc
MD5 ee1f77cad262dbd77211ceaae46cc2fb
BLAKE2b-256 008b6fc1e1222164fd3c0606253745f3c34ae2730f97e1279f06e54f23e91c4c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d450fae24e081703506cdecb7e22477b6c53b055f6a81ac8c13476530ad8d4f5
MD5 c1fe864783210966f6de8aa33cb41f9e
BLAKE2b-256 ce85fb7f5d82f620905f442119b8717cf97b622df33cc1a2f9578533337b584e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48274b6bdc34740f6e309ed6c684e4ac6b7992d00f63a5cad94b384072265f6e
MD5 05a7fc23a4814d38c597d844c0b653bf
BLAKE2b-256 453c2e99ac18f017b6afec4026e4921afe9a10f2cece4f650673c08e3fd23c1b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5f44a93c117ea38feb2d773289d2900cbafadecc3c2db3c526d0bc9cbaf5f27b
MD5 0351d4f74cbf2c7c612d2da9c7e06339
BLAKE2b-256 faede30df26965e918ffdbd1cd8fce01f44e6897e601bf1e18085d97fead713a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82284dd4adbdba0b0147860b62bdeed8003aff1b700366e3097213394ee40664
MD5 3f4b95092b5fd28808ffaeb5abdea215
BLAKE2b-256 556586d8b277b14bd765d71e2b9ac6fccc926e65d756947c4ae7dbb20a215019

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 35c3436e48ae4c983d1910996fed585b8aca68f20eea12d71f975067a905f061
MD5 c04fdd04af98309d99d65a39c6667601
BLAKE2b-256 bf5a5cdad85bf0a58ec8d2ced5390bf48f01d3c9e703342658459dc918be2d71

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cf43a90797bca6af4306745f8b0bc9493377dda0f52e1f3ecd393b73078491e
MD5 59ad2fecaf11fa068e4729db94de19af
BLAKE2b-256 e764b4273bfef76e405567fa49307e0490c8c1034783fd4270111ce1207a2236

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1e6374020ffcd9589d7b1b9c693df24dba3c2c2bcd6da590ac2a4995c7057df5
MD5 b254b5e28ee14983b6a92e5c29a220b0
BLAKE2b-256 4023d25e9ec5aa9f51b8363d2d643d81acd2648440d3d36451ce2fd4545f4d85

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35a08c66326400e6b47f91c6bb1a6ef879131b0ca64a56141bea2359d44dad59
MD5 1ab5c7836bd29e589f54f6bd4880a361
BLAKE2b-256 e7c688108bb6b080058dcfe1e46eaee2586986fb063772bba3e820782b810957

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5145b49d2f0fdb81c1229c84001176979662731c6e18a5255a6735941aa25cfd
MD5 74519820913ae382f0482bb56181edce
BLAKE2b-256 1a20c98bbe63ecac3effd5af83e77438c65aba8f1c6eabe5ada4d157577bb04b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1dcbdf164019b6cdaf043100b44b394a0e79287d3651b7553bd2fc456dc7557b
MD5 5343febed5f05f4076e13f823973b4ed
BLAKE2b-256 0165461422d2f596f2de331c5fbc671135ff863313592ac59f2590bcb2f8dabf

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file simplejson-4.0.1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f2d1d5bc749cd5f1240c44b0bbf5aedec261fff250b8640e83f9300ceefa72b8
MD5 4934a24fa31f0f6fc403feb59e3e2356
BLAKE2b-256 e4dfc17da56df2fa59af79c302ed958193d2873ea86621db9475ef4bc9606335

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 265d14f3ebf20be407cd35cd4f4724f675a80fefdda4b56106e516b5821a5625
MD5 57f175934a6476503e98c85501b6e629
BLAKE2b-256 3020c021bd575be777cf8e748d2c42c08c1dceaaa6232ff620e19359983f7bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fa4f3e8da7afd24e36919c16075a93357c9677865ee4040f24bfe2d17286372
MD5 07246d0d99c53ef842fe5cb9af06702d
BLAKE2b-256 f95904969d9426d6f6ea9bc44a53e70c91c498d99b7fc8d05c9b74579da5fdb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8db6315eb73280239a2d90ded4c2b97d37534d89c0925bd3fb8c9c9178825b6c
MD5 ae811af47c80545a3943cdc737c5c386
BLAKE2b-256 218a395c494b4bb7d551d52f46744326c3335391d92e90185ca9bc6278aa4012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d08fbc9d755b328d5cf921e52e12d6c95db67b4bac37ea15367f318410fa561c
MD5 71a764e9be3027e36c180797249a8a0a
BLAKE2b-256 fc2b05b3ec748e2e71cf9ea2140049ca5b2eb108e6a2a65dbbcd05173d1ab748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4a05f69730d5c7b1dec7612ea94dba042a7ccea5e7eeefa6e85cb278f79d2222
MD5 12a74e425d6051852b7aaf290ec9d53f
BLAKE2b-256 decf2401620366e3067a03acedbdb9cc9f55af95d79f7f09699de89076b88c4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40d792f720998348c8f83ac86590fc8d79018f3db0b32b398a3a098889b96cd0
MD5 6bfebe8cccce24fe268b7c74b25e8f04
BLAKE2b-256 69046de48d5844bbc4c760aa82f5796bf3faacb770826c7d8a772407442b395d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f9f803416ca120103575ec00d78848b7c56a2f1adb95c47a7e08cb6869fcb508
MD5 6ebcaf544efb23bfc1326fff16b9a47a
BLAKE2b-256 f9925ebc1150e71d2caf6e2620bf488b76bf375d36df42da6b8342d058b9d633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3ffb8f63a9bbd6fe878ffbdd19cfb1ad56a1651bccbd218954d16a502a7c1f7
MD5 ac5ff9250db157eca692a724e0530443
BLAKE2b-256 4a0722d1b7a448b5184de790517096643b002cdf34c6b9f30a99f9a614a789cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f56bf7da44272279793bda6af1e69fefe7029e106b7a085b25d3b6cafe15abce
MD5 6d43b15f60b46c1e6ed01fe9e7ab4c1f
BLAKE2b-256 90f2ad7ee300c260ee07eed7e746c7c8d9481b8a4d4130759da82936022cf765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5c4f39e00ea24e1c55d1eb186b402e0811907774cfa0d8308c87a0ca66e1e1f8
MD5 f25902ae9d7c4113f5748e9452453164
BLAKE2b-256 e8cbf090e30fa3115910b131eae404f25d47bd6e44e84494232e66aa0e95ac8f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5aa65b246a66644c4e89310e5d1e217159022b4958022387d1d7c38baedb3762
MD5 9e39172fb3efab679674c936451fbb72
BLAKE2b-256 22d3f47edb7fc99f459457484cee59e77621e88ff6ac46fae3a01ee9d2cb9ffe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3162a1ff4679e0906c71651322caabf103aa1f9240cc2092c2c41c87619383bd
MD5 e576b210f13102bdf8f662dbb58d3e5e
BLAKE2b-256 c315d591c7a442a1c73f039e4372253218f8ebc0d9e8fd8139f14de9328814db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2a1b81e49b95802c6aca69547db76b77c0b4dacc63057fdc1d36948777a25f1
MD5 610bc24ffa150f60a381d66853175cdd
BLAKE2b-256 98575f99be20254b86fb09c95dd37c8914ebdf6482212d3a79dd23ade1d761ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f35231c811cef45caa1fb30fab164f6150d95c50cb3eec052b07fdbdc50345e0
MD5 e4665190871031dc75b0a1f68a3ed5c1
BLAKE2b-256 ca42bfb6313feabd29dd912d2e1620985f55d969a30f37a16810bc50e0215c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae16fa2996a00a4ec961d8a6d055d092d663664a63f9a255bf123318a782757a
MD5 019608e6957e7a0df2875c792c34b9fb
BLAKE2b-256 91b5dbfcfdea05da5389169fb2f2ed5e41bad20dd3b9b97570311360394fd99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d580c0ab63ddf72cbbd090b14e3c517007a598387ae39e796bf341fdaa993e2d
MD5 f7bc35202f7867a2071c2556e9f4711f
BLAKE2b-256 194cd1806ff811ab325858f98d1e1bbb5ab3c22c45d69c8f12dd2bbc17846e51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2101c46c93f01b6b5730c74a078d171a4b153a629e6d8f8e9936b50a5cab1414
MD5 357cebf3f9d0cdbaeda30308de6af7a7
BLAKE2b-256 d187497d798fe6cd79b5735c7fa3df0cdd5116f3f84d91dcfc3a291016dd1e76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6b3cbee85a8d2fd755081ea71016c87babc99a39c72cead1595c439138094e70
MD5 c5eefbe64a3f93ddaaba434d3045b46d
BLAKE2b-256 7cd4541b4b5900f8c58dd326f982c0ada849d9394b759e3ea01e60ebcf310d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b2d445df173a05c76778f77e676500bf4854ba6d13fc6c9ce4f4279de9199ed
MD5 59750a7aebbf615b9c33c98d424f9221
BLAKE2b-256 475491ac60fefb04a3e08afe75f9c38d346de7aeb911ba098e87637309eea22d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ad8940a6797370c362ea730f25704e8fb30580be356054757581647756362f4
MD5 7bb5fe6a8c956a67b048e1ab33ff3886
BLAKE2b-256 cc683268815c50620ac9b8f9b64a99a49509664ed087ebe6a9e9ebbb176e76a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7360011c48814a2a886e70bb285d0f2c2f253201467beb0553e56620436cb8e
MD5 25c2459fe06274f3c510f2e98173c338
BLAKE2b-256 819044c65055b5985e4718e8bc2bd423a7d4397cda487ca8f155b171f80d08d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b6f711d2a7a8771d9cb6830612a89f2002319e301d3fb23752f7f3881ca347c3
MD5 165fd0111a647a87a56ef545c5ad4dca
BLAKE2b-256 97f401fe89f5ff47d57305b695bac6b7f71db01e0941cf71105772da993ce4e6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0cb5a246656b4d09caf46046ad8b99a89140979820967f34071995588b711b32
MD5 0f6769a639e18959c45b9da3619da2f3
BLAKE2b-256 bc40fe3de71c638cb05b069e0b36b67e6d3ea57bdb60702d4f11219d8f2f1c6d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 358fcec02e1e2e84c46a85d158a483de74499a6b44d4671cf10bed949b1837e3
MD5 e089926fee1f27aad476dedd6d034086
BLAKE2b-256 d26ae8fe8931f1883dc8ab1f27dd13060bf7d905b273bd3214f63a1529437849

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.0.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11463723971abb6fcba1d4dd29ac694c0d76f0d7fc832cc14b3a363a756f8579
MD5 249c9e7824cc01ce913087e56e797855
BLAKE2b-256 6aa5703b1b915c5188295f63c9d4d9605cf0c84e66593dfd3cb5d05bfe4d952f

See more details on using hashes here.

Provenance

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

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

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

Supported by

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