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.1.0.tar.gz (118.7 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.0-py3-none-any.whl (69.2 kB view details)

Uploaded Python 3

simplejson-4.1.0-cp314-cp314t-win_amd64.whl (94.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

simplejson-4.1.0-cp314-cp314t-win32.whl (91.1 kB view details)

Uploaded CPython 3.14tWindows x86

simplejson-4.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (210.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (214.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (209.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (218.3 kB view details)

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

simplejson-4.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.5 kB view details)

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

simplejson-4.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.0 kB view details)

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

simplejson-4.1.0-cp314-cp314t-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

simplejson-4.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

simplejson-4.1.0-cp314-cp314t-macosx_10_15_universal2.whl (113.9 kB view details)

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

simplejson-4.1.0-cp314-cp314-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.14Windows x86-64

simplejson-4.1.0-cp314-cp314-win32.whl (88.8 kB view details)

Uploaded CPython 3.14Windows x86

simplejson-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl (185.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (177.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (188.7 kB view details)

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

simplejson-4.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (180.5 kB view details)

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

simplejson-4.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (184.0 kB view details)

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

simplejson-4.1.0-cp314-cp314-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplejson-4.1.0-cp314-cp314-macosx_10_15_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

simplejson-4.1.0-cp314-cp314-macosx_10_15_universal2.whl (110.5 kB view details)

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

simplejson-4.1.0-cp313-cp313-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.13Windows x86-64

simplejson-4.1.0-cp313-cp313-win32.whl (88.8 kB view details)

Uploaded CPython 3.13Windows x86

simplejson-4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (189.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (193.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (186.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (196.7 kB view details)

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

simplejson-4.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (189.0 kB view details)

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

simplejson-4.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (192.5 kB view details)

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

simplejson-4.1.0-cp313-cp313-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplejson-4.1.0-cp313-cp313-macosx_10_13_x86_64.whl (91.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simplejson-4.1.0-cp313-cp313-macosx_10_13_universal2.whl (113.2 kB view details)

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

simplejson-4.1.0-cp312-cp312-win_amd64.whl (90.8 kB view details)

Uploaded CPython 3.12Windows x86-64

simplejson-4.1.0-cp312-cp312-win32.whl (88.5 kB view details)

Uploaded CPython 3.12Windows x86

simplejson-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (187.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (192.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (183.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (195.1 kB view details)

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

simplejson-4.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (187.0 kB view details)

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

simplejson-4.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (190.3 kB view details)

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

simplejson-4.1.0-cp312-cp312-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplejson-4.1.0-cp312-cp312-macosx_10_13_x86_64.whl (91.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simplejson-4.1.0-cp312-cp312-macosx_10_13_universal2.whl (112.4 kB view details)

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

simplejson-4.1.0-cp311-cp311-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.11Windows x86-64

simplejson-4.1.0-cp311-cp311-win32.whl (88.4 kB view details)

Uploaded CPython 3.11Windows x86

simplejson-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (179.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (185.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (176.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (188.2 kB view details)

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

simplejson-4.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (178.1 kB view details)

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

simplejson-4.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (180.9 kB view details)

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

simplejson-4.1.0-cp311-cp311-macosx_11_0_arm64.whl (90.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simplejson-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simplejson-4.1.0-cp311-cp311-macosx_10_9_universal2.whl (111.5 kB view details)

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

simplejson-4.1.0-cp310-cp310-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.10Windows x86-64

simplejson-4.1.0-cp310-cp310-win32.whl (88.3 kB view details)

Uploaded CPython 3.10Windows x86

simplejson-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (174.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (165.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (176.9 kB view details)

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

simplejson-4.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.3 kB view details)

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

simplejson-4.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (168.7 kB view details)

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

simplejson-4.1.0-cp310-cp310-macosx_11_0_arm64.whl (90.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simplejson-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl (90.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simplejson-4.1.0-cp310-cp310-macosx_10_9_universal2.whl (111.7 kB view details)

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

simplejson-4.1.0-cp39-cp39-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.9Windows x86-64

simplejson-4.1.0-cp39-cp39-win32.whl (88.4 kB view details)

Uploaded CPython 3.9Windows x86

simplejson-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (167.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (174.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (165.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (176.8 kB view details)

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

simplejson-4.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.3 kB view details)

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

simplejson-4.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (168.5 kB view details)

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

simplejson-4.1.0-cp39-cp39-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

simplejson-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

simplejson-4.1.0-cp39-cp39-macosx_10_9_universal2.whl (111.8 kB view details)

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

simplejson-4.1.0-cp38-cp38-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.8Windows x86-64

simplejson-4.1.0-cp38-cp38-win32.whl (88.3 kB view details)

Uploaded CPython 3.8Windows x86

simplejson-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (167.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

simplejson-4.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl (176.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

simplejson-4.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (165.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

simplejson-4.1.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (179.2 kB view details)

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

simplejson-4.1.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.9 kB view details)

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

simplejson-4.1.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.2 kB view details)

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

simplejson-4.1.0-cp38-cp38-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

simplejson-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl (89.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

simplejson-4.1.0-cp38-cp38-macosx_10_9_universal2.whl (110.3 kB view details)

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

simplejson-4.1.0-cp27-cp27mu-manylinux2010_x86_64.whl (159.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

simplejson-4.1.0-cp27-cp27mu-manylinux1_x86_64.whl (159.9 kB view details)

Uploaded CPython 2.7mu

simplejson-4.1.0-cp27-cp27m-manylinux2010_x86_64.whl (158.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

simplejson-4.1.0-cp27-cp27m-manylinux1_x86_64.whl (158.6 kB view details)

Uploaded CPython 2.7m

File details

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

File metadata

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

File hashes

Hashes for simplejson-4.1.0.tar.gz
Algorithm Hash digest
SHA256 7b3ce1e8f13ec3cd41e31c45c2172caa4c66299c7002d3e0871b49a85683157e
MD5 9bca823a8d750331a4f4677162d171bc
BLAKE2b-256 f39e0ad4f6db7b15683759f7863381c9ec73b15db426d6c01981e87716051535

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16dacdf30d7d406c5035a0fa104df08248356e30f8aad4c3aa1e6be38751b031
MD5 a35f943babd5d1a1a3119823b3485391
BLAKE2b-256 dfb3b64baae671e9037b2a9c6df96d9dcfd22cf0f6dd9fb3e3dbbeb87553f2c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 94.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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4daa93bd29b3afff412306a6a593d65192ae1ea209adf934ecdc6abc01395007
MD5 35e20e60429cf56a640ba8309830e0d8
BLAKE2b-256 a457a34720ff1d6b990894e9ea58f4408d9cb9b72a73815a5ad7c414dad6eb56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 91.1 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.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 02478f8cca6f6093b3bad29a002d6038f799d300e3a9c47379b8a337a1475ef4
MD5 67f3ecad95627653120ff038fdbb8511
BLAKE2b-256 52f35aa6678eaa27b8243dacacc18b15fab283a611f927332c8bd0ff5d123db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 852918db79d1ae81fa72e3f2f8703b21f34e1a8f4dad78a2ac9d1a857d967f7f
MD5 8c2340f218e98c3001785baece0e6ce9
BLAKE2b-256 67098281e7361e371bede83e36746ddc69cad8a53736726138342e95fdcee36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7e8be9f3f5290247a98d7878bf2238c69220b8e9c946e6b5186c3c253d46401
MD5 1f6edf7872339157485c1a0a08a71f3c
BLAKE2b-256 c785e99dd99e9f26ac55d9b3481101cde36920e7374d20ac6053f4cd9e8688b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a2ee55f2cee9afa51bf8907f055c0c3809228d1da4444f459bc7050fed3c2f8
MD5 286df67713bc73442b3d97e1ebdbc501
BLAKE2b-256 d8764f397f6f5337863290538faa2f0035498f2958eaf8826b7804f33fa49873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aab615c76c22cb4a75478f395cdf406734a878f3c6343f322ca856a6f48da53b
MD5 0c9807602106256e70ca6c962d8cc56b
BLAKE2b-256 8799d517a5b163999e5ad51edaa9570c737c567e1b2cc805712a3259ede2ba0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c40aec639e467bf92ebaeb36949ff87ede2b6126b2f8be3b43c53d8e4ef382e6
MD5 da4cf01858d052d794870e180a8e28f0
BLAKE2b-256 00402cb668e86524f136dd9c07ba31cbd33ee8ff5ba1bf765a258c76ed9856f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.0-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.0-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.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6a86a6f4cbc893e591adc492fffd6dd4d14f9473f0d2b661a0379bac07d4a53e
MD5 45ec321870b5272beb2e5e1b1e1161de
BLAKE2b-256 c5fc7b873265ed556bcd0bf318fb4e11e96de897df3189372ac7d96729c7c417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7c8c9d508fcfb2d468973e22826bf41b0ef278c1bda9687e98de30f12769a72
MD5 3123e452df99bfed4d9a583a2c9e4dab
BLAKE2b-256 43462f8d43ab7be5b17aa0361ac1fbfd226d43943618ea0648867f6d65337158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7223eabcdb21d7ff052c899ce70092eb78afde59efcaef2f53da9a50d02d08ac
MD5 96a10f96f2e942bbb16b28b933127f3d
BLAKE2b-256 4f7a9dff4aef89edc44b38e0165dab7fd6550e1e916b8c745cb298c2919f157c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fa112d441ebdfe6776afea2e1cf8b1d88d332667ba75e90fd707b94b4086ce07
MD5 346f464ad94d2465f3053fd68037770b
BLAKE2b-256 11cb328870a2c46c2b37af72e9003d7cb6910a583d845f274778e3b7550fc166

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 91.0 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bbd55e4e36c480517bfb5a8c31bf9bdc013d50630290ebe1befa8230d573823d
MD5 5359873cd6144d3a0f4f5a57ac93c504
BLAKE2b-256 25d68bc3d4060773f1b29d86ec1457a1dfa4d7369792b0f4187ed0b94e0bbc35

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 88.8 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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9f7972c8bcf515758d51d9d14191934666425fb4e1b761e2efd076c925af9199
MD5 35d96224973c856428658d3f5df8363b
BLAKE2b-256 45c394426adb48a3b595ac44821e8308310c3b8390716c00cc5ab71483becfcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44460d60f571f6103351de21303435965f7859f1a31da73045016a035d7093f6
MD5 1671b256ff6214e665834eb2c3025684
BLAKE2b-256 e13fb90251500f7e6455d6593fbead845109715634e5dc2a3cb7bf0211f262cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 31cd1c96e61f85fdeb45932fbfd23530075a40416656c7019f77bf6ec1b69a10
MD5 6b4883911ccc6523a93dae47d97efd07
BLAKE2b-256 59a8a8d356da4b87754d60b8e0bd5003ee81b5385bdfe9f43c80ca80ba4c0458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05bc6296e3f6e1ebee92f6b14b9d2b57d82a035e3eccfbd512422da19d49d315
MD5 75550adb2368d814e1481f6c679474fe
BLAKE2b-256 b9a0e8d637d6d8e8eb8365fc530f323713ea016cd7500fb9e473559e6966d68e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fceb3bb7d25259fd84ca6de7d28584b9b25d1ee79d199cdd2604e525483e5191
MD5 a27b2d14db7418289101a620b45faf79
BLAKE2b-256 2c1e24e5e908bbf02ea6eab3b798acc895b0aaf40629b84fc5b396e5ed8fe96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 118d0c192a13f53334ef139100e86942b8581661b5d49a28b960c0fb45a2ac39
MD5 d28788e5a0151dd244b5aabb1c44796c
BLAKE2b-256 7c8e31ea4ee51726d927ee5f5a4808d6240cd59b5ee2120de80a3b080989a805

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.0-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.0-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.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3ced596af60037981a597daff84331bb84738942e2ea580170494cbab5b80ded
MD5 5826223f135bb032564a6a2e8377506e
BLAKE2b-256 d6f39375fcee7c623792eadc9ca39b2e5b91b640d5960efdd3bb48d37bd12c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe9bc56079c84b7a84d06c3f8d60f5d9f8f982f49dea0f2354d8ba0c11836003
MD5 df250b7269c4de1d715ba5044c0e7066
BLAKE2b-256 c634530bd4f6e1a0bb894b251b601a8f6d9dd5d19379d78d60e89bd64219be0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c21df21f686a0210ef99980695ee24a5c96fea35da679a2325b1786975b1cf3
MD5 3021d16b7215cca0108187dbdae9fb6a
BLAKE2b-256 e7444fb5c346cce87b83a00c036e10aa76a4403a7bf7df3ddd6918e9ee07448c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e87e6e45612902d4b4a864064c06cebbab11ea2db44c3d51ea48a01b2cd95ecc
MD5 503675f95a6c3eb46bb6b88e6c0b669b
BLAKE2b-256 e767d9598467b0786c48e1cf39fda1bcc491c459c8f8c0c6d767ad8fa9f673ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 90.9 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2f50b31d738205e5e5c8160a1e6ecf41acde055953269e6e9a879688a3ab44d1
MD5 366a948dff227a282269c152b6997e66
BLAKE2b-256 c79b43267f5c32f0fe3c2599a35d99b20f8884e521dedd921502084b433510a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 88.8 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c56e55055bdfd150c1ce76fcab6c495e3a9613ad9d13e9432546745423d001ba
MD5 489f0fdd103419f1a020dc44e0998a95
BLAKE2b-256 10ccfe1727fdd3f7044841bcadca40383e5098ae35495d8a364220d96ece8c34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d13fe7b3c3010fcd0114a0ee23a370b5e5ef3296f039a432c553512d1f1b191
MD5 43a8338a0910811420d10f982f53dcd9
BLAKE2b-256 693d096206916b71cd3130201550c7fc81d612daf153bed949dee6595eb05c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 85cfa110560283ac436ecbe2cde2eccd7cdf669f955113609fceb8e76831d6c2
MD5 ad8a588a99ce15e16d39e7b88b124226
BLAKE2b-256 b60ac5254c01eb7840bb4e99dd3fa9fa50c640510cd7ae4b18b2d75518fceaea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 307f3309009ad06b0a255a27533b73aa3dbf9d52866e22d825375fc0ea1f7245
MD5 c28e064b3cef8a0b69716189a15a1dfd
BLAKE2b-256 5fba9045f825447356f687ef15e59e3ede6dcae4ef9b760db662bc8d7a81a951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7ae74a1368dfe1bc4eaa9dad8bf9c648c79be4c98487315bf14a511591e97aba
MD5 da499d48534166616de6229377b34fcf
BLAKE2b-256 98f4a54d498296cd157fb9b6d153ec3bb86fd25c54cb1216a3d097a818d6af10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa53193a9117b31d044a37eacb0b335c09c2f3d63eab9ad1a7bbc51a8d68fc45
MD5 a0b7cb23b6381bc0069cb576d50e4d04
BLAKE2b-256 f1f5b6e77fd2df9cafdebaea300e3a0321a46ad33864f26b2e0c2de4b3b39391

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.0-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.0-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.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dd0e8ecb382506141e3d425f89d1d4bb2fc8d1d5343a718a57bc0b30c6801e91
MD5 b68f6e3eb19b2828b12bf6a6979d7d3f
BLAKE2b-256 68640b99fc4bb2d608204667b564e9879362cb03c95e9008ca0d18a1caac2f12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 999a0d9084378ae043671c43ce0f475442ec74d93a546e5f4c99492621c64d2b
MD5 31a5409849573dc623c70e7c9b802413
BLAKE2b-256 20fe966b89ff26cf54a602e0f2a272fe5469eb9b49be689aecd8168b688a8093

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f34bdff0184b0f4b451bb4363ffeeea6e1e7c37ee784a83c6ac0ea916a9965cb
MD5 0931f688505d076416f74d089a6ef7ae
BLAKE2b-256 dc109e487ed5d7b543388b9179c1a3b01c179bda56bb76675dfcb9c14fbc48a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 585098ad9bb5659caff121cf1ea9bea5aee406d80933a1423c18fb9d743f456a
MD5 58b4f3d81f64f2bc45eb713e3ae6a9f1
BLAKE2b-256 48d81dd77010fb81398d45e893b394623a5e0d374332e00a6bd7a745e30463fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.8 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2697fc8488246e56cc9caf84b0ecc31d30a4ae6a1f6704fa61c59c6694b79745
MD5 9a86883474c2b38c83a2c7145fbf21c6
BLAKE2b-256 8534e7b7abe1489b7017ed5959842e227b8bc8dc6b1e6999689a211ec8e4faac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 88.5 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a63b84e500a8948912ef9a554b1c18fb35c29cb8ad96faa7806a5a64fc94f055
MD5 7042b89b6573ec5ceecfb4d35eb8ff60
BLAKE2b-256 0c61ceee4f997778830b8bd62afcd93e244793068573a3beaaf69fdaa66e403d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d264fc26d2fc13d255596a151fa0a272eb8988348c9436567d16717e524a72c
MD5 ae4532b65a84c900fbc7b1802dbaad56
BLAKE2b-256 5ba83d47994bfa888d82695b4e1a38aa32eff029134aeb4fe4b4b4eafda85aa4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0ee907e5ae3e06bfba869684d0045e39c918a1b03b8883dce3dc7f86b941c0a0
MD5 dfc39c77638e76e3a27fa9868849cb09
BLAKE2b-256 a121c57947fed85a24881151f74d2af12778283e8f770e317a32b5b9997baad9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa72415ed30cd21a268b0934cc24eee9ccc1603694b6fe7908b471803bdffa7
MD5 0dff8a4120aa222e3420d9423e895df4
BLAKE2b-256 35d7968cb60d9430c8fab996796ad65e019a02daf7bfda64f12eb17a278d7aef

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9dd183e5be26b24e4cde589e24c6a422457360c90cccab05df134a37a017f469
MD5 70cbc8a1f29ff8db5fc06b9b564131e5
BLAKE2b-256 40e1a4e2b0c1e76b81e9bcfa9bd01b07bca6896b231733180dcd2690d74c68d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a9d39a1466113d0be2a490c1d0322f5230f3929ccd58dd379c6c26b9850c8db
MD5 1a2ed6939ab72bac0f9972f8a59262bf
BLAKE2b-256 3bed5cf7e5d7dcabe63517e30e643d03d6085bac5e333e98d606c688991eb94a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 be83ece9e9b877b9896b87aafb32d1bf68d930ecf0c96a93b4524ea4449e4db9
MD5 0f6c5b0410de1377166540c3e6974060
BLAKE2b-256 cda16b704bb83d4d61610008e6751f1a433ccc82d154c6e1146ec99523102fe0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea0c1e0d6f1a6f49d607c486e63406eefb35403aac7f0df3f00f53acfb85b5e8
MD5 df5497fba75a3a44ce6c8f37a46653db
BLAKE2b-256 875e15c256163366e47db20052716a72864af647cc9a2fdbe25a7888befd738a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95940b02d0d367c4408c3650466a23f207011cf1973ab2e22e66c2d324120fe3
MD5 fad61fba2bec5eee831802548961ca75
BLAKE2b-256 08a85a89daada43b9d20201cc483d5e9636ccffe3c9d766706ec6a6eea3263a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5e115dad456b6a269ba0c960d19c4969bf5560ace82e66df2bd2379e6c89a44d
MD5 678fb995c96b7bb9ce419c3b6604a650
BLAKE2b-256 7ea89222b52505b96c137de9327a0b42a9fb08f3d4e74f116d3991cb209d5562

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: simplejson-4.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.5 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fef923f1c6022d55140cf635a5b01fd27f61edd07470abb58f158480faef81a2
MD5 befb2a619c1c03249927a061f6ee2b7a
BLAKE2b-256 1fd8cbcf9ba34fff865a92d8ea8cedf7f06a55a1595385655c4d645cc3a97433

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: simplejson-4.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 88.4 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dab9fe6896ef0889b39a1de6d5493d1b61f87461c00d05147ec2d5c642457e14
MD5 c44e01e1c0cc924bba2d1f089f8c41d0
BLAKE2b-256 66f1ff041f233d1b51f9b0df70c4df767a5c456fdb9bc7c53addf76b833c4ee6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc3d0db7842d62a6a157fb74e91d0a9e4c29cbdf8229f21e00fe01dde94c1ea5
MD5 792a702c7942fe3049a972eed910802f
BLAKE2b-256 1ca3a606f6ec79b7cbd7addae942ae8c37379da7e3c1697d601ff417524d6b59

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8d41dbdf4f770b123bfc671cb835332baa376e39c5e302e7c1e6343276eff8cf
MD5 f3642c2f4e9712f95d902b978c5e870d
BLAKE2b-256 16ea41589b4d5f970d5b23434e0bf69b3736a8585f248eec88a0fae74a220b39

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c53010f1f1bad816cf6e3d15141b11cca27d5774f537012896e58db44a82e538
MD5 68985699b022b8b44b2887e80a435884
BLAKE2b-256 585c6c9dae6ec0cdf63eca065a08a1f0e8de95ae0a40611d355e768f3e9b5348

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0e476892da049f7be62c580d52926f0e16307251c1e151bf27c814c9f649a4b6
MD5 c28c76d8e25053f6cb1ead8f8a056021
BLAKE2b-256 c8663c23f75939e97cdc01f3ffb011fdf903b0043f9005fa7864be33bcc4435a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f22e4b442d869d25757d550e7ddc8ccde7d0055a6ca03de285cb390e1e2259e3
MD5 49ca07b14e822580071167a412797b28
BLAKE2b-256 154d565d2a49564785c5bc32af0c5d2282ec3f77619eef1d5d78afa66362bfa5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ccb22824870c4826566d9ec879adfebdeb887f5af6379eeb383f427789988418
MD5 57d1bed4d25d0800d231eb30de370187
BLAKE2b-256 ff387597b1cf602a15b4dad75b416cacef23a3ec5a5ca30c2174efd3caf81d67

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c87e999c30cbb487ffc0a44c4f48d42597b62cd37f4abb64f76d6abbe0f90683
MD5 4ca609af43b308f41cfd6ce251ab5eb9
BLAKE2b-256 adc3e58823e279b0c4a62660ab4aeca403bf839127714efaebc1ab5b7cf4569b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d685840ad2e48eeeec5cf60f98af20fe39777bb7c6fbff89da52b9530a8a21d0
MD5 493da1aba42e5bbab8d4461e21512203
BLAKE2b-256 eb95bb8217eaf92feb6f5c5bfd5695762f5fed9fff61f5b4e2c3e2553dee93fe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 220effc4fd48127bbf902303169a914b2291e6c0c828d2e0366a6b5e30ba9f9d
MD5 9f0ddbeef7eabe56b3e305357dda06a6
BLAKE2b-256 c8b2a164046ebce06b3b258085465a3ff78c33f1809574bd66cf0646658cca7e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: simplejson-4.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 90.5 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e0c146661eb49efdffd8a52ef596ab02b99070d5d131fd10ecbc7f1c50c5c70
MD5 2647aa465cb8353c98542a17f8cf6fe1
BLAKE2b-256 30bbe725542529c7c7b9c22c0e9db493525454782d81f28de3128cf9190cb02d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: simplejson-4.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 88.3 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3935929fba56c5c8918c9b1d8b4e51240d9f9c86bc7870cc7b7a908cb78b3582
MD5 435e5a6a513ec82cb97ceef83e8d4153
BLAKE2b-256 3f6c101841442ebb8630b03a6449ef3fbaa6e8e9ce61e6b7536d8efd01f5d1fe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04f30ab3dfb471d3aafd97ce0184bde769ce384684df5c2022c640a4a9501448
MD5 c8b095ea5436fead34ce67e8ee0ed124
BLAKE2b-256 a0a03153f6d830d4c6013dae8c6ca06b096539c69d04c1e53f42828695db9638

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e7084373d0dc656cd3d06a11b7de039ef8f200aee1c07db164a125252d248bb5
MD5 03627f3b9534908892e8d0fbddfcd6f6
BLAKE2b-256 ee276cc9651194d83d1e685393e02619407a3a102e5345aabbeeb2b55a5468c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a7a950cc21ad389c4b46ff383a66b8dad2f5b20a5880533055fe38569d3d010
MD5 a0d0ea11800117b62071841581a45543
BLAKE2b-256 d9e7db0e67dd0c61d778aef0832f563381f429c62a0329b9251138d3f5e0acd6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 598a8371d52c93508f4da1fdac7b200eb3bdd09691b8ad2ab3b42c2cc432f12e
MD5 2a792153851f0bfe1ff5b5c500ab404d
BLAKE2b-256 b756098823d112c42f03d6c44a2ebff302ccf9fbf4dcd933984f513f4b643e07

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7134ef913d1f40dd797582f285c5f507298877768cc47b2616d7ec63f31ccc0f
MD5 d4207ad350252dcdb9a3022024490a82
BLAKE2b-256 e5363a3c8a44311ecfdcae1bc462546a4966aa8d232816b2856295ae8816c463

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 faf8c285672fc20f2e08ec0feb61804ea4f61c977b5154576ab1d93d2b5bbb5b
MD5 998b2dd170777154e7e213ac0f133c47
BLAKE2b-256 f2ae9d6701f40b1662cce330a686cb94915ceaa20991db35fb641e5ee5b1256c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ef02cbda463b0de9cc6f825e56923df685a9fd2eb164640ca5b2ffb5e2e68e3
MD5 d32f909e9f38b002c1e201b495ab15d5
BLAKE2b-256 dc2977bad9aab102c8576e79605e4a9570c9d8ff426dd3a27072fbb0eda51929

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 825298cd1b1d7c364845674cbd399049e15ac4f5178fb75efec995245ad689e0
MD5 97ddc70b8648b43ec0df844863b3df1b
BLAKE2b-256 64bcee06a8d1ed6de15e2a63ce5deb8cb99b2e0823035b58fd119c2964de48a0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2363c01a4cbbe297d4cbaff0d1ecd0be5413e6d095a7ccfffd63d030c2db379b
MD5 a78c13b91edcd5103afef0e77fc63214
BLAKE2b-256 12d3ebb005c874fd3b531ede0773dbdaaa834357f0a09f3c232560398801bde6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: simplejson-4.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 90.5 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 797f114dec85e73ff327ffbdc5a34e980f5dac9a21f47f0adf46a920867c422b
MD5 7608f34d712636ee4c6255d67ec6c083
BLAKE2b-256 cec172dbf4013cab55985cb75c64da44d6131b98ebff1283e9fd0e69859c2996

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 88.4 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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 97c63b8738c9c38f048629c2217157335984e0154691010743300d8fba3abc72
MD5 e0f7268f009f16b57ffa5e3941e03127
BLAKE2b-256 aa32cff931db8ccd42db305566142af60592e2d640ed3c5df4d8c72ae4f25d3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 935d3e792e908c6c5c82ed574b6c38b653bfdd0d8f557d53e459331d100329ca
MD5 c1304a6e9793fdc4102d402de1290017
BLAKE2b-256 905f65920104a5d442f04c6d6e393355a13c2c4160f9a40c4bbfb0452ffd94ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 69b583305c56e19f4427664c36a0c4e4af38418a1ad22ca8e373fd1807a790af
MD5 8dbdbfdd391a7fc3dc34a7d115dd4d22
BLAKE2b-256 d8710de35947df8d5a642713dc4f908fc5a144846d14d9399d926d31272cec6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 115c4726d99437ce4b17d62df6dcadddf085c9b86d9fdb604ed12f1d9f942fe5
MD5 1478be117a9bb2f5c159c7da672cc5e3
BLAKE2b-256 fb8bec6bce9b1ed7a21321405793c60eaae6e4cba18ab6410748c0afb3825f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a7bd6833ec97809bccb100d2ed551ed71fd035e3e0aaad53d5f623d1bd4199ae
MD5 0dccf2aff9044cf5a3db3aa250495e88
BLAKE2b-256 7da9360391237b71d1f2f65ca8f6b59f9d2f969d058aecbc3c2bfb6380ff4630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94b3c31daad76f015885d4408a22aea09ec1c6d85ecc8379d4f28d7f47db8b56
MD5 737f3fc537c326290d2096b69c253df7
BLAKE2b-256 3f46943adc02da5f3f4508fd9d38fa58d1f944eab13d59aab9a92b5307980998

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.0-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.0-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.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2a26b247a27994c7b603514b243da0a72eb23e03c709f2af077714e5ff73b22a
MD5 2ca368b8bd7a415c46740e345e858fe5
BLAKE2b-256 ff789333d9ba507a99078f6a58212f5b2d39d5a6c41fdb3376f8948e0bd21978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15208843fcd8ba7896112b4a32022bd80cf2b6db91c193ccc95877b915a39cf8
MD5 ec94a727f125b65a204d41106e9ff814
BLAKE2b-256 30ee5467c9842f2c5370cd351ba909604a484616d37e5279931cf13b75ccaf89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a88c27456d2cf6281b0bd09cdedf5220021bdc88074cc91903d96ad7bec554c4
MD5 9f59b9dae4f5680a2eaeb6c9efdfd6ef
BLAKE2b-256 acc0db660b914bcb2d8015ab6ed0e49db53045bb6705b25150427d95d3b2f616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 25a70ac404e936eaf2d0ca1ba7872aa96e1e94e27345ba3d46b4b6bec753e27d
MD5 e3ea0524efe14d1fea5350a7dbd2b11d
BLAKE2b-256 7aeb3c381bfc74e4ffb70190e57a9cba4dd9215187e43330c40d8942e4e455fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.4 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.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f29c43f4252b74ce4816632d5b3c03f13804c4248b35ab27a7b5955980d7e4d
MD5 3d2d0a047933092caafe0da0b7ba7174
BLAKE2b-256 56cf867d70b5cadf3400a1258433854b4cae37a784071bcca40998ca63becad3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 88.3 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.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aac891cdbd286dbdb7715105b37b7fc1f1e3c0c42fb1b88948720caa4741eee1
MD5 f39aca2067dd5ceaae9692ee9631acfc
BLAKE2b-256 f402fba6a15757e2641146d7a93de766d22eb5e22204bf6410fdaf19b800e3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c13ec4e914bc2e0d8f772557beedd06036411e11a06003013f726dd171d9f63
MD5 a8b8d3dd2d4d17841fecb7e9d9ad43dd
BLAKE2b-256 0e9725b837efcaf0e2179ebfe60dbcf6accdabcb054379d88cc3b3082d910856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a68a22b08e3f5bec3a8713dd32c5c2a54d64379f3a7191cf39bad6387f0b6381
MD5 119031d669d60780e0ec5d66ca61c89c
BLAKE2b-256 e55b1dce3207df068dfb162e875759736e73f3b58732d2bdb13b112230f23dcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7d609bd47ff920e9d95f902cd625cc9178278ac8214d14c9f6a18a9b90bd0cd
MD5 ab6757eaf780abfa9cac0eb579c64f28
BLAKE2b-256 1b87036ccbc908834cb2d2c01507cfa14ddb68710398acfd115ebb9bfaf1e92c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0891f7439eebe283015bab4c1e9d5c10f5beb82ab291fa2bfa2a613ff3dcd8aa
MD5 962c68e10f88a76179a60e86099c2060
BLAKE2b-256 01bc0720281508f6f91f83500ef8f02aba1679ef75236bf299f52a1098d0ee88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c834afa724edbc312b2137713d1127da77d160d8f55a693d77b5d70b0ff37724
MD5 7a0bb69e9835da32c2e15f4432d7273c
BLAKE2b-256 536e67a9eaf7e861dd71226444da8f591eb1feae63071a52d58de2f3d040eb4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.0-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.0-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.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c7f082fbd5ffe38452b061153732dab0679e4b6372353d06a4cd1bffcadb74e3
MD5 42af25f5592d7c695b2196d9a87da1f3
BLAKE2b-256 1ce5faa8a7d8f5f49ac180d5fc4e949f56c2fbf3a3279b2070d9cf02bf364967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46ba0ed1faf386492493dc07109e6c5921226b2ccd39a09f01a9174b00ef78b8
MD5 181ddd292bde9206d2fd365bcb5cf71a
BLAKE2b-256 83f41a9a665ecf6e31ca48b302533f50f77534c55475a3ec4a8b64c33fdc530d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34c4b15bf636bd7a3a1ecd6eb0f0601d47cc083f4bb4624a627893974b6fb33f
MD5 210b93043076f218bd3c0737da51ce66
BLAKE2b-256 0cf2024a6eb326b3fcfab3d610af62a4b07c7a594b96adeb2ce1afa315b4814f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3a897a0f2ef94eaa5d4b886fed90ae65c5ad4849d62e1e8985760f3c76cf3872
MD5 18ac62cc83ec6787449ad315e62eca9f
BLAKE2b-256 b91d67aa2160c434e1fda158d5b05d2513aa93428945d211a358379cf9a4555f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 815df0a020b85e04f7de48fe0f7e213dbe1546812dc0f253b215695bee4d54c2
MD5 cad0025f627c27b95484df9e14cfabe7
BLAKE2b-256 ee3b589b6d37d69d6b27649cf8fc39679ffcf5faabc16da6d1ff468e6ef45498

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3502ae0970a5809b9c64ccbd62c4fa4c97dd45405fe1020670f804dee36ab975
MD5 996755a3c04e3afa967d03fb15d19a5f
BLAKE2b-256 e2eac996961b41f586b44c2106274836163631289f3173f616974fe74fc26de3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 55ffdfd0c6a5fea574db0eb65ddd3ed9b256493d02789e8f4af7907753b73667
MD5 06a5914ab778ad7fe51a432c8fd765ca
BLAKE2b-256 22034f743e6556d2edeba6fcc7a02fc7a4fb54b796de01019ee4c30ca88dc528

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee6c6c2fc6a7ef13858d732a71be4c3ff09e7d3cbeb1d9e2691270c7d135dac3
MD5 1ad67b8a466d769be08a6e49ea59978f
BLAKE2b-256 dae406bba99c8e2cc4d6e3c268ed398575409478ab9cb9821dcaf4c4b9f111ff

See more details on using hashes here.

Provenance

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

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

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

Supported by

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