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)

Release files for python-rapidjson 1.25

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

Source distribution (sdist)

Source distribution for python-rapidjson 1.25
File Size Uploaded
python_rapidjson-1.25.tar.gz 240.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for python-rapidjson 1.25
File
python_rapidjson-1.25-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
python_rapidjson-1.25-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_ppc64le.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
python_rapidjson-1.25-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
python_rapidjson-1.25-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
python_rapidjson-1.25-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp315-cp315-musllinux_1_2_ppc64le.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
python_rapidjson-1.25-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
python_rapidjson-1.25-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
python_rapidjson-1.25-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
python_rapidjson-1.25-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
python_rapidjson-1.25-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp314-cp314-musllinux_1_2_ppc64le.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
python_rapidjson-1.25-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
python_rapidjson-1.25-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
python_rapidjson-1.25-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp313-cp313-musllinux_1_2_ppc64le.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
python_rapidjson-1.25-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
python_rapidjson-1.25-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
python_rapidjson-1.25-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp312-cp312-musllinux_1_2_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
python_rapidjson-1.25-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
python_rapidjson-1.25-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
python_rapidjson-1.25-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
python_rapidjson-1.25-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp311-cp311-musllinux_1_2_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
python_rapidjson-1.25-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
python_rapidjson-1.25-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
python_rapidjson-1.25-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
python_rapidjson-1.25-cp310-cp310-musllinux_1_2_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ PowerPC 64-le Details
python_rapidjson-1.25-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
python_rapidjson-1.25-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
python_rapidjson-1.25-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
python_rapidjson-1.25-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
python_rapidjson-1.25-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
python_rapidjson-1.25-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 114.3 MB

Release files / python_rapidjson-1.25.tar.gz

Download URL python_rapidjson-1.25.tar.gz
Size 240.7 kB
Tags Source
SHA-256 checksum
How to use checksums
97c1de449552ec28ac5ae89350c2b53e4c5d21a9b4308d7a1630b1099e5db9fc
BLAKE2b-256 checksum
How to use checksums
e1457e2c05ef1c9357e22f1fc345fad41c24d50b9dfb6ac8104222987aef1f89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / python_rapidjson-1.25-cp315-cp315t-win_amd64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-win_amd64.whl
Size 360.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7d43601b2bb4a6645f41cc32334f9f6af7e8c0b23ff5cdb6f79483edc43bc79b
BLAKE2b-256 checksum
How to use checksums
aa9f939eaef20646e5233c38011af3f74e770560b2927c2b82e54374e072de86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-win32.whl

Download URL python_rapidjson-1.25-cp315-cp315t-win32.whl
Size 329.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
ff1800233170b331c25b1d1c42a30dac769857bb9cc0a4b41ab6559142eb1f3d
BLAKE2b-256 checksum
How to use checksums
bbb93717121eee9ac9fd2cffb282f0799b7b086c20c69f930d875ea6212cad03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8644e279833b68a6361ec2b9bdff018b3226580601c271008a1234c1a7f78e03
BLAKE2b-256 checksum
How to use checksums
a8b9ab1862973d0525c5c8600735ccb56ad9ba93f57de0125e121c1edf7e130c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c766ea78faf913188d670e5082046efd1a7aa5622fce81856d2254148634f909
BLAKE2b-256 checksum
How to use checksums
ec51c4fd462cb7cb82be45f5141fd3480a25803c19df0c2bb78fa34e17503d28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a8d9e22b538cbef3a32b7cd18f7a931709f58c807e50f25c41f54bd291d5ea17
BLAKE2b-256 checksum
How to use checksums
8d722697e5b2e61e2b77bb44e181a30cb80fccd60257e0a16a232f3c48e0476c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dc6b3520464f54625995c245e61df202658bc231fe4965ebe280d71b5f629cb6
BLAKE2b-256 checksum
How to use checksums
41fd92111b79ddaf481c220344ffec4ae278a3610baaf5d51149682643533990
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7cd73b5ab5ec5ef725c8587e1f9a40191ce831cee3ead68079abba364fe2cb6c
BLAKE2b-256 checksum
How to use checksums
36c0e52400d3643b147e8f966eec70d99fdcc1da361ab20ed58833dc3a652250
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0cbc6875a9ba7b78d41e38269e2945f24b826ff98e81f9d21b740d4a671575e8
BLAKE2b-256 checksum
How to use checksums
9b8e136d11c8117027be0a104604d4e08a79663a97716410e18ffbfe0dfb7048
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-macosx_11_0_arm64.whl
Size 217.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
44280f2465d7e776e064a541c268b1ab73328a1e9919a059b24620dd0670d514
BLAKE2b-256 checksum
How to use checksums
1ba8e570009a396e272931cbb5f5d3913869585d2b87bd9280a20aa3e8c627f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315t-macosx_10_15_x86_64.whl
Size 218.0 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ec7464c0c218481494ba835ba8457f44032efbfe68a96345b33c2d6907bfae56
BLAKE2b-256 checksum
How to use checksums
769e57759f8621cda30f35af5d67e76baa9a1962a352bf916bba6c9f3d00b30d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-win_amd64.whl

