Skip to main content

JSON encoder and decoder for Python

Project description

MrJSON

MrJSON is a JSON encoder and decoder written in C/C++ with bindings for Python 2.5+ and 3. I needed faster performance for long strings and floats and MrJSON benchmarks at 2-3 times faster than the fastest python parsers for my use cases.

To install it just run Pip as usual:

    $ pip install mrjson

Usage

May be used as a replacement for json

    >>> import mrjson as json
    >>> json.dumps([{"key": "value"}, 81, True])
    '[{"key":"value"},81,true]'
    >>> json.loads("""[{"key": "value"}, 81, true]""")
    [{'key': 'value'}, 81, True]

Encoder differences

ensure_ascii defaults to true in the base json module, but defaults to false here for space and performance reasons.

indent, separators, and sortKeys are not supported as pretty printing doesn't need the performance. Write an issue if you have a use case.

allow_nan is unsupported as NaN and infinity are supported by default.

Custom objects are supported if they implement an json() method returning a valid json string.

Benchmarks

Benchmark your own files as results can vary significantly:

$ python -m timeit -s "import mrjson as json;st = open('canada.json').read();" "json.loads(st)"
100 loops, best of 3: 8.05 msec per loop

$ python -m timeit -s "import json;st = open('canada.json').read();" "json.loads(st)"
10 loops, best of 3: 32.7 msec per loop

Or run bench.py to test MrJSON against some other modules. MrJSON does particularly well decoding long strings and floating point numbers thanks to intel's AVX2 instructions and Milo Yip at Tencent for publishing C++ code implementing Florian Loitsch's float to string algorithms.

Loads

Only 128 byte long strings.

Mostly floating point numbers - canada.json from The Native JSON Benchmark, the fastest C++ JSON parser comes in at 7.9 milliseconds on this machine for comparison

A single tweet from twitter - twit.json

citm_catalog.json from The Native JSON Benchmark

Dumps

Only 128 byte long strings.

Mostly floating point numbers - canada.json from The Native JSON Benchmark

A single tweet from twitter - twit.json

citm_catalog.json from The Native JSON Benchmark

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mrjson-1.4.tar.gz (22.0 kB view details)

Uploaded Source

Built Distributions

mrjson-1.4-pp310-pypy310_pp73-win_amd64.whl (18.2 kB view details)

Uploaded PyPy Windows x86-64

