simplejson · PyPI 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.1.tar.gz (118.9 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.1-py3-none-any.whl (69.2 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

simplejson-4.1.1-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.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (214.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

simplejson-4.1.1-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.1-cp314-cp314-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

simplejson-4.1.1-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.1-cp314-cp314-musllinux_1_2_ppc64le.whl (185.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

simplejson-4.1.1-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.1-cp313-cp313-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

simplejson-4.1.1-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.1-cp313-cp313-musllinux_1_2_ppc64le.whl (193.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

simplejson-4.1.1-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.1-cp312-cp312-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

simplejson-4.1.1-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.1-cp312-cp312-musllinux_1_2_ppc64le.whl (192.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

simplejson-4.1.1-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.1-cp311-cp311-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

simplejson-4.1.1-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.1-cp311-cp311-musllinux_1_2_ppc64le.whl (185.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (90.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

simplejson-4.1.1-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.1-cp310-cp310-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

simplejson-4.1.1-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.1-cp310-cp310-musllinux_1_2_ppc64le.whl (174.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (90.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

simplejson-4.1.1-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.1-cp39-cp39-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

simplejson-4.1.1-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.1-cp39-cp39-musllinux_1_2_ppc64le.whl (174.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

simplejson-4.1.1-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.1-cp38-cp38-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.8Windows x86-64

simplejson-4.1.1-cp38-cp38-win32.whl (88.2 kB view details)

Uploaded CPython 3.8Windows x86

simplejson-4.1.1-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.1-cp38-cp38-musllinux_1_2_ppc64le.whl (176.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

simplejson-4.1.1-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.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

simplejson-4.1.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl (159.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu

simplejson-4.1.1-cp27-cp27m-win_amd64.whl (92.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

simplejson-4.1.1-cp27-cp27m-win32.whl (89.7 kB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: simplejson-4.1.1.tar.gz
  • Upload date:
  • Size: 118.9 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.1.tar.gz
Algorithm Hash digest
SHA256 c08eb9f7a90f77ae470e19a07472e9a79ebc0d1c2315d86a72767665bd5ba79f
MD5 bd06bf5c6db9fdef4b220d0aebb03c43
BLAKE2b-256 0e2a54837395a3487c725669428d513293612a48d82b95a0642c936932e5d898

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.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.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2ce92b3748f02423e26d2bfb636fb9d7a8f67c8f5854dcae69d350d123b2eee2
MD5 634bb99b3b93b5c4ee4743b86adf21ce
BLAKE2b-256 ce6a8b74c52ffd33dbbde00fe7251fee6a0acdc8cea33f7a43805aed258fb79b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4cbb299d0528ec0447fe366d8c9641860e28f997a62730690fef905f1f41046e
MD5 ecfdf82dba3a7323cfa153b9d8af465e
BLAKE2b-256 9773f540dde99cc1d393bd062ab3b5735b777561a5d8f8a5f2e241164444d77a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d083b89d30948a751d3d97476c2ed91e4caaa24a1a1459bdbadb8876242c71fe
MD5 97b0b57059084e576ed6b6e9284db3ef
BLAKE2b-256 7ae6cecd913df322df5bbe7ebb8ba39e0708e505a165553900da8a7761026d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 861e393260508efa64d8805a8e49c416c3484907e3f146ce966c69552b49b9a3
MD5 b6024dae7bf2989689b38c5a598f768e
BLAKE2b-256 9c9f1e160e4cd8cdbf062bf6a454cdf814dc7a48eb47e566fdb8f80ccb202605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a6525ec733f43d0541206cffa64fd2aad5a7ae3eb76566aff49cd4db6382209a
MD5 fd155bbc8d81e83927061d6e3d22598a
BLAKE2b-256 97e4e06ee682ed5df67592181f5ecb062e35878967e27f5b6e087237d4548d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1fffb56305c5b475ee746cf9e04f97423ba5aaacd292dc1255bd75b1d3b124b
MD5 bdda519cfc6ef3a2d8d4b1eb3cf3483b
BLAKE2b-256 0c20a9b5d2e27ec44b069ee251bd55544fc76929a067107b1050001566ba86f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 63c2ada8e58f266491f19eed2eeeb7c25c6141e52f8f9e820f6bb94156cf8dbc
MD5 f35c403fedbea623327404bade192460
BLAKE2b-256 1ba5c93bf305b9f00d7259e09e713d60e75bd0f7f53da970f716ab90491770e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d75cea7a1025edd7e439b2966b3d977c45b5b899e2adaf422811b3ac702ed9fb
MD5 b18776390461f5834b7e4663a6c0b3a8
BLAKE2b-256 4870d93e556df6a0786298644a7c08304fcbeddc248325f23f38acbebeb21165

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ea3426e786425d10e9e82f8a6eda74a7d6eb10d99165ac3d0d3bbcb65c0ea343
MD5 77329d77228d307b678ba86f0c83f1a3
BLAKE2b-256 83e21b2ce97f068835eb3d253c116a4df7a3f436b7bf2fb5ff1ba29287e8b0ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0da5c9f57206ee7ef280ff7f1d924937b0a64f9a271a5ef371a2ecdbebba7421
MD5 6b92eae7f4cef140f63b6d152f17d7ff
BLAKE2b-256 038e46bb345d540f6eb31427d984a4e518cdb182d0621814fee4fee045e8815b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c65c763fb20d7ca113c1c14dce2fc04a0fc3a57aceff533d6fdac707c7bffb40
MD5 95a135cef8accb0bb18a11814fdaade4
BLAKE2b-256 c28359de041d09eb4a9577f7015d7263c32095dfb7fde49717dff62145d89809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c996a4d38290c515af347740659ce095b425449c164a5c9fa3977caa6eff5dbe
MD5 3b31507c0baac459621c37c01ae07379
BLAKE2b-256 3d974fa437f68ff72219bac3bf3d050de9c6265691f3a170e16954bd69d7cddd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc0442dea71cd9cbf30a0b8b9929ab5aa6c02c0443a3d977351e6ec5bada4388
MD5 5d8db61cb23122b1b250346111e2fbb6
BLAKE2b-256 1872ec1b5cbdcb140c132e6c7bdf99bd73e4f675439e77126c88f472fcffa09c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 37233c72ce88d06acb92747347742b3c07871eba6789f060c179c9302dde8efe
MD5 12ed086af5184272f139839d8d7186ad
BLAKE2b-256 61a5bbc1bc0447f339f79f99ab8c37f7f037cb2f1f93af75d6a4d553096bb0c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b70bfd2f67f3351baba08aa3ae9233c83f21fd95ae5e6b3d0ecb8c647929112f
MD5 4bc85cb9768020abe0f11c50cc01c695
BLAKE2b-256 dc5f64990f07ec9e2cb1a814c674e2e21b5693207f74ac70eb72151b847ea4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 036a27bd0469b9d79557cbddb392969f876cd7f278cfbd0fba81534927a06575
MD5 c352c17baf70bd9b3737b4e1ddf3626a
BLAKE2b-256 67e38b0eb8b06e8198cfbd1270487da163d0093df05cc4f557350cd65e2f7e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39e3c584071dced8c21b4689f0254303521daeb9b5bc1f4289755d71fa3cb0d3
MD5 3246780a5aa19355db7cadb6b28ccd48
BLAKE2b-256 dbe36a8d11181d587ef00e2db9112357e6832111e56dd56b01b5c11758a1965d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bbfdaa7c0603f75b7b14b211b7f2be44696d4e26833ad2d91d5c87bf5fb9a920
MD5 ca2c4f74aeefec399cd874e5b415e7b2
BLAKE2b-256 df7ca5d968d0b527a748b667e62bea94309ccbcb1e2b108e8f0cf8547efaa12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95a3bb0f78e85f4937f99092239f2011ce06f0f2d803df5c299cc05abbeae008
MD5 25da2220d0f77759550ad6f708d87a19
BLAKE2b-256 faba149b6ec5393f6849d98c59cadba888b710a8ef4b805ab91e11a566960d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3851658d642c1184d2023f0e6c9ce44a21eb1629e74e7c84ef956b128841fe12
MD5 aaa37a80d459569987e7ee30b8ad9149
BLAKE2b-256 78913635cdb13318cb0a328abaa69e2b91251caad39d6779aa308098f341f6cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95407269340c7f22f09776ea7b717a52cf56cfcf119b5e45f66faa4a26445bea
MD5 b6590caee54250af962e9a3a288cd309
BLAKE2b-256 68319a5432c433a7671107182cdc9a20ea78a70f99c4e5334aa54b6d4d0d79ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 225c9caa324c5b554d009fb9cac22aee7711e71bd96f487938c659af467e828e
MD5 42dc03a059e546aa296fcbe2e7e7c98e
BLAKE2b-256 07f484d160e9fa8cada1e0a9381cae4fa81eecd573577a5b34366d8ced59bdf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ed7473602b6625de793b6acba49aa949f144a475f538792067e4cf2fda2071f5
MD5 0586f828fa7f59958ee8b801456a6a8b
BLAKE2b-256 d3184a118a6a92eb33bb08c8e2fe7ec85cb96f0673491bb2b829930831ee4fbe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 104d8324c34f25b4b90800bc5fa363780cbc3d8496aef061cba7ce1af9162270
MD5 491f9c64513ac88d04ec321a36b82056
BLAKE2b-256 fea5c7a0a47883a9015b54c9d8a4b62f2aba17bd4335b1787b9b8a0fc2fa6d52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c845363eb5fd166fb7c72243da38f4fcfde666ede7fdf2cc6fd7762894626f7
MD5 061be51e1c35b883a26af69514a6c87c
BLAKE2b-256 d2c937212ae7dc4b607f0978c408e8633f05c810884e054c33113184c6c2c8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bccbf4419676b517939852e5aeff2af6aee4dc046881c67a1581fa6f1cb01abd
MD5 2a705de9be5a47b5075ee4c52117e332
BLAKE2b-256 d5d5a15bf915f623a2c5a079d6e3be8256fdb8ef06f110669493a09b9d6933e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a59ebd0533f03fd06ff0c42ba0f02d93cbcdd7944922bf3b93911327a95b901f
MD5 680a5d4f1a7e16e6d3b44846a46116ee
BLAKE2b-256 d368454378e06d059cd412a7ed5d87fb6d29fd5b60f13a4d89fc1f764ff434df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f0ad25b7dc4e0fb23858355819f2e994f1a5badcdcde8737eac7921c2f1ed2a
MD5 91ba96d9a4c45d5559a6d669aa69de31
BLAKE2b-256 cd842c5a7444eb53e9a86d3738299bffddd9f53aeed799ded2f45368221fdb19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 76fe296ca1df23d290033f10aaacf534fd1b3e3007e7f9ff8aa68b21413aaa78
MD5 e85b25c63d6ce10375b7008581f37bd2
BLAKE2b-256 98cd33230927a780e1398b857e3944abb914556994d252b1d765ae40d112cb25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 642cec364e0676e2d5a73fa4d31d0c7c55886997caa2fde24e8292ca44d32728
MD5 206c4059e74cf6de1a5f2017ba51a9d1
BLAKE2b-256 59df9903edd3102bf0b5984edfcb90c88612330996efa3b4fbf8a971d6e17839

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8e5cdd6a5d52299f345c15ab5678cc4249e24f383f361d986afbc3c7072a6b6b
MD5 af8fe6245faf30e024d389175fcf82be
BLAKE2b-256 382e21a3ede87f0bf82d6c7bcb90480d50a6490eb974c6ab20881188e440957c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 249e2e220aa6d9b9d936bde84eb7bf79d5b6c5a8273c6e411f8b1635a9073f2d
MD5 c517b828b5c22d614f44859cb4657bd5
BLAKE2b-256 9ae554cb7c50ad5fdc1e0a86b7df4b135c2cbd5c4623605aa94466659098e8da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 971aed0647ad6e840a3943bec812fcda5f2d26a5497a4981d1fb49aa4f9a396c
MD5 59356a29ee6e1d2d3cb83e48a1c111c9
BLAKE2b-256 4c65cb72db31523c164dea5dc55b02dad065a40c478856bc7534b279d2b51906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dff52fc7af272e84fc21cc5a06c927c823ca6ae00af14f3b0d7707b42775ed98
MD5 b7262693ad498e517d8637443a72c046
BLAKE2b-256 37a947b445eeb559c9593453a0648e0fd6d08e8adff64dd5e5ced66726da8a09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.7 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63a5451f557d6be48a231bae932458655c620902b868170b2f1c8afed496f6b4
MD5 67aba47db76c240af9db87fd50113d68
BLAKE2b-256 b9c490de06b2d8737c68c05ff9274113f854dbf6a5f28b7a955212111672cb57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2e0d5ead6d14610467ec356ec1f6b5d8a56aa216abaad8d41c8b873b16cf313f
MD5 0cb4a624c9fbc34c4cc456997966723f
BLAKE2b-256 04ee14f91db0d1f481533b651dafbf8cd0da088d9817f7af30c68f7f19f9c847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2785ff8edc0e28bf773a32543a6bbed46351453c997b3f6709c744e3c2f7eabb
MD5 5d53c504db14ad3a2343fae74c6044df
BLAKE2b-256 0588bd8aad36b451ffb0e0a3f721d695a88befa6d1ac7d1e02ae788ca7ff4029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 de2ed102fff88dacf543699f53ee3a533cc11539a39baa176b7e09dd783069d6
MD5 22b9aebf725789e900d8e3db1f899100
BLAKE2b-256 c2089a690da9a766161c06c627d805362cf159f1abe480969372b2897649b955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 980fc33353f81fd12d8c49d44f8c2760d1dc8192285e627c5180d141035b228a
MD5 efe8534432bc25fe6f43d0b110c60e1c
BLAKE2b-256 78189943db224dd4d5fa3c090c3e56a94c37b254338c83995ec5680285111c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e708d373a10e4378ef2d59f8361850c7150fd907ed49efe49bc5492160476d1
MD5 a4071359afc7a02ad80e537b2fb1d84c
BLAKE2b-256 760e7f5a59d29426b062d5928fb88b403c3f797129d53be7102f955dbe51aa44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 820c69a4710400e9b248d5670647d60be58824369282d3925e516b3ff1a7cd82
MD5 e6ee9f86b0f5e0838155c04a2851469c
BLAKE2b-256 861ce4d0eab695be3eb21d0f46bce820752031f03e7113f9c80a9b3c73ee7157

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 45ec18e337fec538b7e902d489505c450b2454653d1290f3f50385e6fd8aa607
MD5 5ddc3902b5b9d07068c496553864ce06
BLAKE2b-256 0cb6156a8de1e1b47694f0e7de6675866936608d45dc68388fd017d36f8693be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67341c95c0a168ab4a6d1e807e50463f1c8da932c3286d81e201266c427061fa
MD5 c9639f55b906dc3c4dad7fb945c73c3c
BLAKE2b-256 b878fc060d2e3b13c6ec59288574b8efac64075e316b2afba4396a56b2422f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a94ebaecdbaa80d9551a3ec6bf0c9302fc8b53ab6c1b2bfd498a1df4cb28158d
MD5 6e0388645bb41ea382475b9503f80f6d
BLAKE2b-256 9ca0abd4785f36c3400f1fbb21f517be39295a750a714f04b7ee175adf6ef580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 19040a17154dc03d289bab68d73ce0a6a0be01de30c584bbdd93490bead14b22
MD5 de83cbb374c82b3a61ca5189cb015d59
BLAKE2b-256 6025e90998fe8e480eb43b966c09e835379887d427567ebd496563d3b1e16b19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78a3fe0995be42bed62a26aa78e0e0b4d87c6545785346b9cc898f3389569a35
MD5 a84d6cb02820c0287419317635193984
BLAKE2b-256 3804df9b37aedbd524dca20840d25ebe01d6ae486b89792aeff5d15b9c4114f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ffd3d82294b47f5ec64050021ace95fd62628a0c1cc8bbf4d06d2d1fb697e055
MD5 c1570bcd0e3c73344e0cd27eca36fb13
BLAKE2b-256 d8235b343bfd2a79d3b6818e4db3586c405a001a090d4c89d336e31273ce7177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e62eda21192c5ea9bb92d571ca46a4477fef48762f50d433de2b4253051551
MD5 b7dc99436345ff133b538d44963c90c4
BLAKE2b-256 ded2a509ee37763e79aec75d68f8521db1440306edeba3b8b4064ab4ee8bf1d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 82fee635d7b73ad801030b05a75fbd34a098da0c2ecf600667a03636d09e1e42
MD5 2ab8f3838f1257ec25dcbf742cc24364
BLAKE2b-256 c9fd6dffb4956563d48bbe46b91ff341adae34920e94008fd6b8d728072abfc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e4b23f71dd781f8830f1663dc01a4944d3dbf87a1f93d78fba1cf64722d0ccf
MD5 ca68b2a5aad718a196362392e91b0e9b
BLAKE2b-256 38948d6f515b827b0f7881a49c8c1ac6920b7ae9428939ef04238c973278b42a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 82bfca2b85a34178c25829c703f0a9e9f113a5af7539285bd3efb583a0bf1ba3
MD5 678d7e3c533057c632e875237b381724
BLAKE2b-256 5d40ed806f24afef295c1032448f5ff6f6f2979392d5645ddb9f4fed7f38194d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c44ef6b02a4eb67ed17a72342341792149b3ff46f15426c26e970e49addf327
MD5 1f8e3905f6430bbee20df97b87d6afd6
BLAKE2b-256 340969e331e3994b1ed9be6ce9ace4ade704e7ed503edf869929ca7bb404eda8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7ce252b28fddbdd83db5bd7d93dad2a8a591d7ada098afec9c1b23d6b722a7a4
MD5 3804797e748ef6cf866b8c0b3f1b2ebe
BLAKE2b-256 807ec9e6c0c4ad8415e64dad0c47f619b556b02680a41631b4dbc281d55dc54d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e294e33dbf316a9bbdd4030d46503c9b0f19470ae7ad6af5bae6c426bc2e869f
MD5 ea573e4d4b27c7ac93f905b258bea3df
BLAKE2b-256 4ea26eebfb99dedc139f549200f61ade6d1890ac5707c5d427bdfa6fe39c9313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c47c46e16c8ea9e4850061e6ed5aa2b9cd2074cb2274bfd9c138cba15ce7453
MD5 5872b8c7b00c13c11081e0c7fb6201cd
BLAKE2b-256 f2ae2c272971c8a87e2539c54a98eb6ff037bee1e2e93943c3986cf7500a4f3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2867c64d92abd1992c15666fae198203093f593e43d6b81adf176bae530d493a
MD5 6d8d1e6bf7bbbc9bf985a47256894f65
BLAKE2b-256 1e2539013ffe279d90093ec1c848565b3683c586906c10fa55d9000ec29d046b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8eb821ef27f688f59ed4a93b17a666a7ebacf8dd65fecaa2b3c531a3aea62eaf
MD5 e84b3570932fa0e656c948cea034a594
BLAKE2b-256 f405d4fa2c024d566bddff732a2aa437faa4cbee15ee277e2a855faf91a9d906

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dfb84ace97acbdf1916c5a675387493fc5a7f67c2e15d4a7687143f8c73024d4
MD5 f6945d16ff36887777fa71c9b8e377af
BLAKE2b-256 4d0380e67a6c63fe812094c681917a5c5d403e34904d200570416863fe2e8328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9ab55d2459f6d0fdf9984a7a0fb0280dae12979f4fcc3171f5096a4fcf5fafe
MD5 0bbbb232d114de8bec6ec549e5fcc481
BLAKE2b-256 4a3e82c8997c4ef2ef6c832fbfc3bb2ed14a212616a284100af03b552ea7e072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0662cfe0482c9796bd097213b27f006815bfdc9b671264c3c0b7fc0e72b71d00
MD5 4c8a31be4299925364083b62ae6dab42
BLAKE2b-256 9fb9f830b648ae04601e6813306535d8e0a4c178d6453cec539b85dafdac80ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93bf6653420258372444de90194dab8de8ff13d74b5d4263a5fefbbe8b8d2060
MD5 b02dbe952f821850a11c9c6fdb9dfec0
BLAKE2b-256 f1f5e3ad592d089922abce2c2ea377548953ac55ffcbe061d600f01b9db2e6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 67e43e7c0555e10de6d83e1408035652fad28c983516e38c4e3a9a748c9af129
MD5 fb510a9ae2156a98a37371f00af5f797
BLAKE2b-256 c943039982e956b06c6b019d48bdf9d4ec06f298adf6136552ad1979b94be0fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1778e09a6e4bb4ef304627915dc4a838569d9e6b737c787925b4e98244bbbc16
MD5 b44aa233bd2712b120ad913e50b789af
BLAKE2b-256 aa067a6482f336338dbdb6ca6d3099b2fdc1c74c47eea3c6511975751e9198df

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c7494c75b95171194f965ea609e97081837a26494d91dcc046ad27dd9c3503e2
MD5 6f66d39a674b76c2c6ad14627a0b9c0d
BLAKE2b-256 1dd6a2a7a482fa43aaeaefc001491d381960f5e685ee4645343e0e037cebb57c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75c7ef874dbb350f41827cdf3cee23f5257bdcb0df46d4c01b34badb62dcfe8
MD5 ed2552e0ef8501ae609fd23a59b84f44
BLAKE2b-256 c22d7832ed91cf4900f86c783d589bfac53358abfccb278f1c8b55eec167b395

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4484960512db9c8124bfa91e0d8a9f9c302338f1c5454e74c21d7d022df10f46
MD5 50dc57174186bef87da15d8c116d87b6
BLAKE2b-256 fe8ad0c08f4b8934b64469a63d461a68a01d5cc32faf313400dda2bdc1075a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f61eefab86235c800e7f4e37d977080ec424bb2bf0b74e95a2d17ecb48eac0a
MD5 054e366d2728a961333a0fef6fbcdf97
BLAKE2b-256 47da3ba5e87e917094961e7b51b541c88f735f1ca37d580ac78a9302b468f64e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c1eecc2d6a186eaf5d111cf9b311fa9a9ecf68703db7b63ed5938049f3e74f5
MD5 bd1a95484afcde9050ee6afcc1454f27
BLAKE2b-256 cbaea596dcd327b53da7ac336f3fbf54049033d492c79d7cce5027f7b2bea8da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 43fa9a1ccf477e415c025ba507ada54984f5ed927d28d304cf50e089818818b0
MD5 f922c55b9473c4cf831f3bd57769e480
BLAKE2b-256 ea3618800a4689db287571ba40a767f867a226b337642812b1a3ec015382e696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82e42ff58ee856f4029c732d35673dbe62d589445a8e6c3c98ced8fd78096617
MD5 73afcc1f81f5b83c2273b4c2c3d87489
BLAKE2b-256 b22db40e61a7e71b866bd8b2570aa0493fd9ad3729508f62d93b182b88161c16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 10048ab9b9e0f7e95f1680829f0925a63b190fa8e8e9bb91369538fe382df827
MD5 ba12531721bd922ca81256c6d3ea396c
BLAKE2b-256 a6e61ab403ab9f6b02a7a8c56b203826892316ce81f6735d4f0bd493960cef33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 677fbb192b2cbefb3dc21862eaf0bf560b4b370662503036c513f1e3eb32dfac
MD5 b63a9f24323cc71d21f671754b81077b
BLAKE2b-256 f5c1d396318914d2becbcef272e95fca6eba58c598d587fb3136d1a5bf63851e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8b2da172a6ff43f74463522a1aa1d7a481ac2dba2de4b18ed51e989190352ba7
MD5 475974018255f5fc48509d87de4d9026
BLAKE2b-256 b90c14fd0287d71dfcc3c5717594da36411b73392ab66ad1959ea8fc7f658a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f42a7911f64ed8f738ba55480c20d5c685851781d411f9473cafa7a643e52fe4
MD5 01a54235d1f0dd2039b41f1373955900
BLAKE2b-256 8227a0a6c931b8ae7e0caacbc895cb6fe625f5d05701be0de21ffef242a7e780

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 42ee1aeaa295364bb2c079c42c5796bf1db4b0d5c4bf95f2fcdddba770618cb4
MD5 a052f76dfe98c89736afc0e1e2b24afa
BLAKE2b-256 c006019b4ed14e26b5c38e99b8af184bc350d0a3d294efc8adcffe1b34f52022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7876ec2ef53ff5e6714a382b3f8f042a744b944728ae0baef99421740cc57a3
MD5 46f295d5e0b7225aa2b9ce36531bf246
BLAKE2b-256 bce9aec2b95963ba22e1c609c2743c22569ed0f0c48c607ab390a98b936fed0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bbc61cd7982ff77a68df06d103a3ba459eefd1d3cb6f4f4944cdf9f091d7bf7
MD5 9774d295e450802c09013dc4a183388f
BLAKE2b-256 7d2f1c4692fbe060950be98f90c8076ca4aad4249384f8eb1427e4546c34d900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 97a02325a00617c26cfc974f4ebb191c8de6e87cb96d33e51612091150637c3d
MD5 89bead574568cf708f47c4e596b41079
BLAKE2b-256 9eb3f390ceeeb908218febecbea41cb30460ae232177e0d0bb48d716fce08253

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 25773dbc326799824767d40921e88a8f07c5bf1a0738884fb16cab574610aa28
MD5 e9fb0fe19ad8edcf2f2daee1190b08a6
BLAKE2b-256 f6188effcd16ad80fdd6d28a6d936eaca39b0391de1d1e943b4d04b5aa530b6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 88.2 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5f09293dc60ca29b4d588583f0423863d1e9faa0074fdbf00a9955ecc6365331
MD5 d3cacc7ba5b278f3c030bf523c2713cb
BLAKE2b-256 717c9732a3ea1c627cc203db20788182a52a97540f3164c5f2b18d41c5ce7997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c0573d7370232d71616653080e397df61d4daf1cd7d6a717f23fd21eda90731
MD5 d9949da8686c919f40d94d206bfe1480
BLAKE2b-256 339f53daea0e44891af2bbd1ecfc3cfd991abfc18543fe08892839c816db30de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14465703aa66668cc1b697ec834c4d1566b72464f92d3ba4cb00ecd2c4438b2d
MD5 35ef1bab2340580917374291f6658dcd
BLAKE2b-256 ee3ac85d8458ba53dd94f5fbbe2bb322195564e36a00a106100f10499594ba86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 604b8d73f396078c122f696c2fa5f3527a00667633863560096180baf1356257
MD5 302fca132f933569723e19d1b75e5f7a
BLAKE2b-256 82acead96c20dfd7623b8476de97e550b0e64b0b5023b3d4fd2d1c6c5c10639a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e338a0029a0e8e4da2657b63a8df39b0269007dc9b506eadacca384519b2bd9c
MD5 14d26bbda4121a4873d19639895ec267
BLAKE2b-256 795cdf76e94bc3cedb8f099f466e6a10f1cfc5c017ef595dc6532bea386e515c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 453a25bcad03b1ec4584998c58c27c5eb54148e13bcbf49b796f953048349c78
MD5 859f0ddb9d51ee3d355bd6c6733accf0
BLAKE2b-256 00af85b6b04ee3ddac4e32133051380b93f4530d9866a5dbac755e44ee33be8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.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.1.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.1.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2669ff10c7090ae9099afa9f7ae3a8c1a5170e78f18c7011dd8d5ce73beba6c0
MD5 c99d4ada6df62b80e50e15df40bdd03b
BLAKE2b-256 15a565a203f60464457076c628aa7a154a0b207a1aa217d6ca51bc926b373bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 112b37ba2ff805da9e657c05b4ffa1a7428eaa191918af106dfacc5ab70663d4
MD5 939be5ac8384a9727ff0700c6d14684f
BLAKE2b-256 1e7dd3396028ee4d913b4f651fed895ba74374d3365d214b221066bffc30aaf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 617e36ae79f4d53c91a4aec95eb09c469ef28fdec7926821254505a1de920e3f
MD5 fee4a127a11e03002a4f3ee94a7d1f62
BLAKE2b-256 ddb564d2042f845e6689e324e32b0f2a6fe6c0b933601fcae5b6b0f775ab95a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 110a14b2702e9fa01d13d510b66bcf823c9ddd700bd0050301bfbd1bcdf95991
MD5 9dbfd62448f8bc5a5fd1e6e3e4aac76d
BLAKE2b-256 2f49fc8559e75565993ad789cd4c8f413a6bc4660eda634f9c11c71c8cb1a9e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3427a069695405658b2270989d9e6f03f39e34a24d1b8548b562abc282ee400b
MD5 87a3e958a16d15ad774d04daedba00be
BLAKE2b-256 28c02ff92fafbca6bfbd1b455d2a9afc9e0c30ac027083d7d1d40ecf2a19eb06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21d1b82f5d58f776a184a42bdf5ce4a6d7c36191a917131c577b41019f6b7daf
MD5 ef10ae52b32e13e644b6661a031c75a1
BLAKE2b-256 8e9a5c63f1b0c947116498756a8fdad1432d20d160784e4c677c7e854e1c7053

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simplejson-4.1.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: CPython 2.7m, 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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e2778625bd6c839588373f07d7ade6fc0fb6b8365a146b84f27edfadb13ab597
MD5 2b16d366bf49585a0cfcb789eaec4915
BLAKE2b-256 51401d22e0763586e05301b265f42be0bbb80c8ea03ab2dd86da6407a3b3bd72

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.1-cp27-cp27m-win_amd64.whl:

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

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

File details

Details for the file simplejson-4.1.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: simplejson-4.1.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 89.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simplejson-4.1.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 30944f06a9c0787a8c69d8295b3abc960161f08b5ce26d41be88d2bc5539ea3c
MD5 a4ec061cda34e4a72b185ab9056f973a
BLAKE2b-256 5d3a6017e47b584a899875e1db55e8e2bd88bd91cbfbac05c744e578b850914e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplejson-4.1.1-cp27-cp27m-win32.whl:

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

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

File details

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 797ad726434bf23c47a1e51140b6d1afb35471984c8fd31db76ba375fc0a296d
MD5 3f356c92e5468fde1f09a03d00375a95
BLAKE2b-256 416630ce38655cc053ceaedb3f2205457acc8215c15b7d5cf661c83f90401dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simplejson-4.1.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1ad45da7462afc3dc4a0fe374a40b62f816821b046297b4acc670e641e45cc8d
MD5 e4dc15a7c4e495642f8d21eb2fe9efb8
BLAKE2b-256 7b6881b3900500fbf743c36afb75eb3d1f6fdc47ad561cbaaaab471fffcbd319

See more details on using hashes here.

Provenance

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