Download URL python_rapidjson-1.25-cp315-cp315-win_amd64.whl
Size 359.2 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
81935ff3d6046cad20f2b0a280d56acd1fd57159f2da4cc1a6d99659443dad5a
BLAKE2b-256 checksum
How to use checksums
1c8a94f8e3988e329c9c0e9fc8e97038f5e12e5430bea25e42126073071681f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-win32.whl

Download URL python_rapidjson-1.25-cp315-cp315-win32.whl
Size 326.5 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
2e5049eb6faf8fb2b68c641069d2f1e311fa771186fb090235403cfc83c2c149
BLAKE2b-256 checksum
How to use checksums
fc36ef65ca116e49c0e37abb19e51a75aa77c8efa69196d6d142ec100bbfee2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
522dddfd38779f0a18286379abe5be4150869d74134dcfa3fce3db5c4abd5115
BLAKE2b-256 checksum
How to use checksums
209da4fd74a9208baafdb426c9bcf7da7b87f8b657c82b465b1fe2fccff00c77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp315-cp315-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.15 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0e784c34019188abcc5be32be840f6010dba142e3b77243a728989f9b3d96213
BLAKE2b-256 checksum
How to use checksums
a2dc26828ca530e75cf68a86ee9e92592a7addb4fba064b7cd9057cadc58ddc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp315-cp315-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f26ab510057ce0b51753f5bbd9a37d803bc1adfa4aa3b5262200f65d6448f563
BLAKE2b-256 checksum
How to use checksums
f818334cce722727db55ce77bc0bcf9841a315ece2dc354e0a8ebf16fe29d671
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.15 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4f4afa9320300e7839629b7f9493956b6529721c997e6c6f373033e47bc6ef90
BLAKE2b-256 checksum
How to use checksums
f80604f8f52fc4a968df472f4ab91097fc6b3eca2d70a7bc4d96522848a7a2cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.15 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a0809668ecff4c0dcff6600e1d94d8746416011f0a4679aa74ccc377c610a73c
BLAKE2b-256 checksum
How to use checksums
789c50ddc3b5f0cb71ba360bb25abd2673ca35c72c4213f5387e3b36f45de8a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.15 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
58235468236d6c1e2b45bea0efd15386ae27eef3fd5980619e194392fcaac46d
BLAKE2b-256 checksum
How to use checksums
9ad35f915731718964c58c6710ea10cf20f783026e0ac5f598dbf3f8f9e0ed3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp315-cp315-macosx_11_0_arm64.whl
Size 214.3 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ab4298d8ba24c72e9bb0fb30952ebca89f5bebf2f3cb9779a8f3ae45f128ff4b
BLAKE2b-256 checksum
How to use checksums
4ea1b17b4ba14636e68a13cd868a7b792edb216016c23f4bde6e7085797a3dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp315-cp315-macosx_10_15_x86_64.whl

