Skip to main content

Python wrapper around rapidjson

Project description

Authors:

Ken Robbins <ken@kenrobbins.com>

Lele Gaifax <lele@metapensiero.it>

License:

MIT License

Status:
Build status Documentation status

RapidJSON is an extremely fast C++ JSON parser and serialization library: this module wraps it into a Python 3 extension, exposing its serialization/deserialization (to/from either bytes, str or file-like instances) and JSON Schema validation capabilities.

Latest version documentation is automatically rendered by Read the Docs.

Getting Started

First install python-rapidjson:

$ pip install python-rapidjson

or, if you prefer Conda:

$ conda install -c conda-forge python-rapidjson

Basic usage looks like this:

>>> import rapidjson
>>> data = {'foo': 100, 'bar': 'baz'}
>>> rapidjson.dumps(data)
'{"foo":100,"bar":"baz"}'
>>> rapidjson.loads('{"bar":"baz","foo":100}')
{'bar': 'baz', 'foo': 100}
>>>
>>> class Stream:
...   def write(self, data):
...      print("Chunk:", data)
...
>>> 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/python-rapidjson/python-rapidjson.git

A set of makefiles implement most common operations, such as build, check and release; see make help output for a list of available targets.

Performance

python-rapidjson tries to be as performant as possible while staying compatible with the json module.

See this section in the documentation for a comparison with other JSON libraries.

Incompatibility

Although we tried to implement an API similar to the standard library json, being a strict drop-in replacement in not our goal and we have decided to depart from there in some aspects. See this section in the documentation for further details.

Changes

