Skip to main content

MessagePack serializer

Project description

MessagePack for Python

Build Status Documentation Status

What's this

MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. This package provides CPython bindings for reading and writing MessagePack data.

Very important notes for existing users

PyPI package name

Package name on PyPI was changed from msgpack-python to msgpack from 0.5.

When upgrading from msgpack-0.4 or earlier, do pip uninstall msgpack-python before pip install -U msgpack.

Compatibility with the old format

You can use use_bin_type=False option to pack bytes object into raw type in the old msgpack spec, instead of bin type in new msgpack spec.

You can unpack old msgpack format using raw=True option. It unpacks str (raw) type in msgpack into Python bytes.

See note below for detail.

Major breaking changes in msgpack 1.0

  • Python 2

    • The extension module does not support Python 2 anymore. The pure Python implementation (msgpack.fallback) is used for Python 2.
  • Packer

    • use_bin_type=True by default. bytes are encoded in bin type in msgpack. If you are still using Python 2, you must use unicode for all string types. You can use use_bin_type=False to encode into old msgpack format.
    • encoding option is removed. UTF-8 is used always.
  • Unpacker

    • raw=False by default. It assumes str types are valid UTF-8 string and decode them to Python str (unicode) object.
    • encoding option is removed. You can use raw=True to support old format.
    • Default value of max_buffer_size is changed from 0 to 100 MiB.
    • Default value of strict_map_key is changed to True to avoid hashdos. You need to pass strict_map_key=False if you have data which contain map keys which type is not bytes or str.

Install

$ pip install msgpack

Pure Python implementation

The extension module in msgpack (msgpack._cmsgpack) does not support Python 2 and PyPy.

But msgpack provides a pure Python implementation (msgpack.fallback) for PyPy and Python 2.

Windows

When you can't use a binary distribution, you need to install Visual Studio or Windows SDK on Windows. Without extension, using pure Python implementation on CPython runs slowly.

How to use

NOTE: In examples below, I use raw=False and use_bin_type=True for users using msgpack < 1.0. These options are default from msgpack 1.0 so you can omit them.

One-shot pack & unpack

Use packb for packing and unpackb for unpacking. msgpack provides dumps and loads as an alias for compatibility with json and pickle.

pack and dump packs to a file-like object. unpack and load unpacks from a file-like object.

>>> import msgpack
>>> msgpack.packb([1, 2, 3], use_bin_type=True)
'\x93\x01\x02\x03'
>>> msgpack.unpackb(_, raw=False)
[1, 2, 3]

unpack unpacks msgpack's array to Python's list, but can also unpack to tuple:

>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False, raw=False)
(1, 2, 3)

You should always specify the use_list keyword argument for backward compatibility. See performance issues relating to use_list option_ below.

Read the docstring for other options.

Streaming unpacking

Unpacker is a "streaming unpacker". It unpacks multiple objects from one stream (or from bytes provided through its feed method).

import msgpack
from io import BytesIO

buf = BytesIO()
for i in range(100):
   buf.write(msgpack.packb(i, use_bin_type=True))

buf.seek(0)

unpacker = msgpack.Unpacker(buf, raw=False)
for unpacked in unpacker:
    print(unpacked)

Packing/unpacking of custom data type

It is also possible to pack/unpack custom data types. Here is an example for datetime.datetime.

import datetime
import msgpack

useful_dict = {
    "id": 1,
    "created": datetime.datetime.now(),
}

def decode_datetime(obj):
    if '__datetime__' in obj:
        obj = datetime.datetime.strptime(obj["as_str"], "%Y%m%dT%H:%M:%S.%f")
    return obj

def encode_datetime(obj):
    if isinstance(obj, datetime.datetime):
        return {'__datetime__': True, 'as_str': obj.strftime("%Y%m%dT%H:%M:%S.%f")}
    return obj


packed_dict = msgpack.packb(useful_dict, default=encode_datetime, use_bin_type=True)
this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime, raw=False)

Unpacker's object_hook callback receives a dict; the object_pairs_hook callback may instead be used to receive a list of key-value pairs.

Extended types

It is also possible to pack/unpack custom data types using the ext type.