Download URL python_rapidjson-1.25-cp315-cp315-macosx_10_15_x86_64.whl
Size 216.5 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2c08892d5b9fedccb7506cc5d680489fbcc5f1db15241294d0a99b66a1252455
BLAKE2b-256 checksum
How to use checksums
520893a52910eb5b0ac3360ceab09cbcda49aa54b664a6bdc74c7bcc4d7262aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-win_amd64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-win_amd64.whl
Size 359.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
6f802954c713da8ab71166bcf7b72b33b9c188ecf2dd7115cf14887a3cc774b7
BLAKE2b-256 checksum
How to use checksums
a026bbc70ad3b7c7a123b0790f5fc328aad40df6f388894ee96ce19d085a3788
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-win32.whl

Download URL python_rapidjson-1.25-cp314-cp314t-win32.whl
Size 329.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
1a76ef653fb4e3d42bacab3fff1d5adffa41d3726ff15605e3cff7b59634036e
BLAKE2b-256 checksum
How to use checksums
f66b58dcc0479aa3fb37d8956ea4c7f9c2b397f7ee109f39a30bb42345e0c97c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
06a3f76b1997b4d16a86744b3e733dc24738c37085aedfb393f6e7779e7d2b58
BLAKE2b-256 checksum
How to use checksums
b09d9c98b2f6b33e55af19593a1cff2e7d99d65b627194857518f521458444c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f688c928912919389e6be0c2fa94a90203216eb7b03e116c6a6cfd93e91c172a
BLAKE2b-256 checksum
How to use checksums
ca0417ec79f279b1ab5d66e3c1e730d0e9bce6fe6cfe6d9defd157995162c8cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0d9da6b780408f894c94dfa508f46acb8afc68c189ba284123a8fd364bb7238e
BLAKE2b-256 checksum
How to use checksums
69827793643fbf689dbe38395c9d4004f95eb965b02e9c4c4fef330216e9a5e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7fe2db75802638a7ffa7f40c7cfb338a91b952b291e9d92cd998a404a80dc36b
BLAKE2b-256 checksum
How to use checksums
cd19dab580a8bed5449c4b22de5d2e2bf08c320c7efd34aff5c073f60beefc47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d8f8bca2ea62f399dd57330d826271e4436ef500246771f1f95153f08059936e
BLAKE2b-256 checksum
How to use checksums
0460a9bafc36af4fddf9d7374c1b606f465f30b2cf89b3e4ab1bafbd2196568a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0c9b9fb82a5fb1f2bc7a78a09e947c704f70d78e7b95098e7a170e4cf2f106a9
BLAKE2b-256 checksum
How to use checksums
741c9db37ecbce5bc55c274b056298165498c3604eb3cc640aea473e32997a40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-macosx_11_0_arm64.whl
Size 217.0 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
62cb3da99457df12e43d2812e087e472d00b1940506d98322952809d7b43ab0a
BLAKE2b-256 checksum
How to use checksums
98e54712789e95135f26605004d95b4596db10d1bf6a9033ff9116b5ae468d08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314t-macosx_10_15_x86_64.whl
Size 218.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
c8b7da241fecdd184058dc809c7708af730ae97e3ec1c2231b3fc9bdd3756786
BLAKE2b-256 checksum
How to use checksums
26f82029b677b0ced9674307b8fef38afc94b79764e8925cf8f1d08d97849ca4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-win_amd64.whl

Download URL python_rapidjson-1.25-cp314-cp314-win_amd64.whl
Size 359.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
79d0a7efc092a014439bde52814c11b7b86edd29e6b87de043e41904dcf26cee
BLAKE2b-256 checksum
How to use checksums
34b33b63200fcd6cb535a50af35926d4a341b1ff145b36dc30de6268347aa4c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-win32.whl