mrjson-1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mrjson-1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (19.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mrjson-1.4-pp39-pypy39_pp73-win_amd64.whl (18.2 kB view details)

Uploaded PyPy Windows x86-64

mrjson-1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mrjson-1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (19.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mrjson-1.4-pp38-pypy38_pp73-win_amd64.whl (18.2 kB view details)

Uploaded PyPy Windows x86-64

mrjson-1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mrjson-1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (19.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mrjson-1.4-pp37-pypy37_pp73-win_amd64.whl (18.2 kB view details)

Uploaded PyPy Windows x86-64

mrjson-1.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mrjson-1.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (19.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

mrjson-1.4-cp312-cp312-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

mrjson-1.4-cp312-cp312-win32.whl (18.0 kB view details)

Uploaded CPython 3.12 Windows x86

mrjson-1.4-cp312-cp312-musllinux_1_1_x86_64.whl (86.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

mrjson-1.4-cp312-cp312-musllinux_1_1_i686.whl (86.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

mrjson-1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (79.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (81.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp312-cp312-macosx_10_9_x86_64.whl (20.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

mrjson-1.4-cp311-cp311-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

mrjson-1.4-cp311-cp311-win32.whl (17.9 kB view details)

Uploaded CPython 3.11 Windows x86

mrjson-1.4-cp311-cp311-musllinux_1_1_x86_64.whl (85.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

mrjson-1.4-cp311-cp311-musllinux_1_1_i686.whl (86.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

mrjson-1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (78.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (80.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp311-cp311-macosx_10_9_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mrjson-1.4-cp310-cp310-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mrjson-1.4-cp310-cp310-win32.whl (17.9 kB view details)

Uploaded CPython 3.10 Windows x86

mrjson-1.4-cp310-cp310-musllinux_1_1_x86_64.whl (82.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

mrjson-1.4-cp310-cp310-musllinux_1_1_i686.whl (83.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

mrjson-1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (79.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp310-cp310-macosx_10_9_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mrjson-1.4-cp39-cp39-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

mrjson-1.4-cp39-cp39-win32.whl (17.9 kB view details)

Uploaded CPython 3.9 Windows x86

mrjson-1.4-cp39-cp39-musllinux_1_1_x86_64.whl (81.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

mrjson-1.4-cp39-cp39-musllinux_1_1_i686.whl (82.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

mrjson-1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (78.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp39-cp39-macosx_10_9_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mrjson-1.4-cp38-cp38-win_amd64.whl (18.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

mrjson-1.4-cp38-cp38-win32.whl (18.1 kB view details)

Uploaded CPython 3.8 Windows x86

mrjson-1.4-cp38-cp38-musllinux_1_1_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

mrjson-1.4-cp38-cp38-musllinux_1_1_i686.whl (82.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

mrjson-1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (78.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (79.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp38-cp38-macosx_10_9_x86_64.whl (20.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mrjson-1.4-cp37-cp37m-win_amd64.whl (18.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

mrjson-1.4-cp37-cp37m-win32.whl (18.0 kB view details)

Uploaded CPython 3.7m Windows x86

mrjson-1.4-cp37-cp37m-musllinux_1_1_x86_64.whl (80.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

mrjson-1.4-cp37-cp37m-musllinux_1_1_i686.whl (81.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

mrjson-1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (79.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp37-cp37m-macosx_10_9_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mrjson-1.4-cp36-cp36m-win_amd64.whl (18.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

mrjson-1.4-cp36-cp36m-win32.whl (18.5 kB view details)

Uploaded CPython 3.6m Windows x86

mrjson-1.4-cp36-cp36m-musllinux_1_1_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

mrjson-1.4-cp36-cp36m-musllinux_1_1_i686.whl (82.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

mrjson-1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

mrjson-1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (78.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

mrjson-1.4-cp36-cp36m-macosx_10_9_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file mrjson-1.4.tar.gz.

File metadata

  • Download URL: mrjson-1.4.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4.tar.gz
Algorithm Hash digest
SHA256 684c089ca887747c1c9695292148d8086e70f71d63b460395dbe8272a46ea37f
MD5 e7ef5b7e2310d6efd9b43bf83c2dbf4a
BLAKE2b-256 5fef6815e16ced1fd3bec13992bca0f0bc5cdedf19ff2b9563223b78234cdaad

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5b1448a2eb2bcc1bf61ee2eee3b4dc7f776f07bfda9adf8495207c697e9acc01
MD5 cbfddf8f0937e3c0a32925cdae701398
BLAKE2b-256 73c968801fef6b7e443f446df079555603f12d016417b1c1fc0aef2b03fd13c3

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5268e05069d10145ae8aa2b3a74e6ff1fd0a290da2432df3b0e0845a3eea4ae3
MD5 3525e37283e652ad3f684fa736672829
BLAKE2b-256 c4cdc043b1f7a25a14bdfb78396da782827101b04ce447f88fb16622849eedf5

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68a680b336a658e0caa2648eafba6b6cbc56a28c20b5a45a8d4854dcaec8dfae
MD5 eb765b07386253ec0386849a013fe232
BLAKE2b-256 d46f3700b83789b64a399795d414d2a33e8d2aec5b2e9e3107ca30b944f57457

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8e3ec07995d74e66e4eb1e7ff434180c6c097a3356762a5c7af47b527c9e7b7
MD5 ad59d9e8c4e5b949c3d50cedb265ab2d
BLAKE2b-256 10c8a3db6f95059e17965905187fd8dfe9924c0f531429443cfa6c37bb95ef4e

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2fdd08a21bfbad0361840bc06fdf387459d02640b89ebd156e6731970eef7ef4
MD5 3857e14247d08438262c5b1aa036187e
BLAKE2b-256 d468b0ca16e1d55fa022d7b482ea9e05f444c4520a64c66298aa7381a7dca93b

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49fa2c1fe0f743899ff97ce376ebcdafaa505afdb9bb7738ebb6b98e54993033
MD5 b4eeb9180dfd14f93f61c4dce2c263a3
BLAKE2b-256 e7f78993a3757dfc4073569581560a2c003576b5882b640875e56b3efefece4a

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bf2fa6b8a75b8bebff9afb04bb4622ef17fd3d87e2ef1236d0a90c4f15299ef
MD5 0c1287129cef62a24075ef85b74e27c1
BLAKE2b-256 c843bf5ba0c7c54d10f6fa457977715c25bdf12189797fb9a27773815cb97672

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3cf5d84f9f380024e05ccfa0c79000891df9b6ac6edb14aecb27ae4dff8ee35
MD5 4edfdc10de3135cbee3655f6c3c5a8d9
BLAKE2b-256 8d355945d473a51855d54a4bf237ed165f6bad1e064a9a94b21318a66a470247

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e1694af5551636322edea3325228b25ed3db6f34c231f88656407af97f095553
MD5 7022e33da9fc426e73ba48d1348d74a6
BLAKE2b-256 e747c37c2eef306704f4077a316e9ca5876cd3c09b02ae16a759c015cf179cd7

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7885251e13eaef75cc64bad5fdefa207859bc83e9e33822bc0ef85856508f046
MD5 e283b0baefcf81a191751f9d1d4260bb
BLAKE2b-256 5300e22e81e68fa3d918052385e4cc869ae0021202ff910caf2327f4cf36c3be

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07d071625c30015603f9977daa17136f03712140e2b0477f15de0e0e693443e5
MD5 b8197b4cb0785e5fb988c6e9a5624765
BLAKE2b-256 844e0d2cc488d4c9fea1db391e8c2855cbe7d71af0f3c89391ec64f04d85e5c0

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4e23d84ce823e4584306a52207f556e9a965f87a00ec311005a67770ba6c838
MD5 ef44f8984d4b8290847ae69404b6ab2a
BLAKE2b-256 768f42a0a292cf7d8f78ee2cdf7216acce32a3d464befad38fc8b39dc64d5224

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a3c0f40393215e3d8127ec2c4c166a657768152c0421140e1a2781243f7ee9a2
MD5 12990219e26899a2ffb2cb9fb3d7ef6b
BLAKE2b-256 4fbf8417b39e02d054a42a2d66572967c18dd7b5d727a80634458e43770ea305

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ce98b06411e128b4b789985785155628671ccf5e7791385bf37943a29cba97c
MD5 6e7133b80abd05001dba28860bf8f2ba
BLAKE2b-256 2d2c306736bf481a5ec38fde404d1c6e133b85598ac6c2e9a9ec898c953c3d0b

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c007626f2f8c2fa7753458fbc8720fd92e3a56ee4750a83292b77199eed9417
MD5 47b1b74279aceada5823196ef1d1ed75
BLAKE2b-256 c20aea414b8166e09fd1793d1062ed5abf20649db415e5ce73eb21927a447a68

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50f76701e2c14c9a2a73d82941195cd79817a6efd3a6e853bb4c2e5ea4227e69
MD5 6da32292c55204c52745cb18048de574
BLAKE2b-256 2dc3e383f5d15754b1931765818e883bc973701e5eb61e57d1c1ec534eecb33c

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19e11b2d62ddfe98bc6fe20250aa05071331716b03daf5954f557816479a1072
MD5 5ea292cce21a28f36c77663fd6c49971
BLAKE2b-256 ebc1fe7ba21578bb18ed17d8e274e025df65f50b5c2558b6ed646917ddd18cba

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7fb49e6bc6fc8a06544e1c78f1e5782941865f7b90fcb13b1839d28f1ee38dc8
MD5 369dc2472570a0809075b4eeb2b20356
BLAKE2b-256 d08c10679ecd1a677f78ca3c06b0e06606e162a64fb23e2564434c5554fc9bf1

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2b45817051e8cf5b24007eef01b7775d3de5963d3304c0bee00e9bd4b26a5182
MD5 a7e2ad12a339362b7459542286cfc2a6
BLAKE2b-256 52e7a87ff2a5f48d283e9342d9b5aa3d3b80a21cbd72c43be044e575f09ad5b7

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a86c20fd0061d54496a72c80b4097d7bba79fd617eb26b2d65cb05be2ee22858
MD5 dbdcf966e8187c6bdf2695c0e4a5c7c7
BLAKE2b-256 c9f04d2ff430ebb60151f425799f6ce8e67bdbe6c4281fb171bf57ec3658e32a

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b71eade44ac3d53e16870c2947f04961bde2eccdeacfc4b5d6f023cfb3f45ed7
MD5 62941eb548fd5f7682d9591a527fc6a0
BLAKE2b-256 40e76928ef80d92d705ca1315b5caf0af9ce969b9e12eb13e188194634976367

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed2cd79ed6a0dc509af7c3d95f9a9038c3d6cdf865162b3c424e89d9cec953b5
MD5 072297c66c4d5c99c99b490d196e154e
BLAKE2b-256 6567b4baa96b2cda8813f8d1154a5e96d7ddfe846ab2a60de4408c8fbd2fee10

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d8d2c602a4846cb1858ddd8509fea1be16892dc66143f78a4db90c6b41e4888
MD5 ecd9912ba6391e2e9c801301be10f185
BLAKE2b-256 7ba554968b96ee893f3cdf7ede5c1b65d171c31c27d09d768ea0976a38215221

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4692e956e4fe6c9891f1b8d3039bdfb11cac8f326a4fd5ec1caf31ea2ce874fa
MD5 ff0be009a026683fc367653b65dfa52f
BLAKE2b-256 7e904a819d728cb0246cbba40112f27c2918e180656131238006498debf90b0e

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2e2836103fd6a9972dcef02395a1bdc1d8beacdcf45075be0603c729759b20d3
MD5 e98cea5ef7baba723440d2a755860397
BLAKE2b-256 472eaa313f110a010422111fb1de02877c8e4736ac191f37464beabe925733a9

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f4353ea90cb60062995cc8fdb41add0a81eecd47994b86a94d44ce8079636f1
MD5 c3eee9c6890f3eb92c54c04ff9772d80
BLAKE2b-256 af15dd3c4806f5c891af48f3bb8ba3368647af2012ff8659c320aa11f8fe8005

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ecdd127539b69c63107f6ca3865dc9f72e1ebf55c8b881e30d885bec66f43d82
MD5 401b98404a623e487bcd2c1b1ec8f593
BLAKE2b-256 a85a6575b9f62e003010ff96d36f8ca3fac280ab748bcea229195cc79be9f0b7

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e10aaceab4e7d7fedbbcadffacfb91cbd1b6659f1380476b855f48c8bc11990
MD5 74b30ff0cd71dae7bbcc0b57b7da182c
BLAKE2b-256 852155701a58e2be428a82b1d0f16ef13d0d78a09f821484d4ddf408a3c227d4

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9e633b373bf1dad88aeb6f63fc413da548e15ddcc62c2a7542defcbf3916e24
MD5 2cfe45e8cd92452d00b67ecbb4ecd825
BLAKE2b-256 f0f4f3ab0542b8b1815d32d42a6a08e55e11e018ecb0590bc7e4288ee9f3fb1c

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9763434554896f34ff8e75b42d5d4f3a9dba3330040b6c54b1de04e2e289bf6
MD5 dc3b50de642772a5e47552be850cd5be
BLAKE2b-256 ee0e05ed65f52c33a11869c523220553f3a6bbb6ee679ecab8a162f483e2221d

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8ac14ad9cd1f9a2f5fc95ed9a035c5c73a8537c8b7bdece0ffee192c58005a7
MD5 dd73993db8642b09b6d1cbad370946aa
BLAKE2b-256 3131c4bd79b895921a9109fac9141fdb4cd7f2a0f43fd59129386c5b030d0d84

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 be64cdcb335f60359f9f109cd5f9130fe1714649556c7f8a0d009217d397b6a3
MD5 dba48620f6ad81987e16d451fe7d6cc2
BLAKE2b-256 1fe156a414523aa096ed061496ba753a59bfc540fd36ff50b1ef4bde1f40081c

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 373dcefafa1c127b606784cb9ce711a783b1b3492a692b8307bc445e6ef32e4a
MD5 882520632367765390e00299acb2acd5
BLAKE2b-256 aad8f810179645c67e38d37c9ca164e9eed13927eb9b0e032d44c7398bf8ec92

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 96c75abfa329659a6df3b188d2eb284020f51518e8c7f363477f7e2d9e7521ae
MD5 fa0da43544b71eb94e5ba6eaa8941823
BLAKE2b-256 e2edbdd9aaf1a850b19e806915d78c64a8c3ea80c9cbdb21162aa2948456bb63

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbb608151bad433fee20e1c833ca4118071663951f45e936cdbf16ade821dee5
MD5 e7f885662b7944bc672fc91f16c93af7
BLAKE2b-256 bcbc2926e03b7bbd104e523f69b8edcd0ccc9d95ff6a76b25ffcacae37b50665

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91f9332cf6ec70ba0d97eb9581ac552e7e5555b6f814b7564943904095fbdf70
MD5 fc1715a3c6fb35876d94327b75a8184f
BLAKE2b-256 5573fc9ca31b58d1998bba71f95d0ad8524905d5a5d205d5d887b72e420e3d29

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebd379e3981d8e9dddc08b285cdd5728b02c6691325a5fbb2754572c14ab45f4
MD5 7d5fefaccc7815ab75292b5f19dd72ca
BLAKE2b-256 c3ef3bd126a079f281cf906d6930b53de053e79eb96a795197049bc09f52b933

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3bc9ad5e9266929ffdbe1a8b338359d26e757cbd11a1f4fe9bbcce3e81dcf5d3
MD5 7eca9d9b1230296d87058ed99ba35976
BLAKE2b-256 08854e338e4803c24f7b7368880961cfc76638bdce197bdb897fe53ce8fe2c3b

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 90882bd2b606f30194a2600b5b5ffe2b2d1df8d9748db0d02d0378f6139803f3
MD5 d1d396df990029cdb647f56c8ca8bc3a
BLAKE2b-256 4d602c213860751ebfd01ef3fe5e5b5191073a30e002262c19448590bb92985e

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e3ee1db34b3bc8838dbc6907ed4798514f2c25c19c3786a6fe96ec43332c1e8
MD5 0995399266e64523e55b4859a34724a1
BLAKE2b-256 c775ba6d41a87663676dba58b4cee3a6047c9c633395911e63b775a969021a7a

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f6e6af99de11e5b481b4c4262106f469e79950b8d3e61575f908e9be0fc14326
MD5 ecc518be3eb266d12fc7737c11064777
BLAKE2b-256 e6f00de2690d4b87cccc87e428d04b62373d03b549eadbcd1fcf99d2e8b8f6a5

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3b72771ecf03a6bf279bceb91ecc8864e62a407cf7b0f5c143168a9d3ef1aec
MD5 aad9bd2163e7f1957f9744972ed34ec1
BLAKE2b-256 ef398b0b2cc2007a77523325b6bfc3f917eea850a0cfd899a026d01dec1439a4

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1e71894f82d07b7686c55c495d5d50aca0446458e89e471dac3bcc9546baa15
MD5 b85b03561f8f9ba684053a27a7020d40
BLAKE2b-256 9356d84b90bd386f4087cb5e2217b857bc29f22b6796e554c518744999fb56cd

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc23789e8cfb98d87338cd81306636b1753290036887ac9763837e1433385f10
MD5 c4073a5ea7a35dadab06d58503e78ee0
BLAKE2b-256 fb531415731cab7f48a57d04c1d6c966931dabd33aece65ea7a96c57e786c0bf

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d685f13cc5f283a2b96ff398904586e195709d5a789896f80f2a8f0cc585940a
MD5 19181d22478edaf9ab71f4ba74bd10a1
BLAKE2b-256 ed8bf298dda91f1750a0a83d1fa91370051fd4151e1c31819207fbcdafd03ec7

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c890357405a6f39d297df8d3fc26bdb7e3f99a5c69f244549d3250a87e84800f
MD5 0424e9342562772c1a613de266330f71
BLAKE2b-256 53a3bfe104d3307c2a188be19129f43de432f76ebf4241c91ac8012dfaa3c718

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fda1d422388703ae31f7e366125f6a54c289c90619cf3e4494ce8da0ddb85e1a
MD5 641d298791695162e892f675b0da47b8
BLAKE2b-256 5e492ca522971d13a28390f24626647b0476f115841b4838536efce02e5bc050

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad862c4ca82d062a86cee3c4dd1988de4e8a8d4f355d2db630de6e37dd1e78da
MD5 c2513e86a68a40311d18ae1cbdbc322e
BLAKE2b-256 e6023de31b242bb2139a47e54128955c262438124607df6b32d2dfe322e0105d

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a788d7d9c97177dd4397c0d3fae8ceac9d14a3a5c9514f78580d5fa4c71000b
MD5 fa0a41d9f7f63c21bd42114b8fcd7f5a
BLAKE2b-256 8e12a8467d83c01b23ed69ebdad27199e57a8d9e41a829d266cc4ef12d17110f

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41aa5e37f053ea72266843765bc9a7d5d69e5f4a4515a7cb5a46856550d3e1a6
MD5 03869c1c981f6deabc23a635935627b1
BLAKE2b-256 ab70ccc683f1f3c26faf0a2345082d352c83ac900ce298f2f18ce9f272d474bc

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f76566d22b9ec87d1899d4317442354496604082458dab05f35d53e73ba23d51
MD5 d9cee80dbd5818c3102fec08b7289c54
BLAKE2b-256 6d7f7582870eab37b486303ca66c6c0c198c5612c3e41ea244fd5c529fd3e2f7

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3beb7079299e55bbb3436b33b5cba65ecf1f476d5a8403d69d5a8cf28d210e64
MD5 e44ab4211ff074b72d00a1129f4488b3
BLAKE2b-256 afb8ec868bdadab99f551203512dfbbcee0e5cef19977e7d2a1f1de0c1239647

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 775e394123199ddc212e7a9676096e69908712220ec2139ca4a1e4ffa2a85ec0
MD5 be1a182db0ed81e0f535414476132b6a
BLAKE2b-256 d0c46e1c992fdc7d0a13a9176f86a39b62496143bad533f712d17e5704a0d87e

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 59cb87b1efdedf265441ba14e5e8a6c47c1e65a8098bdf83087a651ad83cc86f
MD5 e762c9e1809783ee2bdbe5f94fb135ff
BLAKE2b-256 ba799a5e4932582dfe37653c94ee3ea335d9fa31088aa6e67a112e40a4730ec2

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9eab5fd8474dc3d541905e2f63d4feead053ad2e325321e7a065f58ef23ce8af
MD5 bb5334e79f756de14f00ccf44a815ed6
BLAKE2b-256 60138dcd5e05dd0d12b4b42f5fa2c53ef6bcf5ecaf9a267617d68d6ee942f687

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bfd4f02041e4fea3b079f490eb272c2e6e267752aeaf447985afca798f64c1a
MD5 d6117702d31e8272d69f1906cbc9a223
BLAKE2b-256 83bcb34892e8f9549a3830915f6042b1f92ce1d54f6262f9a14ca8e01a29c4b0

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fed3b73c56105e5cffcf4b066152a76b25963c19117030a32c33f4f276cca7a
MD5 6eedd1c677b0d3bb71777bd78f50f3e8
BLAKE2b-256 507ba13b49265b93e8e78d9797c9b1d9d904beaab4f5a91ce3cdb095ea08388e

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6afb01895c7068f2a5208b655f74bf2f64578875e5bbdb7f599e9f8e2915d36
MD5 268d4e9e9096a63f5c0ddb99144a1b01
BLAKE2b-256 79f3fdaa76b7ace98cc5df9f139d61d40523b0801d66634f3b71639e021997cb

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mrjson-1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b4a737ecca004b0ff98d788d3749f0a66b665237487c8f08c651d5055b472d57
MD5 a316d05182a5fd39fd689929e0cb628f
BLAKE2b-256 e3e09458f2a2b0f9fb58f8614042ba179e17985d183aca57bdfc2218d6e5f1ab

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: mrjson-1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for mrjson-1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a8c152cbc87207cbb77a2ecfe6977135295e2e559fffa2de0eade1316099c574
MD5 2dea29a0b1944d9614f5cd8e049c6778
BLAKE2b-256 3252483ff6bd84a30be9f723365bdaebea36a6ab880029460ece0963822ebaa0

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c50baf4bd8cc566f13e3f94c424103388a7f0e4ee14967575202d1d1549b9610
MD5 7951e35ee332c03dddc749e48875770b
BLAKE2b-256 3d08838d8afa5edd575fb0205e60f0ef28c4749e63ad22172d7807fd5f372930

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c95d5802f828e761bf9a8793465b6aabea4ffa88907dfd033027f97090e59fc6
MD5 ec5427cb1ea844b87ca16feae3a47d4b
BLAKE2b-256 80db51e9fadc03c8fb7dd5b0442ab2ada5e054cbda0f538577a8b794e4f28abf

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a21389029f05a6297ecdadee209cd60aa242720caa9d027d979ad9bdfbbc835
MD5 02a435d411e77a561c655a72b552b21a
BLAKE2b-256 e584f588ce452fc741e5b35268734be37af26442a8c2da167fa48f3c328aa7d3

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d035ca308259b21feeb4e77f51342af13cf0f1e4b1e2419f65abbbe65602aad
MD5 f9d0be7fc4170add9c2af9abda8329e0
BLAKE2b-256 e872cebaf27b6fbf64d14e7782697e1a075b653f763eeb7b2c907a0bd3841526

See more details on using hashes here.

Provenance

File details

Details for the file mrjson-1.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mrjson-1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd2099bf9ce663c6d25da865c765eb742f084a6274effca6f89d0515f56afe0b
MD5 e9258762027e122734252fd8e93144e3
BLAKE2b-256 12ff6ae06276a420352e920cadaca6741e527d95aa316cc286ad0ed9de1e2d0e

See more details on using hashes here.

Provenance

Supported by

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