Skip to main content
Yanked

This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 1.25 instead.
Reason given by maintainers: Bad packaging, does not mention Python 3.9 support being dropped

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"}'

Most functionalities are exposed both as functions and as classes.

The following uses a relaxed syntax Decoder instance, that handles JSONC and trailing commas:

>>> from rapidjson import Decoder
>>> from rapidjson import PM_COMMENTS, PM_TRAILING_COMMAS
>>> decoder = Decoder(parse_mode=PM_COMMENTS | PM_TRAILING_COMMAS)
>>> decoder('''
... {
...     "bar": /* Block comment */ "baz",
...     "foo":100, // Trailing comma and comment
... }
... ''')
{'bar': 'baz', 'foo': 100}

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.24 (2026-09-05)

  • Fix error handling after PyList_SetItem() calls (issue 231)

  • Fix error handling after PyList_Append() calls (issue 232)

  • Fix crash serializing a list that changes on the fly (issue 238)

  • Fix memory leak in RawJSON constructor with invalid argument (PR #239), thanks to Junhyung Lee

1.23 (2025-12-07)

  • Fix serialization bug when using MM_COERCE_KEYS_TO_STRINGS together with sort_keys=True (issue #229)

1.22 (2025-10-21)

  • Generate wheels on PyPI using Python 3.14 final release, thanks to cibuildwheel 3.2.1

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)

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.24.tar.gz (240.4 kB view details)

Uploaded Source

Built Distributions

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

python_rapidjson-1.24-cp315-cp315t-win_amd64.whl (360.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

python_rapidjson-1.24-cp315-cp315t-win32.whl (329.2 kB view details)

Uploaded CPython 3.15tWindows x86

python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp315-cp315t-macosx_11_0_arm64.whl (217.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

python_rapidjson-1.24-cp315-cp315t-macosx_10_15_x86_64.whl (217.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

python_rapidjson-1.24-cp315-cp315-win_amd64.whl (359.1 kB view details)

Uploaded CPython 3.15Windows x86-64

python_rapidjson-1.24-cp315-cp315-win32.whl (326.4 kB view details)

Uploaded CPython 3.15Windows x86

python_rapidjson-1.24-cp315-cp315-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp315-cp315-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp315-cp315-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp315-cp315-macosx_11_0_arm64.whl (214.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

python_rapidjson-1.24-cp315-cp315-macosx_10_15_x86_64.whl (216.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

python_rapidjson-1.24-cp314-cp314t-win_amd64.whl (359.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_rapidjson-1.24-cp314-cp314t-win32.whl (329.1 kB view details)

Uploaded CPython 3.14tWindows x86

python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp314-cp314t-macosx_11_0_arm64.whl (216.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_rapidjson-1.24-cp314-cp314t-macosx_10_15_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

python_rapidjson-1.24-cp314-cp314-win_amd64.whl (359.1 kB view details)

Uploaded CPython 3.14Windows x86-64

python_rapidjson-1.24-cp314-cp314-win32.whl (326.3 kB view details)

Uploaded CPython 3.14Windows x86

python_rapidjson-1.24-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp314-cp314-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp314-cp314-macosx_11_0_arm64.whl (214.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_rapidjson-1.24-cp314-cp314-macosx_10_15_x86_64.whl (216.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_rapidjson-1.24-cp313-cp313-win_amd64.whl (348.4 kB view details)

Uploaded CPython 3.13Windows x86-64

python_rapidjson-1.24-cp313-cp313-win32.whl (317.5 kB view details)

Uploaded CPython 3.13Windows x86

python_rapidjson-1.24-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp313-cp313-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-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.24-cp313-cp313-macosx_11_0_arm64.whl (214.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_rapidjson-1.24-cp313-cp313-macosx_10_13_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_rapidjson-1.24-cp312-cp312-win_amd64.whl (348.4 kB view details)

Uploaded CPython 3.12Windows x86-64

python_rapidjson-1.24-cp312-cp312-win32.whl (317.4 kB view details)

Uploaded CPython 3.12Windows x86

python_rapidjson-1.24-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp312-cp312-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-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.24-cp312-cp312-macosx_11_0_arm64.whl (214.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_rapidjson-1.24-cp312-cp312-macosx_10_13_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_rapidjson-1.24-cp311-cp311-win_amd64.whl (346.7 kB view details)

Uploaded CPython 3.11Windows x86-64

python_rapidjson-1.24-cp311-cp311-win32.whl (317.2 kB view details)

Uploaded CPython 3.11Windows x86

python_rapidjson-1.24-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_rapidjson-1.24-cp311-cp311-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

python_rapidjson-1.24-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-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.24-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-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.24-cp311-cp311-macosx_11_0_arm64.whl (213.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_rapidjson-1.24-cp311-cp311-macosx_10_9_x86_64.whl (215.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

python_rapidjson-1.24-cp310-cp310-win_amd64.whl (346.8 kB view details)

Uploaded CPython 3.10Windows x86-64

python_rapidjson-1.24-cp310-cp310-win32.whl (317.1 kB view details)

Uploaded CPython 3.10Windows x86

python_rapidjson-1.24-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.24-cp310-cp310-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_rapidjson-1.24-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.24-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

python_rapidjson-1.24-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

python_rapidjson-1.24-cp310-cp310-macosx_11_0_arm64.whl (213.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_rapidjson-1.24-cp310-cp310-macosx_10_9_x86_64.whl (215.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: python_rapidjson-1.24.tar.gz
  • Upload date:
  • Size: 240.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for python_rapidjson-1.24.tar.gz
Algorithm Hash digest
SHA256 2b9267004053e0b0e6fdcb8e45fcaabfef88ef53999597d99b5050fbe393a60b
MD5 194c6ff0d585582ee9292210ab574da7
BLAKE2b-256 5bcb6725da4991ffb6c77f21bffcd5f4783d00249745d83829c59da24fa7b6e4

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6613bba7ce6284073c8e5aea83be33ceb70a7e9a7944dfbfea2e3e7deb91b222
MD5 5daa8e7f2e57786b4b079510a6eb621e
BLAKE2b-256 e69e630e055d79a27f60744720d72ad889f8d861df02e3f7dee8b81d9ba492f1

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9692aa746a349903803e08d71691db462e3676f0666b8e98eb9f4bbea6a5fa8c
MD5 051ba48c979f5e14b49a390c76f57bb8
BLAKE2b-256 0c50de86092b7460f9e31789b396842e7fdc91ba4f6672f9103c68de1a4cf45a

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d231d4dc475b59b084fd650680ab23bdd51c1647201bd6a442afd6dc7f80eb1
MD5 6025be6b96ac9b5766311a73d3aa8da3
BLAKE2b-256 26413a70b9e97e98e0c25b5bd3d75192e3ba7bee484b6a676167b3cdcf34f1e4

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 399d6020d26d80bb1d2d0a659f0c2f702d63e7b18ff4eed6427589e8949768ac
MD5 f010aedfb37fc48f91db02383439c201
BLAKE2b-256 3faa9561b08e47888460d4bccdb26d845423b7c3d73232feba268682d4f744d8

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20e3ed7b3d663d6b765b6b569bad48a94a856cdaedd4ed44ed6f27cd2a04b135
MD5 4a7c3c799be8ae2d7737edbab32c0dc8
BLAKE2b-256 66f013f0d75a3440887ff43b82cae5c7b741572b649e0ae4456f8892799121c1

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7e1820b40c278823f0e44d5c3cbe10b3425cb71d7fe6ce808a7d617722d7a20
MD5 5ae4856dd11f2f6fe7d7c0ed7edc7132
BLAKE2b-256 3970c0942716c245ba6f9ff702f924ad3d2346e60a14458b8e68c57c1686cb44

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 117b06613257662bab61548f810a4e3770c972f084c53a90fa4f15a404c8ead7
MD5 769513d0cea15461ee0f15c14eb5316c
BLAKE2b-256 b91a2ab70cbcd5ec7d2e7e65f72dcf0e7cf5eba939daca050b6cb30f1c07403f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e26b8c58f0c0657ed5cfdab141b194e7f543b3411c6f68c815004946786e34d6
MD5 f2ff98b4fe429f68cfc3aea4b895a9c1
BLAKE2b-256 c10c706669c645a8417bc29c2190c116593cb456476971f80c72eb8d3afe35a0

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5601a8ad2757f4afe7c099eb060d0153a30cef8d965a0d0c596bffd86513ffe
MD5 57c916120e9cec534f731c85f36b5492
BLAKE2b-256 f2c084eff6e2b7357268a33baa0830c98521e739452dd63d183e8d54b0eb2082

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 846746e44331d33ac53c19780f190966f3890a2496aab0f7c9bf6556a1828a82
MD5 314a8470caf0295caf1b4412a801dbac
BLAKE2b-256 569783e78af5f29e5f1271cde74a6ec3698656be6954c16d71954e83a489dfee

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 98363d725496f27ed2b3b06e893e880d2b766a3cab5e389b14ebfee43fb2dc40
MD5 3a90d41a47793dcb9f4ad05446f33b0a
BLAKE2b-256 00204505fa6968042f470748ba8ddaf3cc63eb67cb40f7af3b40f1afb758672f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 f981e3169726463efd478cc2a7fede0ede02245842a78ba68dd85475e00ff85d
MD5 08c3502cf00499d95c092a178a76f880
BLAKE2b-256 a912f641688e8a07d482463d8009350c3181411834cc0c11a6641d73a5449d6f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11621568075be5e41cd8c62d98e5eeafec48195f7250e8b7df089088c63534ee
MD5 8b17a0b3346f938990811e7b8baf2c9b
BLAKE2b-256 9e4764237e81aa62ea373ff5f7741c929ab4999f4891b9a3720f49acbe58161f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 973a7f7ca45ddbb769d5902358888e9b92e351f06ade2a55bb793dd89c8beafd
MD5 24ebd0c2e95511682930913ec0620a97
BLAKE2b-256 0ecc7f6c4a9122346294a3a93e47cfd83be348da200adb8dc4832d31121ea437

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ba1f15b2c3096f4e1f53c997ad83c3ce81c44583736d3b83772462b3fbdb0f4
MD5 ce4002782a2c41dcd18ec66fd68e38b2
BLAKE2b-256 84dfa965af48d5cb218f28ca940d3f0110a4e18b85f45fccf09a0ffe494af889

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63050f27120a18372f4cafad9b89b681a2112ad43567bd0cd1666b24e32185da
MD5 b1271d6e94c9172a9faba3e996081a56
BLAKE2b-256 fe0065bdf447cf1ac477412618e4649a59c73c2bb5ad75417be334dca9cc972c

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 04f31397aae5bd7431466e8b6bd8ede6d45dcf10c2f37607b15419e07bc29462
MD5 af3c847f077f563be90d9ee680f7c230
BLAKE2b-256 aa81a1f61ed000157b0287bde5550fb94a89738e82b601637b8acffd5aa8751b

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f7bf136de33a60e2d350fdb1c39d08ea63404ae48bfd193b6e84e11cc154c02
MD5 84c0ee49a6dbc8670b52a6692dfdcb70
BLAKE2b-256 a6c0ce0c1eddffb967bbb9b2c813b223628698281bbb388eb6250f018864e2c3

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea211f212f28c32c88364e3da4b05ccb59170304ea228370b2c3c2218a6bf312
MD5 9c55cb85a3ac78677d4ecb78f1656d50
BLAKE2b-256 98465bc2eb160665a16b6a9fbcfbed66bca1335491eb5f8a1b8a28cd39e7e4af

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fa5ae8e65b885483ba9c03ecb9cb7f4a57560ea26da6a175789934171abb9f34
MD5 003e9868ad17b5244d953e448b080450
BLAKE2b-256 a2aefd6d507533aeb618069fe4babb44dfed98ff6c95c45439b742500e3614ba

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2159d0b17a5931781681a091700b3c09dc2ad2c478e891b485435a351bfec9ac
MD5 0050c99c44be678de71b622b82bb58a7
BLAKE2b-256 cc3f401d6fb9e6d5affce44de3a7060c42e6cc4fa9b850cdbbf9fc8008654109

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ce1fcbfc59fe191fa7afef167b3eb13493da589bca7e63a975337ec7312ae751
MD5 81a4f88ee63dcbe1dea50425b75b66f0
BLAKE2b-256 b0c1dcef92f757c6287b053362a0f922b0848422469d9fb883ba33e3f3889ad1

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b423936cfe7e7d6e54e4975fd54bacdc34e89b2e55815c0530a1377dab7b94a
MD5 4b4e9c2e1ab443b38e0b52b3b51ecff0
BLAKE2b-256 3f21c47c0c8ea2eb2e04f9013a3315fc7b769fc3d0a02df880fcfbe25a92bf1f

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87862cb7f829df304c40259ce5791bbf59fcb0719b9e287e693cd4e9a2fbdeed
MD5 b47788b27396d22f8b8153304bd7bf12
BLAKE2b-256 f0635febf4b3bdd790bedb1b08a1abaec1dee8a0477207492e69d491a802eaed

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1fc4166c1f64e2d46a25818c061732c6e38778b37dcec20a5cb51930fdd3f2b
MD5 8d1eb5b2fd9fdc3b9905534394472095
BLAKE2b-256 075200cc76ee12586a66ae80524cfe5064d64819569884733a4227b81359fb32

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6501811f3170386129f11c4bc0bc8fe6d1188049d135c655b376e86b50419916
MD5 03bcdb804bb88444b548fe5bb5a2ac0a
BLAKE2b-256 9b9cbdf61074a02c003f97d9d660a35f56bd16233a0e2f6aa142c52f944251a9

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5268e5aab913e66f40a053de3339c672e990f4af31bbd90c15d94a42145deab6
MD5 9f4f1ca64aac7711bd6652c293402afe
BLAKE2b-256 3b4532cbca6127d6dd7d77d3b889fa0b57cd9929907a52685703b0f00bef86e5

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0abfcc736a75760f9d7a38fe73a1b869e4afeb4394402b5b3d304e9977e38c16
MD5 d00e2968e93dfcab42ea23ca192667d2
BLAKE2b-256 ca4591269b825daee676c96ae3b3b96201d8d09634583d13c9f2324dd08b2bb5

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 755e6c65e0a647afb408e9ee333ab10a478a668736e63ea846ad6eea28ecc839
MD5 b382e0bad5b7e46b593935b268f2c0e3
BLAKE2b-256 e71ebf069417927ad9d5bd8b510dc8f3fda67723147597c85d3c4071479532ed

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc493b9584fda7babc6781fce9bd94b2436ebeafecc425038b2677920ea9f643
MD5 83f2a83364d4fd58669ae52b8f9f2d55
BLAKE2b-256 03ada0c4fbb2a2ea3bf125e145d2df7b125cfc7ab964a51feb5a8ca20519a5fa

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d33e5ea05fbf1ef5452943343ef96209e3e535bb84521713dbc2080979db791
MD5 88ed9ef2c9dd2540e1e79008821077b7
BLAKE2b-256 c29317ef276054b32f91d8d9fa74861a09037894ee7199f541d9738d40076be5

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4681a2b1dbd9a0032b7c7e0e3672c0dc6b14320646b649ed7b78513d7b71a580
MD5 f00d9653c3149cc284f77c7750fb3e2f
BLAKE2b-256 0999df9e55f2acbb9760cfbcdafec3c62642071a7cc1d66f9c38cba0edba5600

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d423b249913a2eafdad65938cc7ec30293680ae64b9ed73a76e89cab94c9cf9
MD5 df323848faeb5d68f1b943ba6bb60807
BLAKE2b-256 40628f476720323b210039a2ccbb1662e5524f70fb9ccc1ccc91461a3217c50b

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff038d2c4dc172d11d886ca89ada6f8b475a3ed4be8a234d30fb186818f4465b
MD5 faa890ba8188f42501c15279651e847a
BLAKE2b-256 7e025f8998e88a9b7c6ea101437bf71d0ca470a8f0e985de79212077f3449aa8

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e1e77638370a022c5ba3e38768d1a1fdabe7a94f79b97446c9fefbdb9227db2
MD5 d786d586b2d7e86c95fc2faba6fb908c
BLAKE2b-256 e75b20f04de901af5dcf9d4785b3ea7e7fde49431fb26c48d4ffbfc8b49b79f2

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4596e53fac566c07bc7e3b92d1e65990722a23217ac4ea04596e661fb4716ca1
MD5 15217ef808527c538d433b9cbe558a87
BLAKE2b-256 f436c4dbc073bf9fd014455661c1931576d28d372aa4219e400ea31a658041ea

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 33b1deed50875e69db70d738eeed290ed34a35e6786e98c01dd3c27571939fe7
MD5 202e9033d51476525ce23d77ac8f8418
BLAKE2b-256 881dc72d368655596d6abd53d6dc51008d8485e38e5647a1db3ae776110b1ac2

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8038e184ea3a46968b6fbccc0e3884b77ebd8ce47a73ebe6639cd90e50afc3d1
MD5 62c345b37ffef437666d7c2288ec9c40
BLAKE2b-256 97e5e30a6ebf6dce7f476ac87183aa90f44bbabc5db2e8236a6f8c0981e4cdde

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65a3fdce19b272495d3a7c8216d57d82fbf85bfd8edd45627b368ea3b1484911
MD5 b29455afed1d549132bd1bedaac75731
BLAKE2b-256 9c8122e15b44e5d65ecc083855fb1362ad3177f017397ed8550af740701c8fa6

See more details on using hashes here.

File details

Details for the file python_rapidjson-1.24-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 91515154ee6197503098a4bb66d1e27a33a83cf208c30bce7726f291466ea3b3
MD5 5617798d274f9dd6759e44a2e95b2b7a
BLAKE2b-256 abf9f34beac4281c36d1b67e168df4fd27ccb3526becfd87c427d69bf50b2f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dda88393ccda2a680fde1ba23a11de97413075e388b82f5771a10324462cc701
MD5 cd8258a84489a91d336c489d403fb69b
BLAKE2b-256 b6056b53628076de2935e1286558b6d3daa21349aff9e82c7f05037068ed511e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fb59acfcca03f16dc1a0d18ded5a1bb77c3c8f065c98af55b2eb9567aaa98e65
MD5 e4189a86a429803e25647f48a5310d7d
BLAKE2b-256 515aa2e3d7e0b715f16d3e683f74a5e61a9ece2da4b68f834ccc6ee1111884e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfd2e3f2c116ce51d678be5428b98856035efd97aa9d7f7b1802197538b4b793
MD5 59682f2c6c03270761f0d94404e211e0
BLAKE2b-256 cfab9c9f1a2932306f562ea4750894f30bae84000547452cca9fa3894be1f709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1a09d40f84f292eacec61c61c2d03f62602a6b4550e41f067e707aa58b130d14
MD5 94d7ffafbdabed824e462d7cf006c96d
BLAKE2b-256 9eed64a05b006c65054dad9195463b0a5ca1464a86d1f88b26bd25b3bf6e90f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7b2885bb27385e6318bdf3b356b9c6c19056fa55d64eb7a36df4cca7f398466
MD5 e90e596b861ccb12a866578c81616b46
BLAKE2b-256 552b33d0343249798db6a0d200470fdd2cd5b782f58590347565a5e66b190f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc9f7c712669d000b7b3b13709fa36e444268aa32351f6e948a7c67ce47ae29e
MD5 9067ad8ae2a4a517cd692674d5743e88
BLAKE2b-256 705154184db4bd7160b9ecc4fda6446de0cfa34cae8f69f45fbeaa8dda7a0b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09f801787cfbec04d612b6257922c2df0c0df87e8980a6f47fe3c92f9711d649
MD5 36380fd82352df98a5479ca26874baae
BLAKE2b-256 7d6347a96c0e9a02b3288e0a2e493eaeaf65fe229e0dbcbf6ad235c9a1b321f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a335c2bed59540d654e60a82587a46e7ebe454321f415a7c564f788bf1fb7d49
MD5 809c6bef4a93dc9bb972bbf6655e0ecc
BLAKE2b-256 91705c9442c1bc704d99d158ae256626ec498f4dda10408f70c06d8f88a357b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bfd9abdd64a0718762eef4e046d558b28f92f8c5a0cb43511f95e321eb8342
MD5 014969458df099a06b5ab65e582c5e3d
BLAKE2b-256 3d36aa9ff79aef4411c1c88a00cbb5f289b946a62bfd7d6d4a204b62bab665ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2bb00512b51b9a962f6ad6004982156351643030d8187e42ccf757dcc76217ad
MD5 1a9625d8a507a7df5056045c5230d567
BLAKE2b-256 96bb248cc1d2a6d5cd62fbb7892ee87cae69a1ca70105a91fc4a30b4d14b00fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fd03f492762ffd47062db614118cf44dda01533799de8980e58882eb0366d00
MD5 b532f6ffe1cd45778c4279f6523e9ded
BLAKE2b-256 d9768eb916b3bb543498028854aa8a1bb4d25f5fa1c72336ce634819b2b534bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 00437ab4b05f2a2d5e8fb6733229d6fb6015682d4dc22ddc8e5c26c213cd80a5
MD5 380f6f313a47ec63280f3c1f6716e399
BLAKE2b-256 e012cddd6e6b5914d4f7ecc56095848cb14e67449c43ddc8b12f83ea55785b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc683d0d97c838fb7e06ea0474ddedd74e72f8f21d5c09dd6babf2e74e174286
MD5 a8f5667cf07ca95c979eb8596d7fa508
BLAKE2b-256 a9f72bb8a5e95cfc91e4073f20a3afd14f698920d268450cbc4be66689a85545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0fe830a30d6c2ba2f57cb927b3b727c6a56a78f43d7808c08bf353989ddc0b33
MD5 80479b9c26d5c76b8e2c0ff3fca3674c
BLAKE2b-256 c5472154e973b2968e87049d424ad786cb8b80aa5df0fd300d3b359f2db8c937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5478be3751d14391ed8bdb0b9e20846d2274a91029ce0560cc0641792e4204a
MD5 71d0045013cf91865f005ca217b2caf6
BLAKE2b-256 dc36a79a944947111f49c3582d889fe3a8b36361ab5449596eb5b22b4e4c3e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3703202e7745ad6f3c68e8ddc0d1800f2d9862cdbdbefc86792fb447c09064b0
MD5 2d3910906a6502464e13e04d479fb39b
BLAKE2b-256 9c4a05c1fc58b5ec1f09073e00dfec543682016b2edfcadba3f3336c283e7f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 674a1fef7e627459ce867d98520c9c77708f3dee4af43c2784c86baeed6d26c7
MD5 4396aed138cbf3e1bf0ae7e9ef13cc3a
BLAKE2b-256 54c5de66f2f617211a583ebf03196656605fb519fa003b9dfde30cad0ae97c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76c2669470c1230e972d289a18ff086f21f79deb23b8d257f6e3c522061870bf
MD5 5e9773e63fe1e479065ea69bb234f93d
BLAKE2b-256 45b5a190b723ad5aa428c9b13919d503a367e822d9a967b117226d4756a7cf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36b85cca2a5494d808b7672d55952131f5899350a84c7507b8d80de3d478cf1e
MD5 1abfdfa54084a5b86af85b6e7d708d89
BLAKE2b-256 5fb4739a2a20c13ac1e1e0a3397747fe83373013dc6a5c6217c364b9489adf53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95be73358e0c7b9ab2b86649716ffdbaba05424a2447e801c7cbe0265e8e5bf2
MD5 64157e5a0b03c8e4ee82b502e371cf0e
BLAKE2b-256 579920dd3fbb00bbb33aa6c2b47a0c5a6ebf3ce138efba34a794005248f0919c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 260a5d916d91801b4c66aedac2bd95501ac856a7f8cf340251b9007514b192ff
MD5 dfacd7fe24bcbdeb77f08b97672d6b6b
BLAKE2b-256 7158cb274e49152562ce09a469cb31e7da07f586b87d0e22f41e3362e52d5cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ed2e35c47610684dc2d193bd489f169b2b97d22cb840935b7e5e69628ba16a2
MD5 8d9470226ccaa9cbe05b69652b537d1a
BLAKE2b-256 a2d5e8eefa7a4a7c186c27cfc307ee63533d2f00df3413cd8f3de81b0f1e8cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5019ca41d52893529d77ed8b7c2f7ffa6e93c7cc24d1125efd9e0a1aa117a8f7
MD5 a2011f07521f1c6b3026d458f8f34e8c
BLAKE2b-256 4fdbdb25bb34fdd88209bd649a2e6e0f27cfb02e088bd51b87e8b7aed3b5478d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c9052eaa0107de510f7eecba35f74b04de211e0a10083c38f4a1344e8b8cb052
MD5 feb2f1276e788f78947c56b4c0a62cec
BLAKE2b-256 0cb7cf979729b3640f98ef0685d80b2e7ac2025ffc1d2c139d98596872ffe881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f20e63c23365f8280694524baf5983ebe0dc2b6ae62a0920ca109ab41ddc4df1
MD5 ed68f26f586b11edc5122b80036d596e
BLAKE2b-256 7a3740a52897f336b9ed3071e7662b5166665df198e0b9802b4c4d54cb677e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a56827b8c44e4e1b51c4300811bc0ee4b6f0082d88b014b0a435a26960400d74
MD5 19462ddab7982a557c671e96c12527dc
BLAKE2b-256 471c89b3fa2d7e3af1be3b6fae42eba763b0ea0cafcd120b5ec77d222eb42956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8a9b43b61d43fab2c9a595b27f29e227d6676b47569ef874e3aa15b30b126301
MD5 89afd117ba5aa03089a7fac6a3c425df
BLAKE2b-256 09486104122953276fa0d4db2add04947bad43ec8c551ca8634e22985c9f55eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a27e8570bb9b81b491b9d5cb6d9d28581baef9dc141448cdb04bf64f6e3bca47
MD5 4c0456f2d40a021a776b2bddeabd9660
BLAKE2b-256 5db9ae0c1cc3756a5a2ddb957b66d34d7c51d33f7cef8574cea0dee5a089cdf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d4d3605b8824b1a80083ad1663be39087924ac5acdda78cda54cfc662272288
MD5 4ced91d6dffa1b655071e8aaff849890
BLAKE2b-256 80e375adc1366e47642af4b27075c4cb15eaf9124fa586a52c7781293ab7a6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07165b8d5497f8638b922a84a174d3d2a17f5fe6e8423d667313647f2253df77
MD5 5ab0d1413b9f04e3353fa8b754019001
BLAKE2b-256 2fc82f28a0064ccbee60eaa5059da575ee522694ba985579a93d9d2735377ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04bc4752ec48d660735e2cec4c2aa54f5428176eadabf1026777828dbf40899a
MD5 583374eac16903be408c3e41d2236b20
BLAKE2b-256 09c88c1a24ec294a0730da8014e5331f70732a5a450a21c738d7715b87c5d0d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bb62a07428511df2d279f57d4468a292b884b686df2d801159a37e1b289c9ac3
MD5 0c3607e76df081db600ec41bf538d715
BLAKE2b-256 33f076a50f53e51d525515dfcd682a9965f32ba570c9a483a0419b0d1fbec6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b157bc57974316abc4a5131bc8a3206a39d4cd3e4dae9b15402713343383508f
MD5 87f9d1ed2913936407cb4146769a5a18
BLAKE2b-256 74723fe9423e1afcf54130e198676a9fd4042ce41946154ad492f57b1816ad15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 76a158508991747c92aedcd0af43d423b01f57696f509aa3e9daeae8244594e9
MD5 0671442eca98b3ff3c4d0199404ed1d5
BLAKE2b-256 5df1dbc2aeba2e06e63380f2452d2386aa64c22b568cab490b38219c6a71f219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac8b1f361021c6129b0791e9c2194d3d12369946cafede636981b50e637dacb7
MD5 2349bd2e0f4f50a03586c269d6e7997e
BLAKE2b-256 b9a355220a2109d71bbaef0f70f80e2db536c9be52d5c5d877230e7fe3d40591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcb3e5b3b9c07ca951ea18e08b4a40b24d0714d2d5d1f0169c590e1e0c236895
MD5 df4a18a10c6c0ef5f84f4c2704dad63e
BLAKE2b-256 769f7ddb4b7377df2cca7c0ec83a59e2f0dfa4eb83ae0f57af59feaf12dad7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 49c3fc3995be0b4518c267a11da97852b2f248724bdfa2691ee465c76a2ef2b7
MD5 594aa164ae2c86a04e61e367dce48703
BLAKE2b-256 dd71760ab0bbf376aafe37728c9cb10e608b8637885a58dacbd3ad5d96325f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d5801c51ce06f09a9d34fb4f66c1450daf249f43a87566eb90a8eca9edb459e
MD5 75203b29f39acae5adb4384f3cab4c9f
BLAKE2b-256 f7b9f647d8b096aea025a9cf3913e4d23abf7094c79dfdef45655908c6399408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1290a83a37c8084a145472bc423263e1ccba657c79628193a167af2bc9b06888
MD5 f0165e59d9f242aeb95fb5fd379f4e61
BLAKE2b-256 b33b9a1f2b59a5a2c89835c743733eddc2b1ce36c18448f8dff4f48fdced7522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.24-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d73373a84411db532669fd93bdf30447225c38597da5a3babb4c076ea5eada4
MD5 d5632c2efbc1cda64c800cd7654bed78
BLAKE2b-256 0b04033f08e586e203b4d4acbec6d0fc5d9b8d173c6444d10be792f70e860cb4

See more details on using hashes here.

Release history Release notifications | RSS feed

1.25

81 files

This release

1.24 This release

81 files

1.23

71 files

1.22

71 files

1.21

51 files

1.20

73 files

1.19

73 files

1.18

73 files

1.17

73 files

1.16

61 files

1.15

49 files

1.14

61 files

1.13

56 files

1.12

56 files

1.11

56 files

1.10

56 files

1.9

46 files

1.8

37 files

1.7

37 files

1.6

37 files

1.5

31 files

1.4

33 files

1.3

1 file

1.2

1 file

1.1

1 file

1.0

29 files

0.9.4

29 files

0.9.3

29 files

0.9.2

29 files

0.9.1

29 files

0.9.0

21 files

0.8.0

21 files

0.7.2

21 files

0.7.1

21 files

0.7.0

21 files

0.6.3

21 files

0.6.2

16 files

0.6.1

16 files

0.6.0

14 files

0.5.2

16 files

0.5.1

13 files

0.5.0

11 files

0.4.3

16 files

0.4.2

16 files

0.4.1

16 files

0.4.0

16 files

0.3.2

16 files

0.3.1

13 files

0.3.0

11 files

0.2.7

13 files

0.2.6

1 file

0.2.5

13 files

0.2.4

13 files

0.2.3

13 files

0.2.2

12 files

0.2.1

11 files

0.2.0

11 files

0.1.0

13 files

0.0.11

1 file

0.0.10

1 file

0.0.9

1 file

0.0.8

1 file

0.0.6

1 file

0.0.5

1 file

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