Skip to main content
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 (NOTE: the conda-forge feedstock for yggdrasil-python-rapidjson is not yet available, but will be once the PR is merged):

$ 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 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

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.23.0.1.tar.gz (1.1 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.23.0.1-cp314-cp314t-win_amd64.whl (745.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win32.whl (625.3 kB view details)

Uploaded CPython 3.14tWindows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl (815.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win_amd64.whl (739.3 kB view details)

Uploaded CPython 3.14Windows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win32.whl (618.6 kB view details)

Uploaded CPython 3.14Windows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp314-cp314-macosx_11_0_arm64.whl (807.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win_amd64.whl (719.8 kB view details)

Uploaded CPython 3.13Windows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win32.whl (606.9 kB view details)

Uploaded CPython 3.13Windows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp313-cp313-macosx_11_0_arm64.whl (807.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win_amd64.whl (720.0 kB view details)

Uploaded CPython 3.12Windows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win32.whl (606.9 kB view details)

Uploaded CPython 3.12Windows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp312-cp312-macosx_11_0_arm64.whl (807.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win_amd64.whl (716.4 kB view details)

Uploaded CPython 3.11Windows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win32.whl (606.1 kB view details)

Uploaded CPython 3.11Windows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp311-cp311-macosx_11_0_arm64.whl (805.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win_amd64.whl (715.8 kB view details)

Uploaded CPython 3.10Windows x86-64

yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win32.whl (606.2 kB view details)

Uploaded CPython 3.10Windows x86

yggdrasil_python_rapidjson-1.23.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.23.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.23.0.1-cp310-cp310-macosx_11_0_arm64.whl (805.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1.tar.gz
Algorithm Hash digest
SHA256 f5d659e61ac5efd0a16fd8405961b69f7a6e89d4c39e1d16658cf03e84ee1860
MD5 509bba2bfe9df61913847e4a5bc5b4a6
BLAKE2b-256 43b9de241a24be89b936236ec3de02acb0873d72e395666299e4c3c97d5d39c2

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ff6d7294512f0fd45710b2edd65dee74d9d47bff65d766c7463a4aa35777455a
MD5 c162870f5f5d05d17d877b7f2db52cf9
BLAKE2b-256 06711862c6150130e4474d7123ecc7a267e55c27076ee9d578580f04d345cd1e

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 35069da00a52b5f1794ae62fb2615ef348914b54f11bbc2115a622a9874bdba6
MD5 1cfdb54fdf39f3660f35b4bc31278444
BLAKE2b-256 f1d65b1b90050f7d8680f18db5e99de7ad8de7233e1fe8598891056b2a3b3191

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9076566f32fd33935d05ade126c39f70b6902fe1a1e8786f8c76247bf178b18f
MD5 b9d1234c1d98c35123e5833d2c818cff
BLAKE2b-256 a5a79be89fba6ce64b983d6a364e9519af4309266bec2cbd5328f37a00dc05e5

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83c7c54b6e9c703d7153e3c83d49c3f761c9165a72ce77299e1a2beb5374c948
MD5 5d5c65fa7e1e78e6316896bdbabfe759
BLAKE2b-256 1e51862d317216cce5797505826f39c00cc7f82c68d0be8144f027401ba45fa7

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24b373a1294821f2df65142e19d2580b50daf2d8c7ce03eac5a5b35e3f929954
MD5 b10986b3f8d9fe00468bc1e36cbca1fc
BLAKE2b-256 cbd297b42a8564d7b70367ead2dc311b6f3ae5bdffb42a9a596ae1c6786d4928

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8a477c15f7b355d26035563b63e2efb1aa407cdf7953bf9c9260b0ed5682eaaa
MD5 2b38157889b911ab61031a08bb7ca05a
BLAKE2b-256 171e3ec128f59622d5093d523ee25c152e332e6014099c13b233da7e9e000724

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d2d2cb23b638738f5c0f7cac4f0e8ff64dfa5b98cf8a38261004f0e626db235e
MD5 1070efbfec6e5133f9c46d562519d8de
BLAKE2b-256 b665b06e5b92e02b1ee837f440736b3a8fb038d317679d26720868d2d7fa0846

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2ec5a1c432c8d284495867ca7e04a11d1ae30a1c5875db27f437644adfffbb9
MD5 d3cc1b5225cd94c00696715f648b6aa4
BLAKE2b-256 ce85256c87eb0652e2c4c302ae26c7ff05b1ff64b211c689f350bacceef6f04d

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48f8fe2b455394de29de5e3deb44bb89715a2cd03ce65aefa1f1dd0eabdaed26
MD5 d2715e8a6a503d15636ac317a1b168e2
BLAKE2b-256 1fd86cd21996803ff5b7549f1cabebe60c12cd9d4ef8680f03f2596c0d61a3d2

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4602df1b97f95076c9758b042bb1c8edd7bcc20d5d8a4d9d421a43f5733dff1
MD5 e6da63d73524d3c1fd2b4694486d5729
BLAKE2b-256 1785543655424bfdd537b25d24c4b4ebeb128ff430ad8433e2c791d3f78dc28e

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1c6f3e0bd1d4a44e4c742f6886c06a1b37532728cc0114e7964d04e1b80b906
MD5 52d21256899bb6ecff263d8f19ff370b
BLAKE2b-256 b24d008a5761258138d37956df23c6722f750c3c7019858eef49a37a869dc55c

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e803455176d7789f14dea4afff55e81bb0c5c624337d3de316e8a50603163426
MD5 b63ae652ae760cd23cdb0d9a4810ff13
BLAKE2b-256 ea35f62c574524b16ef397272dd9a804d40fbbae4c7fde597ce1695499e0088a

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c51f1d1f6b212787c8b1a4a3aaf790dc3f935014859f4b0775b768e74906a318
MD5 1a450b5bc872a9162e27925f9ae60723
BLAKE2b-256 e8a73b32cd2c99db885cf8034470152892782549368b7b16010fc5ef969c9397

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4465dc7fb4e466778e371d42ea2536245e5e4653ad75d7da34b7066e0b2894e9
MD5 bb16cc8530226a9883c948cdb0f58690
BLAKE2b-256 88f001a2195b00ebfa2412176cafe1fe0534232b6e32e9f3bdabd83f9ae895b5

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a9c07499f2141673e1475ee3d08ab4e468a55e5a9456bc842d232a71047953
MD5 cf3077d4ee34bcc5d8d14b37c6ac3f87
BLAKE2b-256 b2ce40cb6a2f9d072ddf2be572c2bc5dc6feeeb3dbc0b4ab8fa92e644fe09ae7

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08b3106e5518274b534f5b4f637cd57e10d9df2b32bed294cf5f16447ad156db
MD5 98fb4cbf6a1014510d52a5e8d5112458
BLAKE2b-256 7c96d43e36e95ba73e911f65e3a96051c4157eccd4ed5035cc642bf3abf67303

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 58224b36ab6b77488d1d808c26624d1d77b1f67e791e3b5aa0d8ec632865ea13
MD5 99b426a6e2b9c91a0e0904ff32c64b6d
BLAKE2b-256 cec18682b3ff621c6c04280aea3dfcc6ffd553edf0ed0a995b7a5dd30237ba6e

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c2f28aae056bcfa17677a41e9db191799028d3bd3bc7f59e9932d56775578ce
MD5 79fe83a7ee4aab9f4c08b19c4a4c8a73
BLAKE2b-256 5f6ca543fe6998ac12c0e5e2e49f2e704dc5ab4ec192874fccba11a9fc6c72eb

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4552ecfffb276987ae474cfe69df65a8fd70f0ee38a8f018eb4a5389e8e4671e
MD5 fa1662115fb07d9a7462db34a6ad06d4
BLAKE2b-256 e261519b0be36f00d2e836ad36f8314d6966d416e72ae4c50ad61426fa77e29a

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81344bf6fde8646a7bec7dd18514dc7428a0262b367e36e51bc8a4c0c4abeced
MD5 e568a74d7c044eaa5b1c575ebe19d9e6
BLAKE2b-256 ce99143388944b15b1a42f23723f7c590d04c4642cf5adef52f22bd9e7a60573

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a3c2742efe1635613f15e650642d0b72d93db40cba6f1ad4ac45006c04145cbf
MD5 6da06eeb09bebdc96ae0f8cc11bfc6cb
BLAKE2b-256 0d6b5439d08f6e0942bc47f2aa0d41a9232e57a99ebcc2b33f6f663f84f087ee

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0f551645be851748f6ae6a6e5db3a9ff80833281b12d2aecd74df2d6b11f6321
MD5 b0cc53a275b0c6490a5ace6cd7880d50
BLAKE2b-256 3d20685c34b2fa9d6c26a34dfa8e27e54e54404a9260075c47da1131c98b8361

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5e3435ead5a8c10f257e280deb15bc2b92bf9ffe84d0b045d2d200f5db463d2
MD5 17a70b2de6749e8295b6c32576aa05a2
BLAKE2b-256 1d1b1584f4e7c00678f78b5c131eebfb76ca7be5a438a49af8c565f0d12c1585

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed0a97a18033c2188afd06b4cc687cfe2ff59c47e85f6e4723ca02acfa2f49ec
MD5 0bfdfd3a73ac6bd51e13f39ebf5b17cb
BLAKE2b-256 96f32302e78c2217c7ce952d85ea5b91b427f8eb34f8778f515b14bc980dc1dc

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff66452d1c7d44a536a6f722470dc083a25269633b394a9a49ebfa31002b9824
MD5 cd86fb484e6db8da047a5e2f2474dfdc
BLAKE2b-256 44456689fc803e2afc6267910560067609e97188ddfe34ac924439cfe713a7ed

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47379385089098e2deae32d927ce188d2000cdba1d149ad48cb10d02164ff7a3
MD5 b9443e3ad6f16830bdcce247986acec0
BLAKE2b-256 30bb1545431465d76c80c3aea52dc0a051d7930b43ad14b56fb802a44ce563fb

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 95c45c4cbf77f2535ae364fcee72e8d58317d3dc649e16e4578e930afaabc7f1
MD5 71cd9dc541877f571e917e6081f69649
BLAKE2b-256 1d4a60ac071520aab53fcec94c54b1098d97481afe9b7535df23eb6a98bdc76b

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.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.23.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 979bd72c8a3a087cb15e800eb66eb37238d26c517c7828b059a881a1c6e27932
MD5 406303d24a7599a8b403c8ef0721b679
BLAKE2b-256 3f616a7988f499a2294e139246fc8db3f88a7f31ba8a13a8ae53bdb01f543119

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b62152f97065f15967cd12a4c91ceeed621dc1ec853280a099f34ec1c9551e4c
MD5 1645197389195c81fdebace0bdc6220b
BLAKE2b-256 e31a2f445f74ed852bfdf4183c2753d7a18e3e6ef1cd0b3ba66bb67b487f94f0

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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.23.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4f97184aa1f7f6bb2453e9785237bbed0a4c1d3fa09424365b9e6e182b3262
MD5 3bac68a01450970fa79a92bc4c88afe0
BLAKE2b-256 0e417ee826685b5ab86ed501394a9d647867a4ae4f53df56cd20a3308a059686

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.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