Skip to main content

Version of rapidjson Python wrapper with extended support for yggdrasil

Project description

Authors:

Meagan Lang <langmm.astro@gmail.com>

Ken Robbins [RapidJSON] <ken@kenrobbins.com>

Lele Gaifax [RapidJSON] <lele@metapensiero.it>

License:

MIT License

YggdrasilRapidJSON is an extension to RapidJSON, an extremely fast C++ JSON parser and serialization library. This package wraps it into a Python C-extension, duplicating the functions/classes provided by python-rapidjson and exposing the features added by YggdrasilRapidJSON including serialization/deserialization of additional datatypes, unitful scalars/arrays, and schema normalization/comparison.

Getting Started

First install yggdrasil-python-rapidjson:

$ pip install yggdrasil-python-rapidjson

or, if you prefer Conda:

$ conda install -c conda-forge yggdrasil-python-rapidjson

Basic usage looks the same as python-rapidjson, with the exception of the package name (example adapted from python-rapidjson README.rst):

>>> import yggdrasil_rapidjson
>>> data = {'foo': 100, 'bar': 'baz'}
>>> yggdrasil_rapidjson.dumps(data)
'{"foo":100,"bar":"baz"}'
>>> yggdrasil_rapidjson.loads('{"bar":"baz","foo":100}')
{'bar': 'baz', 'foo': 100}
>>>
>>> class Stream:
...   def write(self, data):
...      print("Chunk:", data)
...
>>> yggdrasil_rapidjson.dump(data, Stream(), chunk_size=5)
Chunk: b'{"foo'
Chunk: b'":100'
Chunk: b',"bar'
Chunk: b'":"ba'
Chunk: b'z"}'

Development

If you want to install the development version (maybe to contribute fixes or enhancements) you may clone the repository:

$ git clone --recursive https://github.com/cropsinsilico/yggdrasil-python-rapidjson.git

The package can be built and installed from source via

$ pip install .

The package tests and doctests can be run via pytest

$ python -m pytest tests/ --doctest-glob="docs/*.rst" --doctest-modules docs

Project details


Download files

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

Source Distribution

