Skip to main content
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.25 (2026-09-06)

  • Rectify packaging, mention minimal supported Python version (issue 240)

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

  • Drop support for Python <3.10

  • Generate wheels on PyPI for Python 3.15rc1, thanks to cibuildwheel 4.2.0

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.25.tar.gz (240.7 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.25-cp315-cp315t-win_amd64.whl (360.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

python_rapidjson-1.25-cp315-cp315t-win32.whl (329.3 kB view details)

Uploaded CPython 3.15tWindows x86

python_rapidjson-1.25-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.25-cp315-cp315t-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp315-cp315t-macosx_11_0_arm64.whl (217.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

python_rapidjson-1.25-cp315-cp315t-macosx_10_15_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

python_rapidjson-1.25-cp315-cp315-win_amd64.whl (359.2 kB view details)

Uploaded CPython 3.15Windows x86-64

python_rapidjson-1.25-cp315-cp315-win32.whl (326.5 kB view details)

Uploaded CPython 3.15Windows x86

python_rapidjson-1.25-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.25-cp315-cp315-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp315-cp315-macosx_11_0_arm64.whl (214.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

python_rapidjson-1.25-cp315-cp315-macosx_10_15_x86_64.whl (216.5 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

python_rapidjson-1.25-cp314-cp314t-win_amd64.whl (359.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_rapidjson-1.25-cp314-cp314t-win32.whl (329.2 kB view details)

Uploaded CPython 3.14tWindows x86

python_rapidjson-1.25-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.25-cp314-cp314t-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp314-cp314t-macosx_11_0_arm64.whl (217.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_rapidjson-1.25-cp314-cp314t-macosx_10_15_x86_64.whl (218.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

python_rapidjson-1.25-cp314-cp314-win_amd64.whl (359.2 kB view details)

Uploaded CPython 3.14Windows x86-64

python_rapidjson-1.25-cp314-cp314-win32.whl (326.4 kB view details)

Uploaded CPython 3.14Windows x86

python_rapidjson-1.25-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.25-cp314-cp314-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp314-cp314-macosx_11_0_arm64.whl (214.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_rapidjson-1.25-cp314-cp314-macosx_10_15_x86_64.whl (216.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_rapidjson-1.25-cp313-cp313-win_amd64.whl (348.5 kB view details)

Uploaded CPython 3.13Windows x86-64

python_rapidjson-1.25-cp313-cp313-win32.whl (317.6 kB view details)

Uploaded CPython 3.13Windows x86

python_rapidjson-1.25-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.25-cp313-cp313-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp313-cp313-macosx_11_0_arm64.whl (214.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_rapidjson-1.25-cp313-cp313-macosx_10_13_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_rapidjson-1.25-cp312-cp312-win_amd64.whl (348.5 kB view details)

Uploaded CPython 3.12Windows x86-64

python_rapidjson-1.25-cp312-cp312-win32.whl (317.6 kB view details)

Uploaded CPython 3.12Windows x86

python_rapidjson-1.25-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.25-cp312-cp312-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp312-cp312-macosx_11_0_arm64.whl (214.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_rapidjson-1.25-cp312-cp312-macosx_10_13_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_rapidjson-1.25-cp311-cp311-win_amd64.whl (346.8 kB view details)

Uploaded CPython 3.11Windows x86-64

python_rapidjson-1.25-cp311-cp311-win32.whl (317.3 kB view details)

Uploaded CPython 3.11Windows x86

python_rapidjson-1.25-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.25-cp311-cp311-musllinux_1_2_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp311-cp311-macosx_11_0_arm64.whl (213.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_rapidjson-1.25-cp311-cp311-macosx_10_9_x86_64.whl (215.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

python_rapidjson-1.25-cp310-cp310-win_amd64.whl (346.9 kB view details)

Uploaded CPython 3.10Windows x86-64

python_rapidjson-1.25-cp310-cp310-win32.whl (317.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_rapidjson-1.25-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.25-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.25-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.25-cp310-cp310-macosx_11_0_arm64.whl (213.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_rapidjson-1.25-cp310-cp310-macosx_10_9_x86_64.whl (215.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: python_rapidjson-1.25.tar.gz
  • Upload date:
  • Size: 240.7 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.25.tar.gz
Algorithm Hash digest
SHA256 97c1de449552ec28ac5ae89350c2b53e4c5d21a9b4308d7a1630b1099e5db9fc
MD5 159b665ca2ebd3fac6a541a2bfb32577
BLAKE2b-256 e1457e2c05ef1c9357e22f1fc345fad41c24d50b9dfb6ac8104222987aef1f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 7d43601b2bb4a6645f41cc32334f9f6af7e8c0b23ff5cdb6f79483edc43bc79b
MD5 d2047395e2f732374888531b2b3913e8
BLAKE2b-256 aa9f939eaef20646e5233c38011af3f74e770560b2927c2b82e54374e072de86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 ff1800233170b331c25b1d1c42a30dac769857bb9cc0a4b41ab6559142eb1f3d
MD5 8d7b688fd5911e50cf4481bd6a3d79cd
BLAKE2b-256 bbb93717121eee9ac9fd2cffb282f0799b7b086c20c69f930d875ea6212cad03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8644e279833b68a6361ec2b9bdff018b3226580601c271008a1234c1a7f78e03
MD5 22b0188363608ca284c41cdef21405c7
BLAKE2b-256 a8b9ab1862973d0525c5c8600735ccb56ad9ba93f57de0125e121c1edf7e130c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c766ea78faf913188d670e5082046efd1a7aa5622fce81856d2254148634f909
MD5 5f7c39191a35f8366411f55210c27f48
BLAKE2b-256 ec51c4fd462cb7cb82be45f5141fd3480a25803c19df0c2bb78fa34e17503d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8d9e22b538cbef3a32b7cd18f7a931709f58c807e50f25c41f54bd291d5ea17
MD5 8539e5cf049659ff58b42553eee92ed2
BLAKE2b-256 8d722697e5b2e61e2b77bb44e181a30cb80fccd60257e0a16a232f3c48e0476c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc6b3520464f54625995c245e61df202658bc231fe4965ebe280d71b5f629cb6
MD5 dbc6c3c01271fde1e708ca837ebf23f9
BLAKE2b-256 41fd92111b79ddaf481c220344ffec4ae278a3610baaf5d51149682643533990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7cd73b5ab5ec5ef725c8587e1f9a40191ce831cee3ead68079abba364fe2cb6c
MD5 ebd74c2ec3fc21949b7bd44258f84410
BLAKE2b-256 36c0e52400d3643b147e8f966eec70d99fdcc1da361ab20ed58833dc3a652250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0cbc6875a9ba7b78d41e38269e2945f24b826ff98e81f9d21b740d4a671575e8
MD5 b134cad315010d20a530b347eb7444d4
BLAKE2b-256 9b8e136d11c8117027be0a104604d4e08a79663a97716410e18ffbfe0dfb7048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44280f2465d7e776e064a541c268b1ab73328a1e9919a059b24620dd0670d514
MD5 f49c459f90f3011ac62ca5a25dfe1346
BLAKE2b-256 1ba8e570009a396e272931cbb5f5d3913869585d2b87bd9280a20aa3e8c627f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec7464c0c218481494ba835ba8457f44032efbfe68a96345b33c2d6907bfae56
MD5 bf5f272c4319fccf3e9af7ec3ec514a3
BLAKE2b-256 769e57759f8621cda30f35af5d67e76baa9a1962a352bf916bba6c9f3d00b30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 81935ff3d6046cad20f2b0a280d56acd1fd57159f2da4cc1a6d99659443dad5a
MD5 bd9cacbd6629bcc779fe67f238b9333e
BLAKE2b-256 1c8a94f8e3988e329c9c0e9fc8e97038f5e12e5430bea25e42126073071681f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 2e5049eb6faf8fb2b68c641069d2f1e311fa771186fb090235403cfc83c2c149
MD5 46fa7a13dabb4edb9edce4c6a125a919
BLAKE2b-256 fc36ef65ca116e49c0e37abb19e51a75aa77c8efa69196d6d142ec100bbfee2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 522dddfd38779f0a18286379abe5be4150869d74134dcfa3fce3db5c4abd5115
MD5 970ac51ff3ec9cf70c1be95f504088e0
BLAKE2b-256 209da4fd74a9208baafdb426c9bcf7da7b87f8b657c82b465b1fe2fccff00c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e784c34019188abcc5be32be840f6010dba142e3b77243a728989f9b3d96213
MD5 c0bdade0eb540dc3f0278d65ce42ecaf
BLAKE2b-256 a2dc26828ca530e75cf68a86ee9e92592a7addb4fba064b7cd9057cadc58ddc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f26ab510057ce0b51753f5bbd9a37d803bc1adfa4aa3b5262200f65d6448f563
MD5 d6a4a3b08b3dc7303f39e24c78cd4cf9
BLAKE2b-256 f818334cce722727db55ce77bc0bcf9841a315ece2dc354e0a8ebf16fe29d671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f4afa9320300e7839629b7f9493956b6529721c997e6c6f373033e47bc6ef90
MD5 8dc4461625966406f56c435a1c4be664
BLAKE2b-256 f80604f8f52fc4a968df472f4ab91097fc6b3eca2d70a7bc4d96522848a7a2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a0809668ecff4c0dcff6600e1d94d8746416011f0a4679aa74ccc377c610a73c
MD5 2cb24724a97fb768cb71dc9c6af7e282
BLAKE2b-256 789c50ddc3b5f0cb71ba360bb25abd2673ca35c72c4213f5387e3b36f45de8a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58235468236d6c1e2b45bea0efd15386ae27eef3fd5980619e194392fcaac46d
MD5 e89238aaed4f132b5ff442a6e6d0d14a
BLAKE2b-256 9ad35f915731718964c58c6710ea10cf20f783026e0ac5f598dbf3f8f9e0ed3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab4298d8ba24c72e9bb0fb30952ebca89f5bebf2f3cb9779a8f3ae45f128ff4b
MD5 34285f8978c14dc1fd075f2fd6cf695c
BLAKE2b-256 4ea1b17b4ba14636e68a13cd868a7b792edb216016c23f4bde6e7085797a3dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c08892d5b9fedccb7506cc5d680489fbcc5f1db15241294d0a99b66a1252455
MD5 7a617a755d0927eb7db305bb6c177f03
BLAKE2b-256 520893a52910eb5b0ac3360ceab09cbcda49aa54b664a6bdc74c7bcc4d7262aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6f802954c713da8ab71166bcf7b72b33b9c188ecf2dd7115cf14887a3cc774b7
MD5 fddfb271569dd8308e2573c26e8fdac0
BLAKE2b-256 a026bbc70ad3b7c7a123b0790f5fc328aad40df6f388894ee96ce19d085a3788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1a76ef653fb4e3d42bacab3fff1d5adffa41d3726ff15605e3cff7b59634036e
MD5 6bd807126548d2aee5436084b0abbce5
BLAKE2b-256 f66b58dcc0479aa3fb37d8956ea4c7f9c2b397f7ee109f39a30bb42345e0c97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06a3f76b1997b4d16a86744b3e733dc24738c37085aedfb393f6e7779e7d2b58
MD5 28cdaab88302884c3520923c0bb35ebd
BLAKE2b-256 b09d9c98b2f6b33e55af19593a1cff2e7d99d65b627194857518f521458444c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f688c928912919389e6be0c2fa94a90203216eb7b03e116c6a6cfd93e91c172a
MD5 61b55eca2fc2929a04d87f76f534c442
BLAKE2b-256 ca0417ec79f279b1ab5d66e3c1e730d0e9bce6fe6cfe6d9defd157995162c8cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d9da6b780408f894c94dfa508f46acb8afc68c189ba284123a8fd364bb7238e
MD5 ca6917bea8abb25e754749527eaac3ac
BLAKE2b-256 69827793643fbf689dbe38395c9d4004f95eb965b02e9c4c4fef330216e9a5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fe2db75802638a7ffa7f40c7cfb338a91b952b291e9d92cd998a404a80dc36b
MD5 4cbda8546e33dd51f0d2132e1cacd509
BLAKE2b-256 cd19dab580a8bed5449c4b22de5d2e2bf08c320c7efd34aff5c073f60beefc47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d8f8bca2ea62f399dd57330d826271e4436ef500246771f1f95153f08059936e
MD5 d9bac4f7daf6bcede88f376b0d3d0902
BLAKE2b-256 0460a9bafc36af4fddf9d7374c1b606f465f30b2cf89b3e4ab1bafbd2196568a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c9b9fb82a5fb1f2bc7a78a09e947c704f70d78e7b95098e7a170e4cf2f106a9
MD5 02b295647e9d725b240def836322a057
BLAKE2b-256 741c9db37ecbce5bc55c274b056298165498c3604eb3cc640aea473e32997a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62cb3da99457df12e43d2812e087e472d00b1940506d98322952809d7b43ab0a
MD5 ec2f4411be8d812815f68ee2db7fe190
BLAKE2b-256 98e54712789e95135f26605004d95b4596db10d1bf6a9033ff9116b5ae468d08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8b7da241fecdd184058dc809c7708af730ae97e3ec1c2231b3fc9bdd3756786
MD5 f94b62e332dea27db6bf63c49973ed91
BLAKE2b-256 26f82029b677b0ced9674307b8fef38afc94b79764e8925cf8f1d08d97849ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79d0a7efc092a014439bde52814c11b7b86edd29e6b87de043e41904dcf26cee
MD5 01d751c023ec22801790617100393386
BLAKE2b-256 34b33b63200fcd6cb535a50af35926d4a341b1ff145b36dc30de6268347aa4c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c60ca5a97f67a03981532225559eea21770e2a317d90d68d855250a7a6286dfa
MD5 978660438b7c8fd4aee9271ef4d84199
BLAKE2b-256 b4442a4b50c56bd0152473d0330625678b1f29d6f0afbfbdb5acbfb0fed39755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c119eb0bcb6512f0ef393ecb1ea11dab52885364bf040cf222d99747b73a0b49
MD5 437f54deb5f6003888bbe36045648e3a
BLAKE2b-256 e3531feb2b852a8f964a8ad9090990111a1ce9a00ff8d71cb0a8934d7bdfc62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 196cf741fea00347d1a2f1fa8a3c0839cf5421cf040f06c4d389e71c1fde000c
MD5 011b31aac2fda3f9a972d19b2431d30b
BLAKE2b-256 5d73c41fa037841e59311dda6863d9055044dc0931290a25e45f7aa213ab3dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18cc644c0ea957b101172cbcaed24345718f17afae3b2330e93b3c4f9d56223b
MD5 d86f7f47e741aaaa368584181776f6e8
BLAKE2b-256 874f67e81ef2f829eddf8a5790940ccdf0dc55448cd981791b4fdae3d6df1e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 280fe164478805ad78f94a45b7e38ddb8abc2653108903141ccc816a02597e5a
MD5 c2f9b3c4c044ddc3034f998157c2e9b5
BLAKE2b-256 2a91348ff4cff7d1009bb6b683e323170bcf1a765b3cdc40309388cb017f2279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 643fa1b9ec25aeac4a431a8302c63c9c1fbf7b5ed6f61e5ebcfdc498bb64f38b
MD5 6d9d13b420141965152d03703c345a86
BLAKE2b-256 9ff87b59c1028415a66db86d6bbc06866336f8d5ddbba2db6aec43b81bb3ac01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 712c0675fb7af328999625b15c6c2ca9fb12fa4e14ee1d156030aa5080fc9759
MD5 7a5f523698e384ea0eb7c17bc1426631
BLAKE2b-256 17a00743453a932520c228c586712149581b2eb4d88c42873a11dfb7147c87cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9e3950c0fddcc14cec7bd1bf00835b68893f7d331395b3c8d08fae198d13d6d
MD5 3f8f5cc835f97a24ffdd2c0b10a51b3b
BLAKE2b-256 42c53de3a4e700441dc7e501885532f03022ace544ab4b3658226239ceba2b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8b5d37bac0230ab3848c5447e8dd582ece10b36fec0ed234a14cf897dfcb160
MD5 491e8bb7571b9be0334963081720e34b
BLAKE2b-256 9a54d5b9c0edd96905a8a479a1e66d22aaceb45ba38a5bc2f7f9f6ea907c0357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69622582dd18c27d2fa44b014bccd7c3bf7ef3ae56532d44ee1fd01b0f89f156
MD5 79c5902f69ef3f55159b05209f27e699
BLAKE2b-256 2f0ef2415c4493c0092f9b1a877eb86dcf626981a1f7eaea4128e7211c4684b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 38b14748dfdd8b7330760a5f6905f2b7e318eca8fe35841d9676be2bf1f00809
MD5 0992925de56d5d4895d1de8550270231
BLAKE2b-256 2e006e1f234f6b76a2f15b99b8ba706edb37b92134222c477d6ebe39bf05e048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 340d36a400a62f8e18af3a2cbf8ae055b6cc55f53909f80adce9d4b19d66a106
MD5 9b01429f3af77e00ac82ce235783ff0f
BLAKE2b-256 f23b51c46a8a89d93dc39b49d83e08964290a434fe69000252b7c3992a848d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d0f1d277a5f6c04009bbbaf3c0adc3d53eb72035a3d56fec8f0cfb6d9ac68ce
MD5 def97eeb7e4166eefd4444a5abac7a1d
BLAKE2b-256 4bc7b6adefe18d7b4c068b9ddbb5c3b7e471309b4ddc404e6368da9e89cbfc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9a6f453e95f48f6b91aa35e1d3989b5c8919a551c56676f81747e675e7874e0
MD5 d552f8321103e3866739e3fe6142d908
BLAKE2b-256 1c22b0006945aa605324f941e443e6042e9f2f378bb17ca221bcce9fc7cacfae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b8f76797188e6e60bf291f11cfb354fef1f45737eee0c4b90846ce9ba4acab2
MD5 b8f4c0ca130caad89be0c871b217ff27
BLAKE2b-256 ad9cdefd4e07e296f0b8befd9c7a40cb96fb9759062bc1c99e8868440e7ba07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3bff112f299b96b4d18987458561b5822fe3df2a2dabf00791acf7f20a8349ab
MD5 48136befbead486dbe31c9f9982bac62
BLAKE2b-256 90195da1541cb518cae66143c6ab66704de10f3295ea9a05ae234b8eba518f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfbb017863c4fa064d445d0adcad32d918810a9a3e295871393e4b72745c2898
MD5 e5bf65a003814e19ecd14cbc9167a86e
BLAKE2b-256 7d557178b458253b98300408345e58f67b1878d16d152ecae91ccee824151b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02950c997db93803dad2dbfc11d0ca095e8dec3797c21e703c208344a876c962
MD5 03a690e9dc0c9a5d09f398417bae4532
BLAKE2b-256 59673ea2a88c6dc943a9069c1a6d9c1ee92260c651224bfaa69b56c3ef2ea630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2890118fc955986b9f954a9f51dbc5a8eb4de62a6205f7923f3f5fb16401c2a0
MD5 986267419a5ab36ae25f114c400f5cb9
BLAKE2b-256 fa50d33acc91c937e80b6f21659706f74007cd00fed043fbf4b0b4effd6d106d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca7f24b8547937015c38f77b193122fdc663c91645de04b21d4558af84d79e68
MD5 e430b0e9acab78ad27af4d6413133ff9
BLAKE2b-256 d4a7bb69366197791c33c5f191abece57a30fdcbd6bddae88cf9668277c0c924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93093ee50e3d6e1d64554fee1e845ff1c3320939b3287e90bbbd0f0d48bd33c9
MD5 e7ad0fde691805bf7aa4ac88af3ec68d
BLAKE2b-256 eeda6e45b9681d158e106a56cd81c38f29ff0c3da26f3da6b90dbb99a5d87220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0541b7feaed936af513e1a9af3b460a5f313223e06e3024092f8b9e57a9a0fd
MD5 f65bf88f6262fe6ee7bc10524cd53cc8
BLAKE2b-256 52ff87b689948f0c4408743f940ab8ebbd6cec7e406475f4c98a624f0a9e2c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c76cd9785a42a5ef0cd9a82dd1e7e8b977eed4911265e02bc3d8dd041492e7f8
MD5 94bd9901edb30f756ced227116694d9f
BLAKE2b-256 ec781d7cb904b4b6e975da10c4c06cdacb55ae2fb984b27328c91d4b888903f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cec5827637ede2f89665a131f3fc8c59f611111d76a6eabd1c5b37cadb273e3d
MD5 9bd5156b62d536ac70aef7bae174f3c9
BLAKE2b-256 5ebfed3a057d03c03bc8cf3f1439797645c67525211f59efc64783a6ceb2daa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d425190a9cc78f46f897d0efceddc094048ea08d584340a5830f48e186607f9c
MD5 dcaac7c180d290d3ace1ef9ec64d7e2c
BLAKE2b-256 89db259cafa8461482d017c65ddb0a299b39a9c4038d83f18b293e89d101ffc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b4bcee9d39569839b8696bcfdcf957878fd5d3f5b44690c23d3e49783e0bf77f
MD5 85f6e23b9aba157144cf1dcb7be41824
BLAKE2b-256 aa1f6b0f894e1d06a27c5efd9d5b714420a6bd0e0546f88a7733ef6c978db65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77eca0b7c2a44528bb65e44ff060b84aee47d5548e39e84b92fbf1b4bb70af33
MD5 7bfa303df3c9dc0195f0a33a64c3adf4
BLAKE2b-256 b443f8a241248b2d12c9907a740dc920b9ccfae29676f5c5b5e5e175975e90e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8960488e52a93a3bd4ca86f2287d4a2fbf0f6b9902e51dcec771e578c1f5e92e
MD5 8d0b40e97d17320e47fac47337dad69d
BLAKE2b-256 a32191b48b55e28fab378ee7aa45372af89a057168f1253cf14019754dedfb92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c3226464c6aacaa46832a19f02ae17d2fd4a44a5ea2fc38b813303ec0c0ad07
MD5 b44d40bf728dc151b588d45dae3cae93
BLAKE2b-256 9e9619e312abd3224ca0718cd3ced5fe66dcbce91f70dfb0c44c957a898ea469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd41d5ea2cc8c9278e92e3f7df6250db5b98a3f7b4a143a6b8fb18335813b12e
MD5 98947594a1516da10b3c5f82df90133c
BLAKE2b-256 6e954fa2d5c689056abdaba695cf42514e4e03c096a931bfcaacc0bbe5db6dc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cded8545896fbd04978d338b10b5c4433ee4ee525bb99df170b04a355056d6d8
MD5 8c3f1a8450cba2287512903b73509e3c
BLAKE2b-256 e9c4952d31dc63e5b04cb1678380a234c19a23a8a19b845e19cbeeb0df18b769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d558ba19e7927e418cbc13b093d885653a1a031e39972f774da4e6d694fc1315
MD5 e9d7a97394539271e3a83d1500b597f8
BLAKE2b-256 05de23d8a3ef0597f6509d5678c421ae5f8f18bb514aeeeaa203d578c242db68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3c7b4f36417614e4b5d797c7e320121aa0d12c17442293698871793694dd4568
MD5 fa321df16aeff710c19357810a9466f5
BLAKE2b-256 80467b78412071a16b3e81453fdb72ebb30133fff23fbb1adaff69c455b22eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0be8c4da1aec5f230ff036947611b8f6f42441189c4a5651107a8a0d670166c7
MD5 3bed9e4f185a403ffc2249551c8e38f0
BLAKE2b-256 bd2dace90515a7fc0b1739538610e6c8ca0546a3b7b3668a210e3df8ea468e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2975f036913143206ab034c90b888cf16a1b40440011b2e8ebedfb95e07d089
MD5 53a5320c5bbf65c6183e0b1d67a6092b
BLAKE2b-256 1cd09eb9433a7fb384053217a1ba8e39fa0e429c4cfe52982f66490f97777966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 af79904cce10811c998bfbe0375e1423bef9dd5af29d9cef521bd5fef00f452f
MD5 d76e9058fdf96835615992339e889ab0
BLAKE2b-256 a638875f649ddd0efd147296f24b03af6cfba82e6e33a45182c879ec9fa7cf04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 997f193fa8550ab8be4bc124f4320545e6103506c9a13680fdafcdea6264c20d
MD5 62358940748f2ed644370d2f0fa5c27c
BLAKE2b-256 eb1e97bdacc7375039ea3fcf90f5618da54c89f6b2f271eeace27dacd4a012b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65c9954e8723fb7cb87e7b0c68831971f7d862e529089d9d67167e45c16f8ad2
MD5 37d250a8389b21c3587dd1577a3e5a76
BLAKE2b-256 55a4de2fd5d5e16d7e0acc726eb874b7a6143860bb06f24731cb49a51af847ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed4b54375012839d3e94025d3207c1d3de79121437fe2aaa2e61f1a3035a2674
MD5 d386c57e5ee6b592ad53c7be8ce373e5
BLAKE2b-256 6294db7af5143944be784ebedc0455c115d328ff35554648fa74f4a0f1ce9c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8994f0af4598204bc60719153bfc60042f4f33089501a86cb17d2a1bdc54d92
MD5 3be849350642ba65f95247b1ecef38d7
BLAKE2b-256 679abeb2f5fe0e8ad18d79b773abca2a4e6ee817a419d2ec9c7d98118d9a5aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8b7df5a170df4d86d820413ec222d54ccc8a85ebe5f6285f2015057ee0e278a9
MD5 01c1b4ab6b32625a318bcf977a2a558f
BLAKE2b-256 2e55cc6417ceb931cc2c8e3fdc755b086a0b609904b2f15c9a6912c994b3442d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f4edd99529c2cc069626c8d79a756db6ebe6edd904c130867d3ee8f1de3b7ca
MD5 c3b7f135d4a7bda7b0c8ff9635edefa9
BLAKE2b-256 100ac689766aee4e12db6a92f6863dea0bdf989c690a12498198f0288df32d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3808ea4678d196fc8a7ce7521a774aa646077830036afc04d29688d03996cc2
MD5 98c9eeaa957c1069033da6531a76d63a
BLAKE2b-256 7936d82e513997ae2d2ed0d554277adecf6b148d3c57a7f517d23659f0d54f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f45fbcd6ab79e346fc1bd20de0a84db3ba1f6c7a3a78bcc163e8dbdca2eb72b9
MD5 a87dade140be88adadb5065d48ba114c
BLAKE2b-256 350c0ae9258d331b86b42051403ce7954735c09b5467373efb1d785dda7137cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fc6dffb934d2c0b44063b3e7fcce2e23fcdb657629200c1d3fd9d907d17d75f
MD5 720dff7e63a12fa9a9bb2e5e88fbeca7
BLAKE2b-256 4e2e21f9d9926f7100555402a6fbc2631e813181d48e75fd26af9b9ee62bd4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 97ce5348f639a5bcec3c4f1a32742eb6fcc93460edc9a67dc028d8edab942ab6
MD5 f907ba08b7e17ca2dcf9a36edddf568f
BLAKE2b-256 a3f6e41762c744080cce93d05702904ba39bec251e8e2b24e28158090ec3908a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0dac7659865894037f498bc41484b8764992b7090b2cf4cf5a51ec84e4b546a7
MD5 7573d8e2d02f84d4204f7fc002861c90
BLAKE2b-256 acf6e5e1ec92578a9b1c4b3a8471c7825caf440e2a401897a5f421086421d5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43c275576dfd46d508c9ac2f90220cb7b4d0ff1cfd96114bcf3a74ceccdb6dd2
MD5 996d053aa6756a4d95480b2f01bd9cb7
BLAKE2b-256 28f0ca2c2451d426332da36b4aac85d7445d3178650f8093f49180473d0a432c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_rapidjson-1.25-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c72769afc7d56466b81440b7180e7c0ae8f8eec1f2f5800d408364d436f4cdb5
MD5 2352ce84b72d623d578cacbb09bc9136
BLAKE2b-256 1d71a759400f7e4a9ab3c2755b732183142383aba4f20729f90ab1db29c4466b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.25 This release

81 files

1.24

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