1.21 (2025-07-10)

  • Use current master version of rapidjson, thanks to Kyle Gottfried (although I didn’t merge his PR #224)

  • Recompute comparison table with latest versions of other libraries, using Python 3.13

  • Typing stubs: specify default value for stream argument of Encoder.__call__() (issue #215)

  • Use more recent OS images on GH Actions to test and build wheels

1.20 (2024-08-05)

  • Rectify type hints of loads() and Decoder.__call__() (issue #214)

  • Ensure Validator receives valid UTF-8 bytes/bytearray arguments

  • Generate wheels on PyPI using Python 3.13.0rc1 release, thanks to cibuildwheel 2.20.0

1.19 (2024-07-28)

  • Properly dump subclasses of float with custom __repr__() method ( issue #213)

1.18 (2024-06-29)

  • Expose PEP-484 typing stubs, thanks to Rodion Kosianenko and GoodWasHere (PR #204)

1.17 (2024-05-18)

  • Use current master version of rapidjson

  • Generate wheels on PyPI using Python 3.13b1 release, thanks to cibuildwheel 2.18.0

1.16 (2024-02-28)

  • Produce Python 3.8 wheels again, I deactivated it too eagerly, it’s in security fixes only mode, not yet reached its end-of-life state

1.15 (2024-02-28)

1.14 (2023-12-14)

  • Produce binary wheels for macOS/arm64, thanks to timothyjlaurent (PR #195)

1.13 (2023-10-29)

  • Fix handling of write_mode in dump functions (problem emerged discussing issue #191)

1.12 (2023-10-07)

  • Generate wheels on PyPI using final Python 3.12 release, thanks to cibuildwheel 2.16.2

1.11 (2023-09-11)

1.10 (2023-03-15)

1.9 (2022-10-17)

  • Produce Python 3.11 wheels, thanks to cibuildwheel 2.11.1

1.8 (2022-07-07)

1.7 (2022-07-06)

  • Use current master version of rapidjson

  • Update the test suite to work on Pyston, thanks to Kevin Modzelewski (PR #161)

1.6 (2022-02-19)

  • Fix memory leak when using end_array (issue #160)

1.5 (2021-10-16)

  • Fix serialization bug when using DM_UNIX_TIME in a non-C locale context

1.4 (2021-06-25)

  • Build binary wheel for aarch64, thanks to odidev (PR #156)

1.3 (2021-06-25)

  • Yet another attempt to fix automatic wheels upload

1.2 (2021-06-25)

  • Fix automatic wheels upload from GH Actions to PyPI

1.1 (2021-06-25)

  • Reduce decoder memory consumption by uniquifiying keys in the loaded dictionaries

  • Implement an alternative way of transmogrify JSON objects, similar to json‘s object_pairs_hook load option (issue #154)

1.0 (2020-12-13)

  • Require Python 3.6 or greater

  • New serialization options, iterable_mode and mapping_mode, to give some control on how generic iterables and mappings get encoded (fix issue #149 and issue #150)

  • Internal refactorings, folding “skipkeys” and “sort_keys” arguments into the mapping_mode options, respectively as MM_SKIP_NON_STRING_KEYS and MM_SORT_KEYS: “old” arguments kept for backward compatibility

  • Bump major version to 1, tag as “production/stable” and switch to a simpler X.Y versioning schema

0.9.4 (2020-11-16)

  • Fix memory leak loading an invalid JSON (issue #148)

0.9.3 (2020-10-24)

  • Fix access to Encoder instance attributes (issue #147)

0.9.2 (2020-10-24)

  • Use current master version of rapidjson

  • Enable GH Actions-based test workflow, thanks to Martin Thoma (PR #143)

  • Produce Python 3.9 wheels, disable testing under Python < 3.6

  • Make the character used for indentation in pretty mode a parameter (issue #135)

  • Handle wider precision range in timestamps fractional seconds (PR 133), thanks to Karl Seguin

  • Add comparison benchmarks against orjson and hyperjson (issue #130 and PR #131, thanks to Sebastian Pipping)

0.9.1 (2019-11-13)

  • Fix memory leak in case of failed validation (issue #126)

0.9.0 (2019-11-13)

  • Produce Python 3.8 wheels

  • Compatibility fix for Python 3.8 (issue #125)

  • New dump option write_mode, supporting RapidJSON’s kFormatSingleLineArray option (issue #123), thanks to Nguyễn Hồng Quân for the initial implementation (PR #124)

0.8.0 (2019-08-09)

  • New serialization option bytes_mode to control how bytes instances get encoded (issue #122)

0.7.2 (2019-06-09)

  • Hopefully fix the memory leak when loading from a stream (issue #117)

0.7.1 (2019-05-11)

  • Raise a more specific exception on loading errors, JSONDecodeError, instead of generic ValueError (issue #118)

  • Fix optimization path when using OrderedDicts (issue #119)

  • Fix serialization of IntEnums (issue #121)

  • I spent quite a lot of time investigating on the memory leak when loading from a stream (issue #117): as I was not able to fully replicate the problem, I cannot be sure I solved the problem… sorry!

0.7.0 (2019-02-11)

  • Raise correct exception in code samples (PR #109), thanks to Thomas Dähling

  • Fix compilation with system-wide install of rapidjson (issue #110)

  • Use current master version of rapidjson, that includes a fix for its issue #1368 and issue #1336, and cures several compilation warnings as well (issue #112 and issue #107)

  • Fix memory leak when using object_hook (issue #115)

0.6.3 (2018-07-11)

  • No visible changes, but now PyPI carries binary wheels for Python 3.7.

0.6.2 (2018-06-08)

  • Use a more specific ValidationError, to differentiate from invalid JSON

0.6.1 (2018-06-06)

  • Nothing new, attempt to build Python 3.6 binary wheels on Travis CI

0.6.0 (2018-06-06)

  • Add a new comparison table involving ensure_ascii (issue #98)

  • Use Python’s repr() to emit float values instead of rapidjson’s dtoa() (issue #101)

  • Use a newer (although unreleased) version of rapidjson to fix an issue with JSONSchema validation (PR #103), thanks to Anthony Miyaguchi

0.5.2 (2018-03-31)

  • Tiny tweak to restore macOS build on Travis CI

0.5.1 (2018-03-31)

  • Minor tweaks to CI and PyPI deploy configuration

0.5.0 (2018-03-31)

  • New RawJSON class, allowing inclusion of pre-serialized content (PR #95 and PR #96), thanks to Silvio Tomatis

0.4.3 (2018-01-14)

  • Deserialize from bytes and bytearray instances, ensuring they contain valid UTF-8 data

  • Speed up parsing of floating point numbers, avoiding intermediary conversion to a Python string (PR #94)

0.4.2 (2018-01-09)

  • Fix precision handling of DM_UNIX_TIME timestamps

0.4.1 (2018-01-08)

  • Fix memory leaks in Decoder() and Encoder() classes, related to bad handling of PyObject_GetAttr() result value

  • Fix compatibility with Python 3.7a

0.4.0 (2018-01-05)

  • Implemented the streaming interface, see load() and dump() (issue #80)

    Backward incompatibility: now the flags arguments on all the functions are keyword only, to mimic stdlib’s json style

0.3.2 (2017-12-21)

0.3.1 (2017-12-20)

  • Fix Travis CI recipe to accomodate MacOS

0.3.0 (2017-12-20)

  • Fix compilation on MacOS (issue #78)

  • Handle generic iterables (PR #89)

    Backward incompatibility: the dumps() function and the Encoder() constructor used to accept a max_recursion_depth argument, to control the maximum allowed nesting of Python structures; since the underlying function is now effectively recursive, it has been replaced by the generic sys.setrecursionlimit() mechanism

0.2.7 (2017-12-08)

  • Restore compatibility with Python < 3.6

0.2.6 (2017-12-08)

  • Fix memory leaks when using object_hook/start_object/end_object

0.2.5 (2017-09-30)

  • Fix bug where error handling code could raise an exception causing a confusing exception to be returned (PR #82)

  • Fix bug where loads’s object_hook and dumps’s default arguments could not be passed None explicitly (PR #83)

  • Fix crash when dealing with surrogate pairs (issue #81)

0.2.4 (2017-09-17)

  • Fix compatibility with MacOS/clang

0.2.3 (2017-08-24)

  • Limit the precision of DM_UNIX_TIME timestamps to six decimal digits

0.2.2 (2017-08-24)

  • Nothing new, attempt to fix production of Python 3.6 binary wheels

0.2.1 (2017-08-24)

  • Nothing new, attempt to fix production of Python 3.6 binary wheels

0.2.0 (2017-08-24)

  • New parse_mode option, implementing relaxed JSON syntax (issue #73)

  • New Encoder and Decoder, implementing a class-based interface

  • New Validator, exposing the underlying JSON schema validation (issue #71)

0.1.0 (2017-08-16)

  • Remove beta status

0.1.0b4 (2017-08-14)

  • Make execution of the test suite on Appveyor actually happen

0.1.0b3 (2017-08-12)

  • Exclude CI configurations from the source distribution

0.1.0b2 (2017-08-12)

  • Fix Powershell wheel upload script in appveyor configuration

0.1.0b1 (2017-08-12)

  • Compilable with somewhat old g++ (issue #69)

  • Backward incompatibilities:

    • all DATETIME_MODE_XXX constants have been shortened to DM_XXX DATETIME_MODE_ISO8601_UTC has been renamed to DM_SHIFT_TO_UTC

    • all UUID_MODE_XXX constants have been shortened to UM_XXX

  • New option DM_UNIX_TIME to serialize date, datetime and time values as UNIX timestamps targeting issue #61

  • New option DM_NAIVE_IS_UTC to treat naïve datetime and time values as if they were in the UTC timezone (also for issue #61)

  • New keyword argument number_mode to use underlying C library numbers

  • Binary wheels for GNU/Linux and Windows on PyPI (one would hope: this is the reason for the beta1 release)

0.0.11 (2017-03-05)

  • Fix a couple of refcount handling glitches, hopefully targeting issue #48.

0.0.10 (2017-03-02)

  • Fix source distribution to contain all required stuff (PR #64)

0.0.9 (2017-03-02)

0.0.8 (2016-12-09)

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

python_rapidjson-1.21.tar.gz (238.9 kB view details)

Uploaded Source

Built Distributions

python_rapidjson-1.21-cp313-cp313-win_amd64.whl (148.4 kB view details)

Uploaded CPython 3.13Windows x86-64

python_rapidjson-1.21-cp313-cp313-win32.whl (128.5 kB view details)

Uploaded CPython 3.13Windows x86

python_rapidjson-1.21-cp313-cp313-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_rapidjson-1.21-cp313-cp313-musllinux_1_2_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

python_rapidjson-1.21-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_rapidjson-1.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.21-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp313-cp313-macosx_11_0_arm64.whl (210.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_rapidjson-1.21-cp313-cp313-macosx_10_13_x86_64.whl (220.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_rapidjson-1.21-cp312-cp312-win_amd64.whl (148.4 kB view details)

Uploaded CPython 3.12Windows x86-64

python_rapidjson-1.21-cp312-cp312-win32.whl (128.5 kB view details)

Uploaded CPython 3.12Windows x86

python_rapidjson-1.21-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_rapidjson-1.21-cp312-cp312-musllinux_1_2_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

python_rapidjson-1.21-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_rapidjson-1.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.21-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp312-cp312-macosx_11_0_arm64.whl (210.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_rapidjson-1.21-cp312-cp312-macosx_10_13_x86_64.whl (220.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_rapidjson-1.21-cp311-cp311-win_amd64.whl (148.0 kB view details)

Uploaded CPython 3.11Windows x86-64

python_rapidjson-1.21-cp311-cp311-win32.whl (127.8 kB view details)

Uploaded CPython 3.11Windows x86

python_rapidjson-1.21-cp311-cp311-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_rapidjson-1.21-cp311-cp311-musllinux_1_2_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

python_rapidjson-1.21-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_rapidjson-1.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.21-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp311-cp311-macosx_11_0_arm64.whl (209.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_rapidjson-1.21-cp311-cp311-macosx_10_9_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

python_rapidjson-1.21-cp310-cp310-win_amd64.whl (148.0 kB view details)

Uploaded CPython 3.10Windows x86-64

python_rapidjson-1.21-cp310-cp310-win32.whl (127.8 kB view details)

Uploaded CPython 3.10Windows x86

python_rapidjson-1.21-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_rapidjson-1.21-cp310-cp310-musllinux_1_2_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

python_rapidjson-1.21-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_rapidjson-1.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.21-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

python_rapidjson-1.21-cp310-cp310-macosx_11_0_arm64.whl (209.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_rapidjson-1.21-cp310-cp310-macosx_10_9_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

python_rapidjson-1.21-cp39-cp39-win_amd64.whl (149.2 kB view details)

Uploaded CPython 3.9Windows x86-64

python_rapidjson-1.21-cp39-cp39-win32.whl (127.8 kB view details)

Uploaded CPython 3.9Windows x86

python_rapidjson-1.21-cp39-cp39-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

python_rapidjson-1.21-cp39-cp39-musllinux_1_2_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

python_rapidjson-1.21-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

python_rapidjson-1.21-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.21-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.21-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

python_rapidjson-1.21-cp39-cp39-macosx_11_0_arm64.whl (209.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

python_rapidjson-1.21-cp39-cp39-macosx_10_9_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file python_rapidjson-1.21.tar.gz.

File metadata

  • Download URL: python_rapidjson-1.21.tar.gz
  • Upload date:
  • Size: 238.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for python_rapidjson-1.21.tar.gz
Algorithm Hash digest
SHA256 4d0dd9cf1fcb6f4bf79ee606e6e9be4cfa598f273b91338a6974b6a99309a1e6
MD5 0cb433321381ca4ae2b55c24524dfc41
BLAKE2b-256 cfdaf041c85e7852ddb87dd59e34fdbfebf27defc6e4dfecbc0486ab30553dfd

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 38307a2ef4fddbdc18806a796201fe668c30e60de7cd795943a3f7fd39535c8b
MD5 c749d2f9bc87d8a6791926328201444d
BLAKE2b-256 3e03e92189d6142860f949b9679c915a6a3752ccc2345a5f80a3995233c45f9f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be63c0ef87bf26059ee77f5de21d84a1be3659cb6baa8484c237ffe17a8beb56
MD5 3539d6228a3ccc2d2c46a307cab1a2da
BLAKE2b-256 182bb81e89c01ec25078a2326051b691443c90797da0d21e1b6c862128de5238

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4cdb4f77b08b7ae121b7ca27ed2d57dcce17f8cd9f1d4593c954c982aba18ba
MD5 1c76436198f8fa7d3e22fdd5dad179f4
BLAKE2b-256 3e08da452b2bd67f88b8232e48f2341f3320ce9315f0bdfed1ca769b0b389acf

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fcb094ecca3d892f1dbd318251579ef66e2b2f06a2a24414ad71c31931d7ffff
MD5 a1032da42a4daaa2f5bd84dd45f70340
BLAKE2b-256 026c4972fb83f0419654d3083e0b4881f607cbf0829d64da43b7d2a3a21480a0

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b663932dc7548567028fb735bf4092b50dc373822dc9756a9ade6513541013de
MD5 b3efc96188b284a2b6865b24166855af
BLAKE2b-256 170a0db35ac49212505c347cdc353ddebd2b4085bfc02090baae552e7b5908b4

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3194bde069c3f03f3c425de7037cca37d337b6c7ac30f42cd2f17e15f1c4da3a
MD5 9cfac80c9a8d55a07fe41f877b65c378
BLAKE2b-256 670b7c27a2473edfb9d40eb65e5a225dc2e833a5e355f228502aa19c2bdf6679

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 74cba817cd9b16a3a54e7ddb3b59980c338c9a28900124502215dcba5db5a276
MD5 52e442614a1dbdab8deb708621ee5934
BLAKE2b-256 a15606535489e561f6c2a035a5fa8d3d2ecc97c647fb4e1625a8cb7a1db46e6b

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bf6377c4e9636e20b403776585903d1ff52613a419c5f8453032146f0422634
MD5 a89f79cd428b4b59be8c8b26965f16dc
BLAKE2b-256 da93dbee2d13a1619747652b8c8a921cb8a2e7309c0a142867b4954341c76632

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 608ade2fff2788821f25e70af4b1bfbf9ab2b2dc8ad47c91616935c5d31e3b72
MD5 4005120d72b7dde7d2a0e007d76b80bd
BLAKE2b-256 21d89de439a33cef3d1a7672028abcc1a3c8d0c9982f03a73b9cc71055325ee3

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 863208f50b848b8e10aefcf0da2a67ce38a1044a2ebf83d6355f16f0c7865d4f
MD5 b819fae688212870af7d2afe60826fb5
BLAKE2b-256 6d829f1ffd805d6c4b2329046f88b59eec077ea5b2a1894ec23f8fcf22f53e0f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 409704e52ad25df661265dbcb3a512a2146c98f72f362adc157e9b595704e1be
MD5 a4ee918ace7df3f818e903290d43e6a7
BLAKE2b-256 e29170f9083930de93e7ce9ccebd8bd598a5737829452c03c258ea862146bbfa

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b5717ddb9788ca00e0f97546cbdd3cfd0c25e52ab3bfed0951c7898e7f37cc60
MD5 20831dee2146ab1d0f3ee38c3e7b5649
BLAKE2b-256 3821bd4e0cda3eada4d99562c1b5bcd2cb54588df17d63ab95b8b76af3d93826

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1525778bc9b9cee9b8f3058e0435f0e4ff03e2d8c3883893ebcaf58680316964
MD5 39c4840e6ac368026759443d764d4312
BLAKE2b-256 b3a308aecff00e26e5dbb8cc8e5b2372b6f9ada28fcf09623e6de62f08ed2b99

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e8d4d1285c697325ad1b5300866176d190625bbdd85dce963300fad5bfaf166
MD5 cbc22f494c757dae0078553698ef3ece
BLAKE2b-256 7f1608d24136b5895157f1fdc75669796283d5116336c0b1c27fa73de260980f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a4afbf54eb60dc56d4c2b6fac5d24709e8a5928baaeff0669c00950961c7a65
MD5 302f84642629954fbadfcb006009dda1
BLAKE2b-256 2dc152de9e4c137ccc98116c16835d9a708436d58ba51ba448e238ce08938d5b

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1cac86399cfbaf24e72aef6eed1114180a72ba0242c7153f89d874a81fb83c6
MD5 9930ab0d142328d488d6d00cad15466f
BLAKE2b-256 e19c23da2d95b0b4de46695b57a593763ddb8e7f8a786c2793be89fc3dad957e

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 46ea95e9292260fd8174966eca05fad08b43ca0f5df1ccfab9796edb0868d8eb
MD5 bac1628e989657aafec5cf731e17b1ae
BLAKE2b-256 357e73ca21eb527fbe27b267ea04b9047fdfb4a524b2ce2565a082d84cdee7e9

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7faf4211354c1db9b21934d723f3c7db1d611ec3013458dc2fe1a732aa100d3e
MD5 5062776e1074b4e86e62a8ac814db5ad
BLAKE2b-256 2f60b6a4026fd144fe80db1d6f7cb78191ed2f27fb46c69c719b3b63a8542072

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddd846b095fad357e4e4c5071e874f9c100c2e5b9765abcc7d71254820251c20
MD5 35b4274db7bc085134dddd55271c1c1c
BLAKE2b-256 c283f02aa1c9ea2594f05dd8c6c51e2ecea398a462118c7f4ddc004a135096f0

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 354ac34828a242eec1896901fabe59d14adab7a5054d09a8bdaed4c6ee510b22
MD5 155a4c0af610356e7b621cf44618e7ff
BLAKE2b-256 bec852735f227a9c662df8e4292af2b13960f0351795b0115f9fe95b3bfcfe62

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a12c6b412f0b77589912159eea1a3385710ed1dc0d01259f2f467d5ec6b2413b
MD5 fe2dd7b46736d3a265fe0eebe1d5b495
BLAKE2b-256 ffffdb82a628ae4a5fa25b9baa1e4bc88e8021760f503e1f5b81dbe47c4ea3be

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47a9fc6b1c76946f9af875cfcceb32f08c5a6b1677500174397f042a9bbd5d1e
MD5 fe57349c39fc9779c81a4234e62d3d36
BLAKE2b-256 365833628c8859ba905357bae15bcedaf044433ec83c02c33a1f7608352eb251

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 925cc765c2a4ab9aec92a163eca1d0572a4bf5ef7ef2e3d44e3808424454c5ec
MD5 cdc529781fe2ea4fa39156718db6a53b
BLAKE2b-256 6e48a32b7f4ac4957110708e4a4cdab710ff221dde3bead72f3ad0af992dfaf5

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a8be8d08c33e9e8a6b83a4b34777b900f85ce5e6a951c562cb8c6e0966f2f604
MD5 6f14365e366011f532ec5199769861a9
BLAKE2b-256 fa87627aa48ec3a34faad70998c808e0bd5d4d722e97f3606326ac9c4b2ee4d2

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06fc84a13300be41dc075eded0d7bab7d024e8feb0685f43e958892ad4f6e5ad
MD5 74892e2dd5f5e7c17b1618829d860b29
BLAKE2b-256 aa00b78698177ee1e5ef1398eec42517500fc73145a5d005ac4307fe918bdaf6

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f47e5e126a2052fbb8a2f3e6c40b7ab52334e57ed8665733c277027f6caa6fa
MD5 95353e3fc15fc82b7813a7b961d1cd27
BLAKE2b-256 734a1947410485d22d6f40232b6cf713a52afce9e77ccc4c2922258e26d91eef

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 54ab944647aaf1d0c3fd26a0756edc87904b640a635fd40980b85faa80bdba70
MD5 910bc4c97368c9ab21b4483cde8f8dc9
BLAKE2b-256 c6503b4849aebdf2254a5dca08dd12188038727444968012886f480b0ac87a71

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08433801ddd96f2f2a03d17aeab8121adecb4e8cc119ae5dc05a1c441fb1ef58
MD5 3c9562d4a269aace0f1c253780c62b07
BLAKE2b-256 899868fe673cb975fa085e0c47603e7d012f790fc44c0cebce9b8f707066c4a2

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eafd20dfb972d16f7284e1f0a02fc7603b657f847dab3308c129fb41f214030
MD5 fa84f0bc0965f9c51f46cb38f62748e0
BLAKE2b-256 90eb529d07149945b77b6276deb0f657599d699ef78dc325ee4dd00db2f5b099

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78103db8a58fbcff54ee475426fc9d3aab5257f6c2eb3ffe1c769b9ad9e0878f
MD5 3cad3461feca870c37a5250d20a0d4b9
BLAKE2b-256 0a101f241f947eace6a904512dc0dd3bb727716f45eb01258e744abeeb663380

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e5322d8c11d461da1cd2074ee2bce9613b29e5873f46c2b486115d7894e32cd
MD5 d4f32ce1b9f011f462d8bfc8e9eff1cc
BLAKE2b-256 f7b5d979595e3ffc8960b69a0229065e3e1cc96bd61af4bfecd1299e74a97e4d

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 673c545dd5f8e87ccab51f2af83f30772ec6349295a13aef24b5b3e828fc086c
MD5 bbb9bae1b1e59c18f19565f7ec59bae1
BLAKE2b-256 c008eb77eb24c0f5fc43f2d65a28909b54d6f094cd229fb6c121baeef6a58a88

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ca49342dd54b23ffd5a2b150a43cdc8b2bb10e2c88935e9f30fc58ef6346fd9
MD5 bab881680e1ecfe7168cfdfda2488c46
BLAKE2b-256 1bacf82f6b3149e7bc1664d90d4295dba0c10384798572ae9630553e0310ce27

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7958912ccd14c2e18d53b6ee766c273f8ee2a75a2f2df47c31e16b9b5fe826e9
MD5 3386e532f5ade4b8702eae87824b6672
BLAKE2b-256 53be20c2901f69617fe1df94a7ec62a761b641fcba8e4ebfaefb51dc79e85085

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 150177509c71e9e782930e88e79078323dcca09acf01440f670f0b2f9c2958d4
MD5 8e5855f3c5a498bfe1614ad1a07ee01c
BLAKE2b-256 2c6467a44bce067dde2c17d749b1a3014143c575a368dcf72a7be991fb4da231

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9f90fe043904efeec69a74787c87db26df657f4c722c19db7bfd0964c352f41
MD5 6d7b7c87bf1befe272aec864f758e729
BLAKE2b-256 4d945cafacef602e4e38b25a4cb6cd6eaae025c13e3119af95913f1e67a49a9d

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5b81bc8189a354de509dc1ca353c847571013dc46dc212660b327dd5303315e5
MD5 7c90dbdc64356fcc8aa0949a7326a7c8
BLAKE2b-256 1f84ddbd2d917e69291fe7d23a62d03e1b1fccbe4d3a4c1b161e611961d4f505

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e6d0266549811757523245bcd7ce046cbedf653383f28f412103c759feaf3ef
MD5 2d1f8405042d61555a6860c32417b63a
BLAKE2b-256 a435b0e4e01f159e582f7f5618fc077f61a4dd4162bdb4fa7a57992257dc5ce6

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 127935afaf90ffaa721836ad64e58a7cd6838ef9d9a3c670f2769e045824aac1
MD5 af5e4a8e55cc75ee74afdcae7599b21b
BLAKE2b-256 0dc61c155c8010e5cac7ac405864244a9f8c9bf5dc45c489daeac7664d860542

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e1c914b2c7952dadc69d1de54a3f147e27e00d45c70c72fe5a35fb58d0c3437
MD5 5ad3e68363a3d8fbc77b426f99d70026
BLAKE2b-256 8fbebfe5c89ba51a1e3c8669fb5c75db66d1e8284f414a5c087ea3deb602b722

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af85273105309df8b3fcb71c1919c648e21c8aed4315ea5bae238c7c8cae2281
MD5 a8b4c6829a298628990b29b232166cd2
BLAKE2b-256 e2b9bbf503fdd5495e5597b2c204eeacebe92363841ced078de54167561cfdb1

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-win32.whl.

File metadata

  • Download URL: python_rapidjson-1.21-cp39-cp39-win32.whl
  • Upload date:
  • Size: 127.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 97a02836c859bb71eb6e791ddd35c40d84f809948c7ee212c12842e62887c321
MD5 bc2392c564aef5b1e1d4bcab76232dbd
BLAKE2b-256 b716d2c3da1fb92650c3020bc08820303bee3c5d27de3275381367a74aae0413

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd953da0e05cdf42ed5fc6fcfa7f4900b224ad70ba2ff9cce84f0d60bdabd45c
MD5 ff5fcdb15064f9756fed8a398a0fa31b
BLAKE2b-256 5aff56ac4dab68b31708a1afac304eb0fbd87e7ab056dc2cc0a59fce98f95619

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f2c1c1c799138ce924da3e7808304905bacd8ab4ee08e3bafbbd71c83e57839a
MD5 be62f6b8ae21534e9868c274ba41c9d6
BLAKE2b-256 2ea5e837c73916ed624db193c514d70b5d52aaa69e02f2511e9ad33d99b37b8d

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f03088e7c400465ecca19bf32df253b07ec5def8f3cb2b8f75b47827b231258
MD5 c9f1851fd035e144d1035e32ddff1d90
BLAKE2b-256 b23bdd327abe4b00267c76747149cd21dfea45165d54358f95ab7fa9ea7605f9

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a9a51d4b4c25eb0f4b2395bdbac937b0b76ec6997c85407ef63f88d700e7ae3
MD5 152b7fb80a573e72fe2001a441f9365d
BLAKE2b-256 c8efa4df70d7d5f43e2e391ac73ae53894eb5eca20920c7e1915300e8f9949d2

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 18baeaf6e6a8923e3967030a187791a7c2191a41bf0183d7e56fdc9bdbafc707
MD5 1efe976a924fabbd5b1f4a5e513a38c2
BLAKE2b-256 dc1293ab92a492486972bc9b71832e7e5e8fc11ef23811778585aebedb54a48e

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f9d9d4d97deef3b9bdc88b661691a56f4aa87f5be2624338534ec939a4c7dec
MD5 8f9f4414b3f97c08edb5eef72840d2a4
BLAKE2b-256 17ab0c97ca9000c7d1b967e614f40da17b5d979789d702f3002ed62e3520b226

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d4f99a48ba81e463176384d2b82de3f3480fb6acaf6dc283e5cb27bde4f5bb1
MD5 f6bf4ecdcf9a55250638ff179f512424
BLAKE2b-256 de55025739b6a47c3c3d0d5504a6c950128ec85f5fe882226911f0a9d13d8435

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.21-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.21-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c629e9ad36c6b37850ccef73ef99e06b6f1622ceb7c1f8e2f316529e5fb664b
MD5 3396c93fddd6fc71f813a17bf6707343
BLAKE2b-256 e46d9553bde73b3fd9433b4dfa75384509d52328caf7bc7ef92e7193b3bd43ab

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page