>>> import msgpack
>>> import array
>>> def default(obj):
...     if isinstance(obj, array.array) and obj.typecode == 'd':
...         return msgpack.ExtType(42, obj.tostring())
...     raise TypeError("Unknown type: %r" % (obj,))
...
>>> def ext_hook(code, data):
...     if code == 42:
...         a = array.array('d')
...         a.fromstring(data)
...         return a
...     return ExtType(code, data)
...
>>> data = array.array('d', [1.2, 3.4])
>>> packed = msgpack.packb(data, default=default, use_bin_type=True)
>>> unpacked = msgpack.unpackb(packed, ext_hook=ext_hook, raw=False)
>>> data == unpacked
True

Advanced unpacking control

As an alternative to iteration, Unpacker objects provide unpack, skip, read_array_header and read_map_header methods. The former two read an entire message from the stream, respectively de-serialising and returning the result, or ignoring it. The latter two methods return the number of elements in the upcoming container, so that each element in an array, or key-value pair in a map, can be unpacked or skipped individually.

Notes

string and binary type

Early versions of msgpack didn't distinguish string and binary types. The type for representing both string and binary types was named raw.

You can pack into and unpack from this old spec using use_bin_type=False and raw=True options.

>>> import msgpack
>>> msgpack.unpackb(msgpack.packb([b'spam', 'eggs'], use_bin_type=False), raw=True)
[b'spam', b'eggs']
>>> msgpack.unpackb(msgpack.packb([b'spam', 'eggs'], use_bin_type=True), raw=False)
[b'spam', 'eggs']

ext type

To use the ext type, pass msgpack.ExtType object to packer.

>>> import msgpack
>>> packed = msgpack.packb(msgpack.ExtType(42, b'xyzzy'))
>>> msgpack.unpackb(packed)
ExtType(code=42, data='xyzzy')

You can use it with default and ext_hook. See below.

Security

To unpacking data received from unreliable source, msgpack provides two security options.

max_buffer_size (default: 100*1024*1024) limits the internal buffer size. It is used to limit the preallocated list size too.

strict_map_key (default: True) limits the type of map keys to bytes and str. While msgpack spec doesn't limit the types of the map keys, there is a risk of the hashdos. If you need to support other types for map keys, use strict_map_key=False.

Performance tips

CPython's GC starts when growing allocated object. This means unpacking may cause useless GC. You can use gc.disable() when unpacking large message.

List is the default sequence type of Python. But tuple is lighter than list. You can use use_list=False while unpacking when performance is important.

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

msgpack-1.0.6rc1.tar.gz (166.5 kB view details)

Uploaded Source

Built Distributions