Download URL python_rapidjson-1.25-cp314-cp314-win32.whl
Size 326.4 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c60ca5a97f67a03981532225559eea21770e2a317d90d68d855250a7a6286dfa
BLAKE2b-256 checksum
How to use checksums
b4442a4b50c56bd0152473d0330625678b1f29d6f0afbfbdb5acbfb0fed39755
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c119eb0bcb6512f0ef393ecb1ea11dab52885364bf040cf222d99747b73a0b49
BLAKE2b-256 checksum
How to use checksums
e3531feb2b852a8f964a8ad9090990111a1ce9a00ff8d71cb0a8934d7bdfc62a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp314-cp314-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.14 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
196cf741fea00347d1a2f1fa8a3c0839cf5421cf040f06c4d389e71c1fde000c
BLAKE2b-256 checksum
How to use checksums
5d73c41fa037841e59311dda6863d9055044dc0931290a25e45f7aa213ab3dab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
18cc644c0ea957b101172cbcaed24345718f17afae3b2330e93b3c4f9d56223b
BLAKE2b-256 checksum
How to use checksums
874f67e81ef2f829eddf8a5790940ccdf0dc55448cd981791b4fdae3d6df1e8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
280fe164478805ad78f94a45b7e38ddb8abc2653108903141ccc816a02597e5a
BLAKE2b-256 checksum
How to use checksums
2a91348ff4cff7d1009bb6b683e323170bcf1a765b3cdc40309388cb017f2279
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
643fa1b9ec25aeac4a431a8302c63c9c1fbf7b5ed6f61e5ebcfdc498bb64f38b
BLAKE2b-256 checksum
How to use checksums
9ff87b59c1028415a66db86d6bbc06866336f8d5ddbba2db6aec43b81bb3ac01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
712c0675fb7af328999625b15c6c2ca9fb12fa4e14ee1d156030aa5080fc9759
BLAKE2b-256 checksum
How to use checksums
17a00743453a932520c228c586712149581b2eb4d88c42873a11dfb7147c87cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp314-cp314-macosx_11_0_arm64.whl
Size 214.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f9e3950c0fddcc14cec7bd1bf00835b68893f7d331395b3c8d08fae198d13d6d
BLAKE2b-256 checksum
How to use checksums
42c53de3a4e700441dc7e501885532f03022ace544ab4b3658226239ceba2b23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp314-cp314-macosx_10_15_x86_64.whl

Download URL python_rapidjson-1.25-cp314-cp314-macosx_10_15_x86_64.whl
Size 216.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f8b5d37bac0230ab3848c5447e8dd582ece10b36fec0ed234a14cf897dfcb160
BLAKE2b-256 checksum
How to use checksums
9a54d5b9c0edd96905a8a479a1e66d22aaceb45ba38a5bc2f7f9f6ea907c0357
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-win_amd64.whl

Download URL python_rapidjson-1.25-cp313-cp313-win_amd64.whl
Size 348.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
69622582dd18c27d2fa44b014bccd7c3bf7ef3ae56532d44ee1fd01b0f89f156
BLAKE2b-256 checksum
How to use checksums
2f0ef2415c4493c0092f9b1a877eb86dcf626981a1f7eaea4128e7211c4684b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-win32.whl

Download URL python_rapidjson-1.25-cp313-cp313-win32.whl
Size 317.6 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
38b14748dfdd8b7330760a5f6905f2b7e318eca8fe35841d9676be2bf1f00809
BLAKE2b-256 checksum
How to use checksums
2e006e1f234f6b76a2f15b99b8ba706edb37b92134222c477d6ebe39bf05e048
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
340d36a400a62f8e18af3a2cbf8ae055b6cc55f53909f80adce9d4b19d66a106
BLAKE2b-256 checksum
How to use checksums
f23b51c46a8a89d93dc39b49d83e08964290a434fe69000252b7c3992a848d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp313-cp313-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.13 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5d0f1d277a5f6c04009bbbaf3c0adc3d53eb72035a3d56fec8f0cfb6d9ac68ce
BLAKE2b-256 checksum
How to use checksums
4bc7b6adefe18d7b4c068b9ddbb5c3b7e471309b4ddc404e6368da9e89cbfc3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b9a6f453e95f48f6b91aa35e1d3989b5c8919a551c56676f81747e675e7874e0
BLAKE2b-256 checksum
How to use checksums
1c22b0006945aa605324f941e443e6042e9f2f378bb17ca221bcce9fc7cacfae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8b8f76797188e6e60bf291f11cfb354fef1f45737eee0c4b90846ce9ba4acab2
BLAKE2b-256 checksum
How to use checksums
ad9cdefd4e07e296f0b8befd9c7a40cb96fb9759062bc1c99e8868440e7ba07b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3bff112f299b96b4d18987458561b5822fe3df2a2dabf00791acf7f20a8349ab
BLAKE2b-256 checksum
How to use checksums
90195da1541cb518cae66143c6ab66704de10f3295ea9a05ae234b8eba518f38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bfbb017863c4fa064d445d0adcad32d918810a9a3e295871393e4b72745c2898
BLAKE2b-256 checksum
How to use checksums
7d557178b458253b98300408345e58f67b1878d16d152ecae91ccee824151b0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp313-cp313-macosx_11_0_arm64.whl
Size 214.2 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
02950c997db93803dad2dbfc11d0ca095e8dec3797c21e703c208344a876c962
BLAKE2b-256 checksum
How to use checksums
59673ea2a88c6dc943a9069c1a6d9c1ee92260c651224bfaa69b56c3ef2ea630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp313-cp313-macosx_10_13_x86_64.whl

