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.0.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.0-cp314-cp314t-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-win32.whl (637.8 kB view details)

Uploaded CPython 3.14tWindows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-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.0-cp314-cp314t-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-win_amd64.whl (734.4 kB view details)

Uploaded CPython 3.14Windows x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-win32.whl (623.8 kB view details)

Uploaded CPython 3.14Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (891.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-win32.whl (611.0 kB view details)

Uploaded CPython 3.13Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (890.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-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.0-cp312-cp312-win_amd64.whl (713.6 kB view details)

Uploaded CPython 3.12Windows x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-win32.whl (611.2 kB view details)

Uploaded CPython 3.12Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (890.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-win_amd64.whl (711.4 kB view details)

Uploaded CPython 3.11Windows x86-64

yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-win32.whl (609.5 kB view details)

Uploaded CPython 3.11Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (890.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-win_amd64.whl (711.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (890.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-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.0-cp39-cp39-win_amd64.whl (713.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (889.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.21.0.0-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.0.tar.gz.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0.tar.gz
Algorithm Hash digest
SHA256 8a0fbd3e9ea0cd12279aebc8f3089362d14e4a7e3f0dbecbd807a534720aba7c
MD5 eba77cf44b2635df500415418b864021
BLAKE2b-256 5cf510ccd5b9e927b7556cf85c8c7b11a33ad58c53c0e38284ca2b0f89aacb16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 09e2a56d8f226c3c0bcc0aa4de489750ed5b80e6ac25088f009b4f1f2e31829f
MD5 c3ea49ea48fd3f5f1b241a3ea67c92ea
BLAKE2b-256 871dc34a51edb128a4eeeccb054bbe90c5ff43b037bdc9c039a44384861f3379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 034cc0dc0faffb7a5dc5e4bacffa83644ba0589991934274b82f9279d58b79f8
MD5 67080545ef952ecf2ad5a0440cd672e4
BLAKE2b-256 f6663f915a467076adacf45629b4436b2442d54425095a983f04e75a5dd76c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b450b5339545cf186ae4b269087b081303f9078a8e0e1b5017ce24815c81b9e
MD5 64ead68ad69cbd0e3f358cc9d83aeced
BLAKE2b-256 df3b847ba1bd276fe2ef0dc7e7f7ba35ec5045a42049f9d0ed6814df64c9f22b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c3bf6d61c58c808890cf8886831dcd943f9276dd5c2ea96dfdf2ce6b1b0454b
MD5 d0bf77a152b8a8cf98f0f16bf5417773
BLAKE2b-256 88d51e53d8366a93fc13589c5ce62ba69cff641f12ee798fbfb2ed144fdb94a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff4da2d3359fd22e1d9ddfb454afbacdbfc6c5715a296b9cbba6c50c46f6ed69
MD5 cc4142cc0a915cd92623b601d57e4ba8
BLAKE2b-256 ec693123ada74beb973a9eaa217fb2d3d2796a62c250868c619dba9a73250d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 858dcf24f28ae264e324afd4dcd6ef0b48ebf89b78cc19d715c1432198bbcd18
MD5 cd8957ba18427dbaa33b5bb23ba460a0
BLAKE2b-256 43b99ecdb842beb3b2112dbfc47443917448c0cac20973944464c5f6a25ef815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e1245da2f658d5257bd1f557643725d8cb81b1d308a5ad5115ccfb2e5bb76838
MD5 0281fe2c50d9249ee68d1999bbf48822
BLAKE2b-256 1213fdbd4a5844a48fe9ac0429fdf0adf2cea44786bb2fb157496f271c02ed3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4d49c559fc23500182afa36b7734dfb15187cea6f0782da3f5b9129fa1951af5
MD5 521415089d89b598dcf9d5cd9376f137
BLAKE2b-256 69dbfd751e1aec4ad743936a212ddfc2ad6f7ce03f371c2d6d1f164f227a4761

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09197371d26f0d9f2015d2869ac291c34add0cd8b7109aed10f8ce9311b87e3
MD5 81bf2fe0ec825d07c771453e8161d193
BLAKE2b-256 888726a4715d821bbdead71cea8d357cd4aa67a981acbead39af51e91453f836

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 082025d025ef2300f66c086393d2becc4a8b12652df1c6194110184f03e3aa9e
MD5 7a35887d9b7deed9ab8955bdfca10219
BLAKE2b-256 0f057a896c983d7227400ec8ddfa8603b4bf66b8edf3dbfc1765ff8c1958a2ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05970df93feca6c9e56ceae8a00389404ace28748dc32b31b0cdc9baa7080c16
MD5 c5adc2af60f4875ebde5ab715b737210
BLAKE2b-256 1fc3bfcdf845e8d6b62a96071ab238f9e9e950274afb2fe3ec1b792dc5e656bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b0611decc425ca9535739f07e8963cdefa05df27d04f94c8c607ae9c87ed6c6b
MD5 d65aeaa877a7ab54bda35f17aec87f2a
BLAKE2b-256 212572a0745e78ef53e7893dab63875f15eea48797850114539b0038eeadfbbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3144005ae8526a594b8829af64b4298369918f3d2ab9b8f43f735562bb229158
MD5 6e630e9ee2921a9b230c4484c73b4322
BLAKE2b-256 7df633bfcbddd5561151b0dfe3169e8d2fd794c70487c808b01d0289830e1e6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2a36635a02b3f3417c2e911cedf4056bef7cfcd6d187d0bf0261154f578ca3cc
MD5 72b0a4705b953b9f031ef8e22df654f5
BLAKE2b-256 22d4ba94ebe81943b60457ecabba8833253cff823225178fcfc3b346f0a99dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48e8994d9ffe2e3bc87495022d63376c51933e3abef68fc4fc698a6a6284f91c
MD5 bc76d4ac174e0eca83290b317132b263
BLAKE2b-256 00d6b5f5d93cc87deb9382b64a1085084df8161d5d47bf64e20a8132e2df6580

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 841c78ce527363e77801fe4322ff6f0ff2ba82bb796dccaf5e305f261065404a
MD5 3b382542c4112c8740121dd8e17063bd
BLAKE2b-256 191461024ac563474937f5643e7f14fc78dd54bdd342370a74e8615e5a4ea3b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64af3cba6b4aa082b7cd8e4727a7eec74cbe39bf7e7cd929f4f4199c6132c1fd
MD5 fe6012211a206f6a686cdcfa89d7fc8a
BLAKE2b-256 bd40a9d50f32f2f3c2a50cc259b598f79fced0d6f8dcfbed85941a425b9ae631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b88721a8df8576a2ff2ec3d86f9e6899c465c8272a33f74a3aa399358a0c85a0
MD5 8fae41bc3edcb0f7109ef9f3efb661eb
BLAKE2b-256 512b0efd19d36a8f9900a84515e1f9081231677ccc18901f0cf439a6a73ac1f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ce4f4d33cbdfdebb5a3c19a810032ef1f70762b96fb5013a26b9d29c949046e
MD5 f37243bbfb29f9407c9f89c8823e495c
BLAKE2b-256 b4a7cbb4975504692041d8ee4820ad6828300a56271e5d8368dcc2a501dba98b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 535cfee7f65c76dde66c7a39ae4b291a95128ac2e06ba1dcbb15ad3c57f22a1c
MD5 f4d16c53451c13f80102e9fc17f31131
BLAKE2b-256 4a9488996b6338941e87225bc4938385818f7e37b56f8dfff898113715ed9b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 601ac711aa0daa3b09b98851c0ff910164e305d124c189efbd23d7b8163fa1d7
MD5 917ad9dfc57c8fba29e4290e1d9f61dd
BLAKE2b-256 85f6e5c62d176f5b332620c0bc77c44e316a42fe6ceb2a52f0731964d049ab6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53704ecb87256c3cb3e3030e0dbc68357d51f371ca3c319ef892acb6a051b14a
MD5 af91a8b0319ebd29bb965bb5760f057f
BLAKE2b-256 c1d42b2bd8868c1c19b70ac2a83af9ab80eca3c98352a5b57a904879ee1888ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d757f3e538444f043fa1f3fb0bb57e6094092f729593a5001dc75037aba7113
MD5 31721ecc96486e2bdb232de610bb9c29
BLAKE2b-256 f9adaeb2d224e3387e6994227bd7ae0c086bfc099a7a7140fcd70c898cd57147

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 432d5d40db3f0ab55aa22030ac19aec84c538017a6b722ed4d2df068fbc9f796
MD5 b9f76512df24a3bd35d69ab1a1b81160
BLAKE2b-256 0cee6ce339bcf1180b5464231d4d9054b7e8984c940fce247a139894105f2f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d686c7d6747bed26234b9f63b18add3d8b64185978b807b0079b8b87aade734b
MD5 87148b5f6d0e718876d6cc60b5d5323d
BLAKE2b-256 18c67d53ea2aa1fe258670101ab4a37a69192fa5684e0c1e457a5590bf97d75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d364a9df685e8f61ee78b8592ade41306d62fd1ec20d148d677bdd4fa69afc1f
MD5 cf7cab7b3288f21e6da01c1f4a497ab8
BLAKE2b-256 cf16b61981ebeb7dcac60e75624eba24006c3766d013bbc3a7def5775817afd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 717211c9ce6d7c01851e770ac66168c46ca4ad5ea38875690635bf39df580217
MD5 dac4350f34da5e8771c76f1afca8a42d
BLAKE2b-256 238ec4c32406832ac1a0531a1ade197b63884b33a0f1c18ca6ee221833060424

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dddaad872df3ec4c608fefa3ec747712642c661dfbc19abdd310dffaac6e050e
MD5 e6765b7f92a45124b8ef0d46d182146b
BLAKE2b-256 cd56b3625307a4c6f938c52798031cd7105542cb6b836b6128651b2062237f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96ed91685f385b721726a01decf72abccbcb92c010fc8040dc478e4dad0629ba
MD5 2920efa7448da4624fa99bd153a9c583
BLAKE2b-256 2467ac2a31171e309e2b518fcb8c86812eb978f071a9811497d53f7657c185c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc8ab5bbb629f4fd9a045917308020f74779d0367099e503aba703f2ab75b08a
MD5 8b7daa51ed7ed6e8d5bc0a7f9062c781
BLAKE2b-256 80b0e663fb35a1f2384ab0bbe009b10238f19e5aeb0b9d0f9aa22292484dad5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d967319a8670ef10f3a26edcc7b24992b4ae09e3b8d71f586512f697154191bd
MD5 603e299b854373374d49ea0b3014c7af
BLAKE2b-256 1b23f702744c2e84bf2dff3dd919cd565458a0265b78367c46d728d389210b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ec59e1ffeae653f29922caedbb31ff4c756dd99d4c11fc1b63cfb51fac665865
MD5 25f2dea3ec101178e975486072b17d97
BLAKE2b-256 b003787ac65b9ac6cef28343f6dd1fbd458ca34126f3ae0246c5897568b5d491

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cc2f2c7b156b2c2ba3c2bcb216864586ecf0ec04b39f606613054658ded4f0f
MD5 f65d3858f62972e38ab032fd33f2887f
BLAKE2b-256 3e1e1e765ca9a8b0aab77b7a9409936e34c2bf9dff8a015f827981c88b0c3373

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bef5ceca3fc42705e6ab0f69f6d3e7c809cc98566a6de938132581e0fcc2bcd6
MD5 428fe34baa52e32a7672d844e784cf21
BLAKE2b-256 44719785d47067fde2f7dbb35f7562971468292f99b932b122356c1a8a0e0da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7423959c1d83516dae7b8546bbf6b765597fab2292a2c1ceecfc1b0d482e1e2a
MD5 25e0072b40ed2e59e642746608fe2c24
BLAKE2b-256 40f33d59b6d3a3a143b4a8c50c3dd82c4beb4d4ef327a191562b0a6962e2ae29

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11a1736aabfbe3cae40656790fe49e2746f1d937979ae45480bf550c530ad9fc
MD5 a59bf70855b7896e2194e1b3511017db
BLAKE2b-256 77809727ebeb7ae8f74ea22f36237f73628020055afd16e0696a909c0d9729bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f2a3e5a52d140879c756010cc61ec31ffbac6bb23df8a738402e17833c3cfbcb
MD5 aa1af041989d92298581fb6156ac7635
BLAKE2b-256 36d43dc01c3c650574390a2c90d17f97055b8180f67cbf37dd8663f4014c8c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d6bffd5f7bb48efa072fc25536e6eef36e021d3da0ab4877a474f3d3c479ba1
MD5 1f6f37bcbb9b6c4c69f1e7b8dbd6fc52
BLAKE2b-256 4942832b9d6c49562a4cff1be0a608eb94868e9c50ae93b30d7af8df2135f341

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-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.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b8f72edba8eab73b4842bfbe0c06f31542b6dcf6f854d018a7e287bd23ac51c
MD5 5b5a9bcf1ebd8d1ae5b7c50269e55241
BLAKE2b-256 2d5b0c78e0286d9b6c46112b629c7a44d82fc7b8d0b3cde7d99727bde68b72e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15164b637cdad3992f303da252d0d20cadd8c56fa1076113ab02e2c869f413aa
MD5 f52001adb21960e3994f667400fa4718
BLAKE2b-256 3664d5800099e8e0f3b558b1738eec7375fcd7309d5a611858deac3ed4eb7d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 614ce27d94fa829586b88979dab2dd1052a88924e1b7420325d0f56afc473a27
MD5 86f760a5880e846cb1e6cdaae2e392cb
BLAKE2b-256 6ba466a9164abc5844c2891f79fcd26ab46b15465cc206c39b8de0ac3eff356e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.21.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6383d3b9a7e481d83caf308dcd5ec9ec0d31bccdd42d8f28f97684b34ab20b1b
MD5 28e00ec724824f06fcd7ed9512ed251c
BLAKE2b-256 d36bf8d015452ce3bfdbd6c7c798710e63ab3cb7046c3d2a649fb79a5484765c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yggdrasil_python_rapidjson-1.21.0.0-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