msgpack-1.0.6rc1-cp312-cp312-win_amd64.whl (162.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

msgpack-1.0.6rc1-cp312-cp312-win32.whl (162.5 kB view details)

Uploaded CPython 3.12 Windows x86

msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_x86_64.whl (556.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_i686.whl (579.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_aarch64.whl (547.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (559.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (543.9 kB view details)

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

msgpack-1.0.6rc1-cp312-cp312-macosx_11_0_arm64.whl (232.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_universal2.whl (305.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

msgpack-1.0.6rc1-cp311-cp311-win_amd64.whl (162.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgpack-1.0.6rc1-cp311-cp311-win32.whl (162.5 kB view details)

Uploaded CPython 3.11 Windows x86

msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_i686.whl (583.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_aarch64.whl (554.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (545.6 kB view details)

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

msgpack-1.0.6rc1-cp311-cp311-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_x86_64.whl (235.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_universal2.whl (305.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

msgpack-1.0.6rc1-cp310-cp310-win_amd64.whl (162.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.0.6rc1-cp310-cp310-win32.whl (162.5 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_x86_64.whl (532.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_i686.whl (560.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_aarch64.whl (527.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (520.4 kB view details)

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

msgpack-1.0.6rc1-cp310-cp310-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_x86_64.whl (235.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_universal2.whl (304.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

msgpack-1.0.6rc1-cp39-cp39-win_amd64.whl (162.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.0.6rc1-cp39-cp39-win32.whl (162.5 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_i686.whl (560.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_aarch64.whl (526.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (521.5 kB view details)

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

msgpack-1.0.6rc1-cp39-cp39-macosx_11_0_arm64.whl (232.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_x86_64.whl (235.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_universal2.whl (305.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

msgpack-1.0.6rc1-cp38-cp38-win_amd64.whl (162.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.0.6rc1-cp38-cp38-win32.whl (162.5 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_x86_64.whl (542.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_i686.whl (571.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_aarch64.whl (536.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (524.4 kB view details)

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

msgpack-1.0.6rc1-cp38-cp38-macosx_11_0_arm64.whl (231.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_x86_64.whl (234.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_universal2.whl (303.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file msgpack-1.0.6rc1.tar.gz.

File metadata

  • Download URL: msgpack-1.0.6rc1.tar.gz
  • Upload date:
  • Size: 166.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1.tar.gz
Algorithm Hash digest
SHA256 326dad26be136eeeb1357a74fe81d78779e69b47ba0d751b953b637d752644e6
MD5 6e3d64705034f25383611a93f4986e0b
BLAKE2b-256 e3180be5a2544a167698ee35d245873273c0167727a1b70674c6dcfe31ad9ad2

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bac2e82df2a37885ad26835c899a5960a7af9b5c7bcf27326cb69140f9dcd89
MD5 0bc3cb47c3a41075904442a92c352fdf
BLAKE2b-256 230ab005f2b13bd1ce977ea8b8d3d7b1396236a8381ead8d5c142ba99e03b04a

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-win32.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22defb3b107111a95605672ad5048aabc8d02893bd84af05bb943572470a3d01
MD5 1bbb053608b0727a8f07d5a33af3cb61
BLAKE2b-256 ce16bcdc7fa52d9779a78350d9f36e4b6d93066337c989c38843556891ebe07f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa7a22ffea2262fc4d7c5b0e6db47d84dad8ee29ee38d8dfbc1d0b5c9bac6f4c
MD5 7bcbf0a0def0149566107548cecb20b9
BLAKE2b-256 a035553440424c2ad5c3d2834f693ce63c8f3f40e250d8eb2de389aaad7a6d88

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fc8f003b81a11ba8aed55828c409e9b540bc91d107f4cf46a370209929a6e7af
MD5 651e4572ec3e3c50f7058368c3216b4b
BLAKE2b-256 6a0c0726abb272397a0b44cb3defc2cb034861e83c22503757eb4bfb0c516a07

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dc2c922b6c83e5f172af8c0644f6d07cc5ff63d8924de3e4abe44a3632561d53
MD5 f7532805fa4254db0ab5f25bd9d19a3e
BLAKE2b-256 d71226222bc88df51e0d79237bff19d71a66060ccb6513387e272218694bca07

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93ead3cacf5416fa84bed51592b890f61138a90a61f25e153b603b2150719db7
MD5 314b223cbab873dc433c102ab91ffe88
BLAKE2b-256 32ca1c9b2a179693dd3cc9f376e3ea0367421b0a25f1fb7be9c339a1b2b2d937

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a8762ea7120193459e29af453767705850a24a81bfcf28ee1ecb2b8979d3033
MD5 a7031edd70fea24979f2a372147e2d7f
BLAKE2b-256 1c472d0ee3666b8d7d94d38d4c7e8ed0568a20f680999b3ec52283cacc25727c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37ac3d385bc02c5ee6cef743b8d56e01edbd5c3c9db624236c7b823dd25d2dcc
MD5 00a4b2b673f7ce1706e3403b59295647
BLAKE2b-256 acee1dedce4cda0a02f2501c0e53d08cf9f926af64a3620305316c02d0109923

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4246ad3606366c7924d894bd0fb8ba5441ce8b85ecfb5d685b35484fdde8316
MD5 a80362c65f475f663ece1f8312730742
BLAKE2b-256 e5063a4ed164ab66a63098795380bccaf5d07806cf472104194cc500c0598772

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0545722aa0a3062c39851febe72c38b2de01ea3de1d4a4f925a448ace97bd45a
MD5 901fc94cf8e0bbb9300ad2bc4a560c70
BLAKE2b-256 2e2ba667cabab6617ab33daf4bb62e70c1cb17c4300d5554530f4b94361b842f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b30cf8b4c0993f44be25e255d1b4bd70b31b5202c20234661b7cdcdafedfcded
MD5 dfcc18b8c591fa40f33ebdf9a5bd3967
BLAKE2b-256 95f0779f5701c578f4f4b48777b3bc03543f39c7ba150415a99e097677669ac8

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 554bff85a60f367800b0979aead1b7f52389d42a679c19b12ef3e427baf18f9f
MD5 feeb93f4427f0ce706c5c325655c5fd0
BLAKE2b-256 f1df847b2f27c8ea1aa2529d08561fb7a73579fa07dea460c2f9283ed2e986f7

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-win32.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0d6c5977cf8d2d2dee02dd7fb81b3641115d034db7f0525cec39178d88d08e9
MD5 a8de7d9a859d32213e799bb82599547f
BLAKE2b-256 7bd2d0b111ca0542d72cf510845574ab7826a2d46fd9e618c040175da4a96979

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ccd9daf48095bcb1e01b78cab1708c7dcaf26ce6ad331f2e78c36b06d5388cff
MD5 5c7670e1965f431d1983e8205467312a
BLAKE2b-256 b29c7975c8f7df5d11666068c93597ebbb3af224b7a6b6d1ffb5424990d613fe

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4c65104bff719647cfc8f9198675b96ac65d4f6270da6e14344b952f635693d2
MD5 88276cd44cb5b8e2057c50c06b1be0e7
BLAKE2b-256 fb6518e6372c501c419e063e7842f1555ff520353bad6d3d969bca2d7f9f9e91

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f3e573b7fd0cd08f0b5a0c2f36ef75ff38d5e012fd3ea8a97671febf10689c50
MD5 90e660224d4f6e959a796d8e3cbfd041
BLAKE2b-256 aeda53a9cb7c3cbc38dd19d3ea2649206c6bce65fc7a0e221d57830e1814edff

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7f1c88db779b662c1a21b075bdf3b5c9c73ac6df79ccbde69b0f7d0d5896726
MD5 bfccb344f02c8011ece465d55a12221c
BLAKE2b-256 78f8c532b354f3fce37c4c40629fc3fc5ed9f20a5d73a2659f7751032891300a

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7a13c3f65bf48f5ab98adee094151393533253186fbc5a2a55caab6381af4b3
MD5 2d0c6bddae53558097247811b201a91d
BLAKE2b-256 a9287e34d2b09872d02407edfb3a71a5988a5377295a8edbd282a8ed09795790

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69ead25283511f571ab098c34a0afbf538f0ba8cceb99bc29b3487fa93a0570c
MD5 450abd88e6c1e4cae35fa5303cf9360d
BLAKE2b-256 a6c8a06731c4b3d0fc9d4615327ec96e85450bb494949d9450a12ad765ed9a2d

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a552bd242ac50523ec465e1b53f536bc41414ee7a36bc57eca0f4d8cb56cc6b3
MD5 9496621588663a12961fdd271bec2d8d
BLAKE2b-256 41a3588ee8a1a1ba7ba006f1675b5e7718123179cfd82b3351e6c8b7886a3634

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f72905c5a45f6afdd986c95db46eca1a2a61f7751126413170a480d07ec8beb2
MD5 af9549e22721ef58b8fee36deba7d9fb
BLAKE2b-256 7d567b6c6c263dc5d3b085be2f3cdede65197ae4e330cb981cf48d6121c646df

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ecf3bb19b7d9757f9323e33a4f070085f0dc85031747df153415fc5f87da98b2
MD5 0411039ecb4de158bf82c7e892551e9d
BLAKE2b-256 9421c30db5528030a8bd180b359cc14fb25cb5da6e979897f7c4d9b79cd6107f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c72491d9be76b0e6d1341f3580ee407982f3b38c16346305ac3dc62dec6ef89
MD5 cc867df878b69bad30595559fd192aaa
BLAKE2b-256 c83c8398cce0591a4bea30c0779f97e8155abef75b16a5e1ddf27b4d430fdedc

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c0e6ee84f8f8115c3b756befee175a711c2a96f4e94ba49e830619f8f848483d
MD5 d9f9872a446ad5154406a7f405e14c56
BLAKE2b-256 46f861a5db28398025e7cd4dcafadc79422b558e5bd1ceb8c55bec39247230db

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d2ab739c4e15976ebc43686ce1d01e96378eca5bb2a51643aec9cced35a64b9
MD5 a268a8180df294d96b6197576dc70e5e
BLAKE2b-256 5a11e8ac45571501815c04dba3abe2abd124d2cf735c2d9950f5ad5c3eb867cb

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fbf2cae2b8a21f8ab474e236d44a0ebfeed38fc26e65d416af00fcad563760e1
MD5 a490386068bd68e35eae756000869c00
BLAKE2b-256 69e3cfa4a14c9cf90a053c3c57d3420dc9a6b5feeb1c5a9228e122cee2c5c965

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a2c40ea7d498460b21c9c43bf9cdc1f9191030f00f83c4d994c694cf22a66850
MD5 708bbc042928984d997b7ce0c4806639
BLAKE2b-256 2d437945a40bb8d973a58de611a9ca504dab45da1d5b9335a822ceaebf04630a

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98f7d22139634fa4d76254d7980bc5705724df1b78c33d7f503e77833dc0141f
MD5 302ecd03d16de781d4b924aec1bccf47
BLAKE2b-256 4ab0acd84d1cdb9563305265683b7f9cf5688ec50d920a0a206abcd68807e00b

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 362e03010b886a5e0d910b5d622cafe99d7d9fe214235889ad5963db124e1fc3
MD5 d691da8ee88ed9c226da7a066595ee71
BLAKE2b-256 7402003adeae84b5bd863030c53cc58a39ad9c5c2772bfd3a7043b7758a6dff1

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbfef670584d5db70c139811cc9259c66eaacb914a96423785a7ca24f881b8eb
MD5 555ef843b22aa5270040fc4c6b2d1e26
BLAKE2b-256 24d1a0814a56331c1ca289bf40462e49a9f4d980edada7a56c23032e0876d500

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22368887b8d962aed7fd0e4fa8a5fde3d8293a9d60e0c4552cebb5b696565dbb
MD5 0796dabca6688088a3bde6d6da046a91
BLAKE2b-256 7cc064b9c7d92c0c38c53bc8ebd424e1c6914dc757df8c18204abc95ccc91801

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4919106b8eddd7807de63ec26f7158fb8363c409dc628fb0bfc0ebaa76359413
MD5 0ad285db8f5f80ad326cc9c3780e8475
BLAKE2b-256 119af795f4412a404bfc42d42200e4550cbf0beaef53480bf70a485c5d913664

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9404921e9eb65966c776e33c3b24ca0c8812cfc1c66069d0105aa470a23ea3c8
MD5 ad932d0a7cdb312c49f82cc87cbc459d
BLAKE2b-256 c3f528cb0af5e85fde873f7bc342a4a830073013829ce4c5aad539e276df65f0

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 162.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 127a6ac82d2f35c2009fa424a82b5c5724b52cebae612defb24babf8d3679a42
MD5 58798d36121a2effc1cd7721a1191729
BLAKE2b-256 3c8664483fe004e8e8de8ebe9c7e7174fadfaca7fd14d451e65b47761d24b955

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1314b8139c9d55f03312a9c4d4d6b07af061695ec987db12b0a0fd718a3faf06
MD5 a523e9d200acdc254903995e0adfa8f2
BLAKE2b-256 7e00f96eae8a6008e2ac83960c30908cb319508c04788fd38719e8286b2d0f1c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13b90eae8aae69659433825ce34cd1f25fa825531c4b4832d423b7e283901ffd
MD5 4fce21a99de6c384160f19f3e7198978
BLAKE2b-256 03ee9be6d4311141471bb5e9925dac7bd29b7b76a7e69b9920e195b4c47c80c1

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5721ae3a4cb5186bb4871ea59f8aaee2f69f541ba5ad1fcbf4a636c759171f43
MD5 683da2b7d91c01fbb6743ba3bab8d5ce
BLAKE2b-256 1bf29b446b89b9d1987b90628aecab3af5e4140cb85962f04c6bbcc72e743b61

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2899f42ce36c236824218ebc68c8d25bacb9725889bf643124286d50877aac7
MD5 84c6364c725fda19af5b8dc8b30ccc99
BLAKE2b-256 36f6aaf13d68c9387d4b499fcf5d72d81040838501d4a9ba5c47a2b97eccb607

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 296a93afed92b19f0ed6404be6a24d69ea63dcd16ca3f664697315d01df87d14
MD5 ffcd4919f06e22df2ca46304b7c1bea9
BLAKE2b-256 4a92b3065ac4a5f3836dfd1120f168a74dee48b32ad5836a4cb173f22cb95324

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48fd1c0b77fce1f85e5d2c5166a6e21483967d05fd98f1c153d633346bb119c4
MD5 a5c4cb83edefdae251cb52758a2b1215
BLAKE2b-256 739a7131926ce60f4b3c4ca416b4fcaccc72303193fb48df5cd85b3d493cc947

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d71fdc7c1478d3fda53840f626f6d641b7ff88355b7431c3f1f640bc0e1f0f6f
MD5 92112c6af8267b8927a05a4f19d15a77
BLAKE2b-256 5f2a9be5a03ee2cf5d8350e51cd9ab5ca44decc3591a771076c676ba9812b4b6

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ec60e2bc055b9762c7528747ea94e5a8704811e443470879f07929a422fd6df
MD5 ce134c253246c371030469f3fe6e09a4
BLAKE2b-256 78cf13310e19ac6dd5e2fc3ac8b3f56a086581951b6d8b3e42485462a12df87c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cf406b23914b78ae24b401c95568e4d8e0f1ec228211f1639e1a439fcf812af
MD5 b936f0248c9d9ee34f62835e9b802e1f
BLAKE2b-256 5b623e49b837c0a810d7b5f422a1b0321690ac0e57fb9bcc2e1a7cb4c5ac4aff

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f3141c79a71478e3b35760576f0fd71a2ecda7fd78b3f587efc1af7b9be8a7e
MD5 0a9f4a9d73c91562f04c3e1fdb602980
BLAKE2b-256 3b8ced8845a69fbcb61f190958df9a0399c2920deff50ae06a20d90ffdebc4e4

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74a6594d701d19d459b6015bfd44355a0f62301345418ebdeea800e1e7a0aee2
MD5 01f063b4bb2aec93e4a86ba7218cad77
BLAKE2b-256 552d96a1ba4073b1fe8bb262d27cd14598e7c9d0b172b8eca98b12f4d4d422a0

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: msgpack-1.0.6rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d52a7ac326bbcd82ad6d3aca6271b75ea88c7457d133a28b876793673276361
MD5 20da6593840386d60b5585de6174e553
BLAKE2b-256 93d10770f1cb4a7ee9d5d32e333918ae440d1493a419dfa8a3ec3f2ce7d79d77

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d92da85da7a2a3bd1a2902601ae1f0b75cfd6b899f28d574c064e24278e2095c
MD5 4413ec4e32be5212fb6b4978178b8c3c
BLAKE2b-256 b7c702a768282f979ab57fbc5f2267fb6fe7158d8bb1979fcf5b072588617cd2

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ee2efd3174a27eadbbc9d586d6c39bd5fe4eac92e81fd3ee61172aee11f72f42
MD5 6b325008e04081e67882d70849085e33
BLAKE2b-256 3abc283848241069630a9928b1094706d885bc2912288c5162497c5b24a25cc2

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e590c4e61d14903c4a04824c436eb2ab901285045a86c4198c233e4806068a6d
MD5 f6906ad1c37298cc5af15083baea2e87
BLAKE2b-256 75eda2c97645b247c54705a30cb6346bdaf26d7dac9b6abfeb165cec43a0d13d

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 146e1bd9512e0b123153c0e1f8ad27e8016f36cd99550c5497e869f9562e31f8
MD5 f4f4ac7b4b56ae42d668dc6cf8ceb1f1
BLAKE2b-256 481208f186d6bcd248f1a21dec6332c0b5e049c89275814ce0ed97ed5040243c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0c9bb15b61e2e7e78e66bf5593d74b4c5a92884b4130c5287a2a3e7c73f5977
MD5 e2ff5d8a64317c707de7d26291e1eca7
BLAKE2b-256 85a56a844ae31f2edccd236cd692dbca3bf907aed12c5cd88bbd444ca87004fe

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1c93acc630f59af906c07fbe53ed5832863f5d7738c619dce5616995365dd8f
MD5 7a1a99a9fd0710bd002bd43427fe0191
BLAKE2b-256 286059b9d8eacdfcc6639f3d60d92db5f1b9208f2b21f275094b1ac3872ba292

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53c92eb44fdcfbe5813063e77f12fa1d9704614353391ff1a2530b126cd3b853
MD5 feec59833794e62f4c89f2ee84571cda
BLAKE2b-256 4cb708d46df0d5c3a11a7e91754695cc366cc35f02eaed5ed88610ac2baba806

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a3bb38104b041ae16863f74319df71b412cfb316394e95f2ded3bcb00c42b1e
MD5 81bbf0d1ef6fbfe61b4290637134bee1
BLAKE2b-256 9290008015be33fef763b08af981574057e74b712ecf891125b875ff8bee7124

See more details on using hashes here.

File details

Details for the file msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.0.6rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 14f9800558fbc8089f262eb77ff6a8130e38a7818319b395cf5d318324204207
MD5 18456db700767599dd3a3292109bcc1b
BLAKE2b-256 4f6cf2762cba7f2c5b4904eebe5e367ca1d0ebf480792f7abcf395d003e64229

See more details on using hashes here.

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