Download URL python_rapidjson-1.25-cp313-cp313-macosx_10_13_x86_64.whl
Size 216.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2890118fc955986b9f954a9f51dbc5a8eb4de62a6205f7923f3f5fb16401c2a0
BLAKE2b-256 checksum
How to use checksums
fa50d33acc91c937e80b6f21659706f74007cd00fed043fbf4b0b4effd6d106d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-win_amd64.whl

Download URL python_rapidjson-1.25-cp312-cp312-win_amd64.whl
Size 348.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ca7f24b8547937015c38f77b193122fdc663c91645de04b21d4558af84d79e68
BLAKE2b-256 checksum
How to use checksums
d4a7bb69366197791c33c5f191abece57a30fdcbd6bddae88cf9668277c0c924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-win32.whl

Download URL python_rapidjson-1.25-cp312-cp312-win32.whl
Size 317.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
93093ee50e3d6e1d64554fee1e845ff1c3320939b3287e90bbbd0f0d48bd33c9
BLAKE2b-256 checksum
How to use checksums
eeda6e45b9681d158e106a56cd81c38f29ff0c3da26f3da6b90dbb99a5d87220
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a0541b7feaed936af513e1a9af3b460a5f313223e06e3024092f8b9e57a9a0fd
BLAKE2b-256 checksum
How to use checksums
52ff87b689948f0c4408743f940ab8ebbd6cec7e406475f4c98a624f0a9e2c1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp312-cp312-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.12 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c76cd9785a42a5ef0cd9a82dd1e7e8b977eed4911265e02bc3d8dd041492e7f8
BLAKE2b-256 checksum
How to use checksums
ec781d7cb904b4b6e975da10c4c06cdacb55ae2fb984b27328c91d4b888903f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cec5827637ede2f89665a131f3fc8c59f611111d76a6eabd1c5b37cadb273e3d
BLAKE2b-256 checksum
How to use checksums
5ebfed3a057d03c03bc8cf3f1439797645c67525211f59efc64783a6ceb2daa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d425190a9cc78f46f897d0efceddc094048ea08d584340a5830f48e186607f9c
BLAKE2b-256 checksum
How to use checksums
89db259cafa8461482d017c65ddb0a299b39a9c4038d83f18b293e89d101ffc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b4bcee9d39569839b8696bcfdcf957878fd5d3f5b44690c23d3e49783e0bf77f
BLAKE2b-256 checksum
How to use checksums
aa1f6b0f894e1d06a27c5efd9d5b714420a6bd0e0546f88a7733ef6c978db65b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
77eca0b7c2a44528bb65e44ff060b84aee47d5548e39e84b92fbf1b4bb70af33
BLAKE2b-256 checksum
How to use checksums
b443f8a241248b2d12c9907a740dc920b9ccfae29676f5c5b5e5e175975e90e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp312-cp312-macosx_11_0_arm64.whl
Size 214.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8960488e52a93a3bd4ca86f2287d4a2fbf0f6b9902e51dcec771e578c1f5e92e
BLAKE2b-256 checksum
How to use checksums
a32191b48b55e28fab378ee7aa45372af89a057168f1253cf14019754dedfb92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp312-cp312-macosx_10_13_x86_64.whl

Download URL python_rapidjson-1.25-cp312-cp312-macosx_10_13_x86_64.whl
Size 216.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5c3226464c6aacaa46832a19f02ae17d2fd4a44a5ea2fc38b813303ec0c0ad07
BLAKE2b-256 checksum
How to use checksums
9e9619e312abd3224ca0718cd3ced5fe66dcbce91f70dfb0c44c957a898ea469
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-win_amd64.whl

