Skip to main content

yggdrasil-python-rapidjson

Python wrapper around YggdrasilRapidJSON

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

Release files for yggdrasil-python-rapidjson 1.23.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for yggdrasil-python-rapidjson 1.23.0.1
File Size Uploaded
yggdrasil_python_rapidjson-1.23.0.1.tar.gz 1.1 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for yggdrasil-python-rapidjson 1.23.0.1
File
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 26.7 MB

Release files / yggdrasil_python_rapidjson-1.23.0.1.tar.gz

Download URL yggdrasil_python_rapidjson-1.23.0.1.tar.gz
Size 1.1 MB
Tags Source
SHA-256 checksum
How to use checksums
f5d659e61ac5efd0a16fd8405961b69f7a6e89d4c39e1d16658cf03e84ee1860
BLAKE2b-256 checksum
How to use checksums
43b9de241a24be89b936236ec3de02acb0873d72e395666299e4c3c97d5d39c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win_amd64.whl
Size 745.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ff6d7294512f0fd45710b2edd65dee74d9d47bff65d766c7463a4aa35777455a
BLAKE2b-256 checksum
How to use checksums
06711862c6150130e4474d7123ecc7a267e55c27076ee9d578580f04d345cd1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-win32.whl
Size 625.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
35069da00a52b5f1794ae62fb2615ef348914b54f11bbc2115a622a9874bdba6
BLAKE2b-256 checksum
How to use checksums
f1d65b1b90050f7d8680f18db5e99de7ad8de7233e1fe8598891056b2a3b3191
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9076566f32fd33935d05ade126c39f70b6902fe1a1e8786f8c76247bf178b18f
BLAKE2b-256 checksum
How to use checksums
a5a79be89fba6ce64b983d6a364e9519af4309266bec2cbd5328f37a00dc05e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
83c7c54b6e9c703d7153e3c83d49c3f761c9165a72ce77299e1a2beb5374c948
BLAKE2b-256 checksum
How to use checksums
1e51862d317216cce5797505826f39c00cc7f82c68d0be8144f027401ba45fa7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 815.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
24b373a1294821f2df65142e19d2580b50daf2d8c7ce03eac5a5b35e3f929954
BLAKE2b-256 checksum
How to use checksums
cbd297b42a8564d7b70367ead2dc311b6f3ae5bdffb42a9a596ae1c6786d4928
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win_amd64.whl
Size 739.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8a477c15f7b355d26035563b63e2efb1aa407cdf7953bf9c9260b0ed5682eaaa
BLAKE2b-256 checksum
How to use checksums
171e3ec128f59622d5093d523ee25c152e332e6014099c13b233da7e9e000724
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-win32.whl
Size 618.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
d2d2cb23b638738f5c0f7cac4f0e8ff64dfa5b98cf8a38261004f0e626db235e
BLAKE2b-256 checksum
How to use checksums
b665b06e5b92e02b1ee837f440736b3a8fb038d317679d26720868d2d7fa0846
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d2ec5a1c432c8d284495867ca7e04a11d1ae30a1c5875db27f437644adfffbb9
BLAKE2b-256 checksum
How to use checksums
ce85256c87eb0652e2c4c302ae26c7ff05b1ff64b211c689f350bacceef6f04d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
48f8fe2b455394de29de5e3deb44bb89715a2cd03ce65aefa1f1dd0eabdaed26
BLAKE2b-256 checksum
How to use checksums
1fd86cd21996803ff5b7549f1cabebe60c12cd9d4ef8680f03f2596c0d61a3d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp314-cp314-macosx_11_0_arm64.whl
Size 807.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a4602df1b97f95076c9758b042bb1c8edd7bcc20d5d8a4d9d421a43f5733dff1
BLAKE2b-256 checksum
How to use checksums
1785543655424bfdd537b25d24c4b4ebeb128ff430ad8433e2c791d3f78dc28e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win_amd64.whl
Size 719.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d1c6f3e0bd1d4a44e4c742f6886c06a1b37532728cc0114e7964d04e1b80b906
BLAKE2b-256 checksum
How to use checksums
b24d008a5761258138d37956df23c6722f750c3c7019858eef49a37a869dc55c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-win32.whl
Size 606.9 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e803455176d7789f14dea4afff55e81bb0c5c624337d3de316e8a50603163426
BLAKE2b-256 checksum
How to use checksums
ea35f62c574524b16ef397272dd9a804d40fbbae4c7fde597ce1695499e0088a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c51f1d1f6b212787c8b1a4a3aaf790dc3f935014859f4b0775b768e74906a318
BLAKE2b-256 checksum
How to use checksums
e8a73b32cd2c99db885cf8034470152892782549368b7b16010fc5ef969c9397
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4465dc7fb4e466778e371d42ea2536245e5e4653ad75d7da34b7066e0b2894e9
BLAKE2b-256 checksum
How to use checksums
88f001a2195b00ebfa2412176cafe1fe0534232b6e32e9f3bdabd83f9ae895b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp313-cp313-macosx_11_0_arm64.whl
Size 807.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
38a9c07499f2141673e1475ee3d08ab4e468a55e5a9456bc842d232a71047953
BLAKE2b-256 checksum
How to use checksums
b2ce40cb6a2f9d072ddf2be572c2bc5dc6feeeb3dbc0b4ab8fa92e644fe09ae7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win_amd64.whl
Size 720.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
08b3106e5518274b534f5b4f637cd57e10d9df2b32bed294cf5f16447ad156db
BLAKE2b-256 checksum
How to use checksums
7c96d43e36e95ba73e911f65e3a96051c4157eccd4ed5035cc642bf3abf67303
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-win32.whl
Size 606.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
58224b36ab6b77488d1d808c26624d1d77b1f67e791e3b5aa0d8ec632865ea13
BLAKE2b-256 checksum
How to use checksums
cec18682b3ff621c6c04280aea3dfcc6ffd553edf0ed0a995b7a5dd30237ba6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6c2f28aae056bcfa17677a41e9db191799028d3bd3bc7f59e9932d56775578ce
BLAKE2b-256 checksum
How to use checksums
5f6ca543fe6998ac12c0e5e2e49f2e704dc5ab4ec192874fccba11a9fc6c72eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4552ecfffb276987ae474cfe69df65a8fd70f0ee38a8f018eb4a5389e8e4671e
BLAKE2b-256 checksum
How to use checksums
e261519b0be36f00d2e836ad36f8314d6966d416e72ae4c50ad61426fa77e29a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp312-cp312-macosx_11_0_arm64.whl
Size 807.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
81344bf6fde8646a7bec7dd18514dc7428a0262b367e36e51bc8a4c0c4abeced
BLAKE2b-256 checksum
How to use checksums
ce99143388944b15b1a42f23723f7c590d04c4642cf5adef52f22bd9e7a60573
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win_amd64.whl
Size 716.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a3c2742efe1635613f15e650642d0b72d93db40cba6f1ad4ac45006c04145cbf
BLAKE2b-256 checksum
How to use checksums
0d6b5439d08f6e0942bc47f2aa0d41a9232e57a99ebcc2b33f6f663f84f087ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-win32.whl
Size 606.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
0f551645be851748f6ae6a6e5db3a9ff80833281b12d2aecd74df2d6b11f6321
BLAKE2b-256 checksum
How to use checksums
3d20685c34b2fa9d6c26a34dfa8e27e54e54404a9260075c47da1131c98b8361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d5e3435ead5a8c10f257e280deb15bc2b92bf9ffe84d0b045d2d200f5db463d2
BLAKE2b-256 checksum
How to use checksums
1d1b1584f4e7c00678f78b5c131eebfb76ca7be5a438a49af8c565f0d12c1585
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ed0a97a18033c2188afd06b4cc687cfe2ff59c47e85f6e4723ca02acfa2f49ec
BLAKE2b-256 checksum
How to use checksums
96f32302e78c2217c7ce952d85ea5b91b427f8eb34f8778f515b14bc980dc1dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp311-cp311-macosx_11_0_arm64.whl
Size 805.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ff66452d1c7d44a536a6f722470dc083a25269633b394a9a49ebfa31002b9824
BLAKE2b-256 checksum
How to use checksums
44456689fc803e2afc6267910560067609e97188ddfe34ac924439cfe713a7ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win_amd64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win_amd64.whl
Size 715.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
47379385089098e2deae32d927ce188d2000cdba1d149ad48cb10d02164ff7a3
BLAKE2b-256 checksum
How to use checksums
30bb1545431465d76c80c3aea52dc0a051d7930b43ad14b56fb802a44ce563fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win32.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-win32.whl
Size 606.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
95c45c4cbf77f2535ae364fcee72e8d58317d3dc649e16e4578e930afaabc7f1
BLAKE2b-256 checksum
How to use checksums
1d4a60ac071520aab53fcec94c54b1098d97481afe9b7535df23eb6a98bdc76b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
979bd72c8a3a087cb15e800eb66eb37238d26c517c7828b059a881a1c6e27932
BLAKE2b-256 checksum
How to use checksums
3f616a7988f499a2294e139246fc8db3f88a7f31ba8a13a8ae53bdb01f543119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b62152f97065f15967cd12a4c91ceeed621dc1ec853280a099f34ec1c9551e4c
BLAKE2b-256 checksum
How to use checksums
e31a2f445f74ed852bfdf4183c2753d7a18e3e6ef1cd0b3ba66bb67b487f94f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release files / yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL yggdrasil_python_rapidjson-1.23.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 805.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9d4f97184aa1f7f6bb2453e9785237bbed0a4c1d3fa09424365b9e6e182b3262
BLAKE2b-256 checksum
How to use checksums
0e417ee826685b5ab86ed501394a9d647867a4ae4f53df56cd20a3308a059686
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 13, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.23.0.1 This release

31 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page