yggdrasil_python_rapidjson-1.21.0.1.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

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

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win_amd64.whl (754.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win32.whl (637.7 kB view details)

Uploaded CPython 3.14tWindows x86

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_11_0_arm64.whl (904.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win_amd64.whl (734.6 kB view details)

Uploaded CPython 3.14Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win32.whl (623.9 kB view details)

Uploaded CPython 3.14Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_11_0_arm64.whl (891.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win_amd64.whl (713.8 kB view details)

Uploaded CPython 3.13Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win32.whl (610.8 kB view details)

Uploaded CPython 3.13Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_11_0_arm64.whl (891.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win_amd64.whl (713.7 kB view details)

Uploaded CPython 3.12Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win32.whl (611.3 kB view details)

Uploaded CPython 3.12Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_11_0_arm64.whl (891.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win_amd64.whl (711.5 kB view details)

Uploaded CPython 3.11Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win32.whl (609.4 kB view details)

Uploaded CPython 3.11Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_11_0_arm64.whl (890.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win_amd64.whl (711.9 kB view details)

Uploaded CPython 3.10Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win32.whl (609.5 kB view details)

Uploaded CPython 3.10Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_11_0_arm64.whl (890.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win_amd64.whl (713.6 kB view details)

Uploaded CPython 3.9Windows x86-64

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win32.whl (610.0 kB view details)

Uploaded CPython 3.9Windows x86

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_11_0_arm64.whl (890.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1.tar.gz.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1.tar.gz
Algorithm Hash digest
SHA256 a93ead96bb7359d28f9a12c0770cc72f59759a36a321af63ba3faf62116bbafd
MD5 3247a3cb78403f5bedf2cac65f8cceff
BLAKE2b-256 fc4e512cf14a590617c715738524c0deb3a59e9cc93675f7997f30749c48ff7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1.tar.gz:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6ebf59f2f2b95efa5a0f8e3a3381a10a77f62f4968742b3d1d1e5dde10329d59
MD5 e5d9fade3042fbaa1377f842cd3707ad
BLAKE2b-256 aba0f5fff282a07cf0a0e86c540c252db92b20517dd4353e3dc7519f3efd67ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 642e09e354baa2adc8d771e0e859e73cc4aab8803721f88a578a7a9af476b954
MD5 71693da081c6c480b3bc84ea8cee1d9c
BLAKE2b-256 def62f127eeff0c4e6e4bf2b69b8c28f03ddc2a862eb77976860b2f919fb0607

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3299a5b6e7d02bb2d9070aedac411b8342ff7840f9435f6329cf408c45b61f78
MD5 541bafe5399e2e0dfc3f94dd97c536c1
BLAKE2b-256 0c2996c5749773052947b61f988a7f0c22640aa3cde8745d771ecbded487e6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d11a0652537d0bcd087f80210e2934182131f2682242ea2b7dd05c0e3bea60c
MD5 8aa0db105dfd426b0e025d07bc426e32
BLAKE2b-256 6a71ea3d0abc3e7a0d40520e1565fbe541ec4cf3424d55a205045928e4bb4ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68c38eead343f287d336ce641260982b1bccc699a0436317706dd72be804d3f8
MD5 2d6a20d73fabb1fbcccf0badc9b84613
BLAKE2b-256 534e3ae1f65ad4454c3adaa71790f6a429ac6d3e7f0b06c45f2d2a5f81602d6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 883b347387b49b00d7b418f7ffab9c86847f372f036c0a67bdaa6089216c67d3
MD5 be19949e740a1139f768c20535fa3aa7
BLAKE2b-256 bc59e3bac9c94873aaeed4f735c44c60aa6f148cb61980fd2191c664a3df28b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0358fe8b8d4556cb936ffec0d4ac817f722c8fbe4eb7fd5ca29bc66cfd70e09b
MD5 4612b36bb668442aa6c0f55929642cc3
BLAKE2b-256 2d0ee89d453212ee146109e525e2fecc65c80648d8f883c1829be3c505c5d620

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b2013acb0260902e039eb815f727e6d65b6be84d4c6971d5e93a1ad2b3a237d4
MD5 47bd9e4527f2b99e212db6ed55f2868b
BLAKE2b-256 6fd7aac94e70d8f1457e86ed4f1db60b6d5135785e37214344b23f31497c5af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49e2723fe8acfe72e47e2bcca8f77d315f4512fc9f7b2d00f13e9ebfecc76cdd
MD5 baf395727e60dab14081bfb5b5bba50a
BLAKE2b-256 2189b73af4b0757339ff3378a5d50cecdcb076ebe72c3a9a1fc86443cd01fa1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1232f91b05f40218a2c44e9601014478bf2a96791d4008c2a1323f2e75e9a95
MD5 407d91fe6abbe5cc3d4792900f6b9a6d
BLAKE2b-256 bdb9ad61a229982ce6cb08a59eb74b40ea4b3eae116dbad222909ed500fdf956

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a27c22fff11de3092755cea119a442faf9b2a2212a5ef1e61ef4501ecdcdf8f4
MD5 b98a12144f17699b84babf434dd16a4b
BLAKE2b-256 3a31f7d19c77d6092c199897e6ca393e7287d093e0f1ccc7e8f5e2fa483f3489

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c12a8f3b477a73c2f504a8a551957e34cb1283fbd88c6cfa88460a7d3e23043a
MD5 098cdb27e8ab0f0761479aac1788a342
BLAKE2b-256 831888e69ee0b08cd756b39e0834ffe89439df18e63490a776ad4e2bfad1d8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 75608b4a21c5b6832585a516e35510733c6f25d0d11b25eddef3ab2e8b50d01d
MD5 b8a5bbcb02baedc9414fb202a0da77b2
BLAKE2b-256 757e825d6ae4b234648fed057d3117e719e5a54ddf6f6ec1a6cbc44a0762d75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e153f51b646c94128e85e95c66dc7eb7e3d8701ebb6b61a373c002cca55500d6
MD5 fb78b13862676ea42ced6078fc5cf553
BLAKE2b-256 3efb2244e3b950a8e3b157ff5c1ef20e1c7b0cb240b40b5279348214eef7aeb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db7a80fc828d79a8843b472009170aa1ed6c4b98dc2aa5ecbc03f87a835ad92a
MD5 882aeb843677fca6a784bf2c328b6c92
BLAKE2b-256 2a7c16f4f7c9a4f143f96d807e25fc01c854ff4df023b6d1d1af533ba2ddc9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75c4c0425084ee6a4372688f056cfb735e981ed88a869bdded340f1b0bad05b2
MD5 6f49a46c5deb10f999ee06d4a5f0e9aa
BLAKE2b-256 0d01df3cfc58ef46a69d20dfd1f279be4758136eda3abd316b39b927cfeaf34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47f1e90d5a324dbc3048346c4b7b70f65a153a5cbd32701aeaa0d4f81c284faf
MD5 270a158496ee40b057b4bc7b1a8c01ea
BLAKE2b-256 6c2065ffff943f002e5e895582bbd7975dd9172326ed703ff2e0628c76077f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 307829399d96b0d4c5eba102ebacd135165448f36ccc33684434911a2f7a3442
MD5 668b90b59d55a167fb82328344e151e5
BLAKE2b-256 824b1478e5f098321ac3b6b33d44e6391d7c79a5cae67ea781b9c800b8a5832b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b2c6fc2499580d29a646355a2ff2c4b1d9e2e8c8ed8846c9cb70bef6e327bcb
MD5 0b515975750652a96f913e0fc05357e8
BLAKE2b-256 eebb80f3926efa4f5373069fb76f97a47ee7db14b34afecd90f6f90ac3242f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 30be2ce36955ae7e58d4c8764372f1e3b6d42ce9cd5d5e3519b3e059d4c8c0ed
MD5 bb437d67190ba38c65d401cbaeffe818
BLAKE2b-256 1dff4c033a88b296059d23dfd21f805d6d0750a38a7e8472efa35a1a2b3b7e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbef1984cd80bb8bb195b9366784ead031a15e32331b245f9aadc4049f461128
MD5 2e707d7569dd0ab5553c0b3c93bbac39
BLAKE2b-256 dcdea714fd8fa74881bf42e7d93a9f180983e5cfdae9f91f6e32b7df1f916b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1001cd4708dd57ba94b80bc29cf72f9b31b5c8e69db286294ce51444b020e876
MD5 29dd1958a4f8ceb794a15ef34720c878
BLAKE2b-256 06d919c0a762799dc946fd756550d437b2a6bfc12be068fdc400aa11a7ff7558

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d877b34bbfd823a90b65cf02d59fedd1ac044c21a3633d43debd5b4a8c5999e
MD5 681e3fd41a248d86b179d7b7f031dfcf
BLAKE2b-256 82900cc69d86e7980fa9009321a25d7ab6b8ca9042beb3423bd3d9e7347a4689

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 36fc7f3dc9b9bbb7e705e88581b7b089bd4300aac99537b7cbd4d8b771612824
MD5 e20a0099cbd9afb8f647cb47597e11f3
BLAKE2b-256 384cb29ad03f9868f82b3e4a6cc33e82baa5df766f250b04319f58cce5b61f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f605e3b9033987c58d065d9e9c4650d0115ceed744908815248253c6ab7277c4
MD5 7f8d337606b2e563d828c64d60715be5
BLAKE2b-256 3e1f674b937c5f834c9a593070e5ebbe4dad72013b72f0a9226e0c5c723db4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8419a65162d45a1dd3326229aabf5ae765610bbb0914c7e85bc257be2db117cd
MD5 c9d87db0f585658d5162be84bf40137c
BLAKE2b-256 cff0824c486ce5bdd8fe00ed6862eadec7d10578f73256627cbbb5f9ca5625e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3f026b660e6460196a4db6a35a94730c43196c0e624e0cb3f8520925ac53a9a
MD5 d78c15dee0d204c4d2e195c22fbc1ce8
BLAKE2b-256 b500332fa3fe900f6dc7f215c1d8d24b0855dc3f4c4e51167c2b29edebce6520

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13b3a8950c8fdd1b8c648815f68dcd875e99508b30c7d96ca65771cd20382d51
MD5 d1b56cdc141981ff243fc1f952d39004
BLAKE2b-256 83e7c6bddeea59cdea5949348a20379a7ae928c78f36f772e0a30df115f9cacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c557069d9097fa767f38c9488e8643f26e349f74edbc73decec1caed897cba1
MD5 944e62eaaf1c44d08b388cada15d2c23
BLAKE2b-256 92af04cae825feca0f48296ecef758409ba2fdad4f4fa5a07ca3fc758db5101f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d37f2394e210e075ba3d09b86ae3ed2f62d9dbc123c36bbb2625bcfc07b90a7
MD5 68ccad89de4003a96e390cc8113243f5
BLAKE2b-256 bca05204f5211dc69163a99607c4321d53b009db5ec87a600476235fc8a4f86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9cabe00b5868136c9a142132d1e6e0dae8c6c8e98df0e88b3ff7459e35dc1e0
MD5 8866b6f86331ecc2f8deb78db7386e1d
BLAKE2b-256 0f76b5947c094f572869334b0d349269d02f174d88284e8b62689c9e520ed551

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1738c95eb07f2a60fca81a7009695b0dac20dde21ffed6f9bc54d5aea975b35d
MD5 676d4d835e95d2388adf9b58e155c3c5
BLAKE2b-256 6903e5eeaf889769651d773bd04584711109134a4e37ca86e6c04732ddd64039

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 578faddf4243a47fbdc6b7428812f4949777f64eb068bda52b36edc722e1c785
MD5 9370bddcf7b7f0f97fc2a13bdbbeb838
BLAKE2b-256 8c5e11548bad2b247b1eced025b6dbb61be74124384f2dc5350317feab1d4a1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0483f5e2a4086120f80531761a083e6cf8022e63e4c1181d13a82f8f3e910d70
MD5 9ee3cb9936cef3d802023459e99d491a
BLAKE2b-256 88f83651c07befef76dc435294e38bf2abb7313faee296504c06534d1e70d284

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbe2d7f18891023834086ee3c84d061a47997797010cefee48462d68fd04b767
MD5 7e871edc765453c70e04c12f11724bd6
BLAKE2b-256 7f655a0600856674475139b80d211e0b45c21d311f87e2e1a9d8ca79bcbed715

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2db6d3a8de070318fbfb8c87696f5cb3f9ff15f69ccb7abd6f3f1f5fb87bd2cd
MD5 ae98983c14d9cf901b5a9fd0642d67be
BLAKE2b-256 d0db2f7fc33d1271640ae8f6cb6d2f45bf16349c641fc94d7ecdf898567a84eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02215e2aef4891f303a2d0f93b383ee6e36420e4c02ee6e869939b086a6b4434
MD5 71d461f054f46f6aa5375b8a012ae800
BLAKE2b-256 5a3a2027f81af6369c342e76794ba473cc54ec64624007d612c017dee80f310a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win_amd64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fa08a6287225d978922a8a2c4ece03c06ef78dfe8dbfecd1dfbda422f6b8a844
MD5 792abc9c1ad7d1cc882f52688873c838
BLAKE2b-256 d7a080ecff5aefdc78749c1d42143aa076c136c45ff6c0688a08321b0a894df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-win32.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ea3efcd11c2e42b3f43752deae383cce2e394aae91fadea29a0984acee29e6e
MD5 97bb547b0b8d44573ab5cae111b92792
BLAKE2b-256 01d7ae45a850618cab98026fe335a0cccfe4557a9c38dca49e96aad32e356366

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9e4a12c68b96863fcb980b9f70398f995da7f042e577c269988a4c7f62789d2
MD5 5103d23961a8230bf019f2e5f2586bb9
BLAKE2b-256 ca0e4ef07faa23d4e11543907404f1b65e74c7fa5075d7403d3140991de79f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e10171059e9b0df353a39cf14f4e319e7250cff98b3507da87cb1bd0ee50c11
MD5 7a5cd93b2498366f8e71fddd8a611bed
BLAKE2b-256 07e856bd69d746ec0d877f02200572ec7cdf0a2851aaaef2ae77cc5a616d7aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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

File details

Details for the file yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c248bede2e5f729036755e8369336283f05e182f42200b67fa626e48dd11a07
MD5 ffd732bdaac19019bf8add7291fc484f
BLAKE2b-256 6394edfd315456ca9e2ef5c57ae92e5a579cdb7949cf68c95b5f3d1ca013b299

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: main.yml on cropsinsilico/yggdrasil-python-rapidjson

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