Download URL python_rapidjson-1.25-cp311-cp311-win_amd64.whl
Size 346.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cd41d5ea2cc8c9278e92e3f7df6250db5b98a3f7b4a143a6b8fb18335813b12e
BLAKE2b-256 checksum
How to use checksums
6e954fa2d5c689056abdaba695cf42514e4e03c096a931bfcaacc0bbe5db6dc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-win32.whl

Download URL python_rapidjson-1.25-cp311-cp311-win32.whl
Size 317.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
cded8545896fbd04978d338b10b5c4433ee4ee525bb99df170b04a355056d6d8
BLAKE2b-256 checksum
How to use checksums
e9c4952d31dc63e5b04cb1678380a234c19a23a8a19b845e19cbeeb0df18b769
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d558ba19e7927e418cbc13b093d885653a1a031e39972f774da4e6d694fc1315
BLAKE2b-256 checksum
How to use checksums
05de23d8a3ef0597f6509d5678c421ae5f8f18bb514aeeeaa203d578c242db68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp311-cp311-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.11 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3c7b4f36417614e4b5d797c7e320121aa0d12c17442293698871793694dd4568
BLAKE2b-256 checksum
How to use checksums
80467b78412071a16b3e81453fdb72ebb30133fff23fbb1adaff69c455b22eb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0be8c4da1aec5f230ff036947611b8f6f42441189c4a5651107a8a0d670166c7
BLAKE2b-256 checksum
How to use checksums
bd2dace90515a7fc0b1739538610e6c8ca0546a3b7b3668a210e3df8ea468e41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d2975f036913143206ab034c90b888cf16a1b40440011b2e8ebedfb95e07d089
BLAKE2b-256 checksum
How to use checksums
1cd09eb9433a7fb384053217a1ba8e39fa0e429c4cfe52982f66490f97777966
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
af79904cce10811c998bfbe0375e1423bef9dd5af29d9cef521bd5fef00f452f
BLAKE2b-256 checksum
How to use checksums
a638875f649ddd0efd147296f24b03af6cfba82e6e33a45182c879ec9fa7cf04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
997f193fa8550ab8be4bc124f4320545e6103506c9a13680fdafcdea6264c20d
BLAKE2b-256 checksum
How to use checksums
eb1e97bdacc7375039ea3fcf90f5618da54c89f6b2f271eeace27dacd4a012b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp311-cp311-macosx_11_0_arm64.whl
Size 213.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
65c9954e8723fb7cb87e7b0c68831971f7d862e529089d9d67167e45c16f8ad2
BLAKE2b-256 checksum
How to use checksums
55a4de2fd5d5e16d7e0acc726eb874b7a6143860bb06f24731cb49a51af847ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp311-cp311-macosx_10_9_x86_64.whl

Download URL python_rapidjson-1.25-cp311-cp311-macosx_10_9_x86_64.whl
Size 215.9 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ed4b54375012839d3e94025d3207c1d3de79121437fe2aaa2e61f1a3035a2674
BLAKE2b-256 checksum
How to use checksums
6294db7af5143944be784ebedc0455c115d328ff35554648fa74f4a0f1ce9c99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-win_amd64.whl

Download URL python_rapidjson-1.25-cp310-cp310-win_amd64.whl
Size 346.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e8994f0af4598204bc60719153bfc60042f4f33089501a86cb17d2a1bdc54d92
BLAKE2b-256 checksum
How to use checksums
679abeb2f5fe0e8ad18d79b773abca2a4e6ee817a419d2ec9c7d98118d9a5aad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-win32.whl

Download URL python_rapidjson-1.25-cp310-cp310-win32.whl
Size 317.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
8b7df5a170df4d86d820413ec222d54ccc8a85ebe5f6285f2015057ee0e278a9
BLAKE2b-256 checksum
How to use checksums
2e55cc6417ceb931cc2c8e3fdc755b086a0b609904b2f15c9a6912c994b3442d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL python_rapidjson-1.25-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1f4edd99529c2cc069626c8d79a756db6ebe6edd904c130867d3ee8f1de3b7ca
BLAKE2b-256 checksum
How to use checksums
100ac689766aee4e12db6a92f6863dea0bdf989c690a12498198f0288df32d81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-musllinux_1_2_ppc64le.whl

Download URL python_rapidjson-1.25-cp310-cp310-musllinux_1_2_ppc64le.whl
Size 2.7 MB
Tags CPython 3.10 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f3808ea4678d196fc8a7ce7521a774aa646077830036afc04d29688d03996cc2
BLAKE2b-256 checksum
How to use checksums
7936d82e513997ae2d2ed0d554277adecf6b148d3c57a7f517d23659f0d54f41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL python_rapidjson-1.25-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f45fbcd6ab79e346fc1bd20de0a84db3ba1f6c7a3a78bcc163e8dbdca2eb72b9
BLAKE2b-256 checksum
How to use checksums
350c0ae9258d331b86b42051403ce7954735c09b5467373efb1d785dda7137cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL python_rapidjson-1.25-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7fc6dffb934d2c0b44063b3e7fcce2e23fcdb657629200c1d3fd9d907d17d75f
BLAKE2b-256 checksum
How to use checksums
4e2e21f9d9926f7100555402a6fbc2631e813181d48e75fd26af9b9ee62bd4cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL python_rapidjson-1.25-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
97ce5348f639a5bcec3c4f1a32742eb6fcc93460edc9a67dc028d8edab942ab6
BLAKE2b-256 checksum
How to use checksums
a3f6e41762c744080cce93d05702904ba39bec251e8e2b24e28158090ec3908a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL python_rapidjson-1.25-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 1.7 MB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0dac7659865894037f498bc41484b8764992b7090b2cf4cf5a51ec84e4b546a7
BLAKE2b-256 checksum
How to use checksums
acf6e5e1ec92578a9b1c4b3a8471c7825caf440e2a401897a5f421086421d5aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-macosx_11_0_arm64.whl

Download URL python_rapidjson-1.25-cp310-cp310-macosx_11_0_arm64.whl
Size 213.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
43c275576dfd46d508c9ac2f90220cb7b4d0ff1cfd96114bcf3a74ceccdb6dd2
BLAKE2b-256 checksum
How to use checksums
28f0ca2c2451d426332da36b4aac85d7445d3178650f8093f49180473d0a432c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / python_rapidjson-1.25-cp310-cp310-macosx_10_9_x86_64.whl

Download URL python_rapidjson-1.25-cp310-cp310-macosx_10_9_x86_64.whl
Size 215.9 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c72769afc7d56466b81440b7180e7c0ae8f8eec1f2f5800d408364d436f4cdb5
BLAKE2b-256 checksum
How to use checksums
1d71a759400f7e4a9ab3c2755b732183142383aba4f20729f90ab1db29c4466b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

1.25 This release

81 release files

1.24

81 release files

1.23

71 release files

1.22

71 release files

1.21

51 release files

1.20

73 release files

1.19

73 release files

1.18

73 release files

1.17

73 release files

1.16

61 release files

1.15

49 release files

1.14

61 release files

1.13

56 release files

1.12

56 release files

1.11

56 release files

1.10

56 release files

1.9

46 release files

1.8

37 release files

1.7

37 release files

1.6

37 release files

1.5

31 release files

1.4

33 release files

1.3

1 release file

1.2

1 release file

1.1

1 release file

1.0

29 release files

0.9.4

29 release files

0.9.3

29 release files

0.9.2

29 release files

0.9.1

29 release files

0.9.0

21 release files

0.7.1

21 release files

0.7.0

21 release files

0.6.3

21 release files

0.5.2

16 release files

0.5.1

13 release files

0.5.0

11 release files

0.4.3

16 release files

0.3.2

16 release files

0.3.1

13 release files

0.3.0

11 release files

0.2.6

1 release file

0.2.5

13 release files

0.2.4

13 release files

0.2.3

13 release files

0.2.2

12 release files

0.2.1

11 release files

0.2.0

11 release files

0.1.0

13 release files

0.0.11

1 release file

0.0.10

1 release file

0.0.9

1 release file

0.0.8

1 release file

0.0.6

1 release file

0.0.5

1 release 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