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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (232.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

msgpack-1.0.6-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.6-cp311-cp311-win_amd64.whl (162.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

msgpack-1.0.6-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.6-cp311-cp311-musllinux_1_1_i686.whl (583.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.6-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.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.6-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.6-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.6-cp39-cp39-win_amd64.whl (162.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

msgpack-1.0.6-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.6-cp39-cp39-musllinux_1_1_i686.whl (560.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.6-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.6-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.6-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.6-cp38-cp38-macosx_11_0_arm64.whl (231.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: msgpack-1.0.6.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.6.tar.gz
Algorithm Hash digest
SHA256 25d3746da40f3c8c59c3b1d001e49fd2aa17904438f980d9a391370366df001e
MD5 5e35e030329b19811e73c1afac412ffe
BLAKE2b-256 eabf47afb03ba397adced887ccc4adf2e7b7e8c59b220f5a25d6c99bdd03565e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.12, 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e7fae9ca93258a956551708cf60dc6c8145574e32ce8c8c4d894e63bcb04341
MD5 5a1fb205b6fef0e422fa3748126869ea
BLAKE2b-256 6e4346d215b0fb9376a9a1df1b465a4abd2ccbf0784ec26aeb832bd7a79c125c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e36560d001d4ba469d469b02037f2dd404421fd72277d9474efe9f03f83fced5
MD5 91e4360e7a501057da06015769d38453
BLAKE2b-256 865d23bd3b594b8c264491fbc395742f8a53ec21eb102740f3609f7af54b1214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a01a072b2219b65a6ff74df208f20b2cac9401c60adb676ee34e53b4c651077
MD5 b22fd8ae0e788e5cc6d0b3089e68e587
BLAKE2b-256 b6f78440c5fae4f3149bedb47044337a7092b2b4fc443466491f74e574645110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 159cfec18a6e125dd4723e2b1de6f202b34b87c850fb9d509acfd054c01135e9
MD5 d0c48e5ca1c8686a5b79690a7428b29c
BLAKE2b-256 e0f24ffd62481fddedddcc07bfbc4e7cc7d081e06f99c9f825d3f896b5708ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14db7e1b7a7ed362b2f94897bf2486c899c8bb50f6e34b2db92fe534cdab306f
MD5 d750a6545044f67de890d550d603c2b9
BLAKE2b-256 ee96dd8d2f70a4075476152aae7e26874e1e0d48e2e54fddc180bb88311d6438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68569509dd015fcdd1e6b2b3ccc8c51fd27d9a97f461ccc909270e220ee09685
MD5 01e1b2a904461b7b6a9b2a9455aca555
BLAKE2b-256 9a3cde7c714f299a17327f33a6d132efecdbeda35487943e0a0af3dd211341bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c5e05e4f5756758c58a8088aa10dc70d851c89f842b611fdccfc0581c1846bc
MD5 4434e1517cde2f13bcd6f0fe2fdd7057
BLAKE2b-256 c36f7dd0e7b2bb8b05ae1ab42f89386772c615060d3979b8a3b1d79ef01d2f25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf652839d16de91fe1cfb253e0a88db9a548796939533894e07f45d4bdf90a5f
MD5 4308b85d4fe4b73de4a7d1e412bbc45b
BLAKE2b-256 766ce58d743503aaa93f1cf1a2ff8f533157a07fdb43fce06c14c27324a3842e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 102cfb54eaefa73e8ca1e784b9352c623524185c98e057e519545131a56fb0af
MD5 985ccc9fd801ec271eac7e288640d398
BLAKE2b-256 b242d95f670d4b9a82b27129b6dd508e7b05828729f2e801e1da7d4b84d89169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a635aecf1047255576dbb0927cbf9a7aa4a68e9d54110cc3c926652d18f144e0
MD5 8648ff78cc2881d9dd0cd2cd42835cc5
BLAKE2b-256 3a4e43840c7c9abec66cb7f69ce052c9e8271567127a61245cc723a09048eb43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ecf431786019a7bfedc28281531d706627f603e3691d64eccdbce3ecd353823
MD5 ba0fd7796b231acf67b976bf6ef711d4
BLAKE2b-256 72c1426a362f449849d96fba93dbb7f7bce3096cefa8171ac08fc22a5fdc8e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.11, 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae97504958d0bc58c1152045c170815d5c4f8af906561ce044b6358b43d0c97e
MD5 c76443e4f82c3bab6c1f4a85d0126333
BLAKE2b-256 bf074bd57837464373a4815f5a7311760fb868a53900ada5eb3f21e9c86e609d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55bb4a1bf94e39447bc08238a2fb8a767460388a8192f67c103442eb36920887
MD5 26d44a1fca80ffa4e70d7106e72059a3
BLAKE2b-256 0733f8417e21766f021ec4abde0c03f8f684bccc202e5379e3d4bd089bf225c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b16344032a27b2ccfd341f89dadf3e4ef6407d91e4b93563c14644a8abb3ad7
MD5 8b02c7abdf29d8fa3717517f3581dad0
BLAKE2b-256 c0125877b659c0cc54d44e15aa1726ddcebd0c18ef0cce18ef8df2d6c4737d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 95ade0bd4cf69e04e8b8f8ec2d197d9c9c4a9b6902e048dc7456bf6d82e12a80
MD5 01778790045df353804cf245c41f0d88
BLAKE2b-256 e3ecd2bc41571068b42ac6222f9b513bbbea4e127f7c936cf7e64a8e8391e32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 229ccb6713c8b941eaa5cf13dc7478eba117f21513b5893c35e44483e2f0c9c8
MD5 5097b2574743728bee3da762a9ce1d50
BLAKE2b-256 bfb89f349d3a91ee3792796fc01757a1ca9b7ac9467c54700a63e8a8fc329e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 652e4b7497825b0af6259e2c54700e6dc33d2fc4ed92b8839435090d4c9cc911
MD5 66220ba87d4dd0a72682c5d51f0f1c97
BLAKE2b-256 6bc633a44704f8289e9bc8ea1fdac8f876b86fa69246d54cb202b46a36cceed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd6af61388be65a8701f5787362cb54adae20007e0cc67ca9221a4b95115583b
MD5 15054e6b1d82fec1946152f35bd07ad0
BLAKE2b-256 f7790cc0663821c845e2fe3b2dcf4a286e94104c32e34192705ba674031fdcc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b08676a17e3f791daad34d5fcb18479e9c85e7200d5a17cbe8de798643a7e37
MD5 b4145aac86852835769fc5222e0854fa
BLAKE2b-256 9b515ae8c93197121a4fc33caf013877a43fb5e634c3e61dc4fe8dc6970fac73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00ce5f827d4f26fc094043e6f08b6069c1b148efa2631c47615ae14fb6cafc89
MD5 648e2450e47a831d387fc2bd4ac000ef
BLAKE2b-256 6c10d3a561c3dadb1fc21244e50a8069a89c4cf645bdcd3df94485f1957485cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b88dc97ba86c96b964c3745a445d9a65f76fe21955a953064fe04adb63e9367
MD5 722b697ced5ee73fa4b99cf3d20db892
BLAKE2b-256 ba0ae3ddb62275547259324b10b6984c5b39189c828393ae2ab55d66d264df6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 099c3d8a027367e1a6fc55d15336f04ff65c60c4f737b5739f7db4525c65fe9e
MD5 05bcb24df5c58ea818caed1f35dddaff
BLAKE2b-256 9d11944a390e5ce31447d936cf6146eddb9f5fdf81fb4cf78184c9eb4c28d6dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.10, 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 885de1ed5ea01c1bfe0a34c901152a264c3c1f8f1d382042b92ea354bd14bb0e
MD5 ad5c265d295f32922f95db8afee19b7c
BLAKE2b-256 06af18864a08bbb716415da65775f4ea0e9ee47d97d9be625ef05d403ff873d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1dc67b40fe81217b308ab12651adba05e7300b3a2ccf84d6b35a878e308dd8d4
MD5 937c23fbaf9ea825ebf5aae9f0e27596
BLAKE2b-256 b8da9c7914d6dfda1a8903c962a5f7e143c200a6aa54e4cad93bf72e9c92786d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3910211b0ab20be3a38e0bb944ed45bd4265d8d9f11a3d1674b95b298e08dd5c
MD5 d388450a47b0399db0c59fe1801bde75
BLAKE2b-256 fb4be918e3aed323ee0bbd93292315c97458bf2c88b1d77d9171d080d0853904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b06a5095a79384760625b5de3f83f40b3053a385fb893be8a106fbbd84c14980
MD5 477ad309f612258b9ad0fb49ec1853d7
BLAKE2b-256 0710dba647cab641a58c81930d1c13cfc2c62683fc4d737f7ee09369ceaeb7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 04450e4b5e1e662e7c86b6aafb7c230af9334fd0becf5e6b80459a507884241c
MD5 5f17bbe0d386cd47a6053fb25b34b2a1
BLAKE2b-256 d6c7b9974b60e511b1adaa15727e7ebfa456485209395339063c77d71fe05c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a006c300e82402c0c8f1ded11352a3ba2a61b87e7abb3054c845af2ca8d553c
MD5 288590b49bf2a81a090adbc9c42c0da1
BLAKE2b-256 92cbfb176f840b8ead860fd7ac2060dbc26f2ccc551d5a08e590ea979de4b63a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f85200ea102276afdd3749ca94747f057bbb868d1c52921ee2446730b508d0f
MD5 37dabc66699867b6cd149776734cb4b4
BLAKE2b-256 b811aee418a1f38bf820b76e3b84c30deab4e415502917ddbfefbc78ae3b1172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33bbf47ea5a6ff20c23426106e81863cdbb5402de1825493026ce615039cc99d
MD5 04bfc169c81370a41c141b8be0a6a094
BLAKE2b-256 bc44e75672984263dfb098670fe46cd54eb277c8348a5b2a0c137ea8e9ccb1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c8dd9a386a66e50bd7fa22b7a49fb8ead2b3574d6bd69eb1caced6caea0803
MD5 c55c97fb6060cd29bff2c9144d89b6a8
BLAKE2b-256 8f0487573f6d5f7a255695394a314a211658f2ecd0222b3f8a6da22f84be96c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f0e36a5fa7a182cde391a128a64f437657d2b9371dfa42eda3436245adccbf5
MD5 c08fcaaf76b5d45415bf43c635427b09
BLAKE2b-256 0315e25915cf9ba37e775c79fa1ea1b54d54c0d2b6d12f20abba5511c1343a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4321692e7f299277e55f322329b2c972d93bb612d85f3fda8741bec5c6285ce
MD5 96437c6db12724a88f0be87fdedb945b
BLAKE2b-256 77e19c58274cdce0ed6b24390acc8c144b6993783e9663b7741247b0e8f92b62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 162.5 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc97aa4b4fb928ff4d3b74da7c30b360d0cb3ede49a5a6e1fd9705f49aea1deb
MD5 c622845176377f476075708c1b010980
BLAKE2b-256 13613870704a303314a5e85277317a40ea4f7eeaf0489f48e941f624297e9c1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7baf16fd8908a025c4a8d7b699103e72d41f967e2aee5a2065432bcdbd9fd06e
MD5 a75f7f577b826d5a1879cebccd7eaf39
BLAKE2b-256 72bfd2936bed88682038c599fab1c4bcc0065d3e6a73e204a3bab7e390b5a8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 47275ff73005a3e5e146e50baa2378e1730cba6e292f0222bc496a8e4c4adfc8
MD5 86e0ce5fcf0d702e6ee592caef2bef16
BLAKE2b-256 6fd8bc1f372755c74327e3b0551fadca49f557a09384da62705b768789210573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 35ad5aed9b52217d4cea739d0ea3a492a18dd86fecb4b132668a69f27fb0363b
MD5 5658d4d60b314bbf230570e8076772ee
BLAKE2b-256 aa9d8e0a867792c1a6888b2233db0d7a87c215dcf03ca9015d8bde80fe0a7792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32c0aff31f33033f4961abc01f78497e5e07bac02a508632aef394b384d27428
MD5 1cf51eb7af03327c4496be2128773922
BLAKE2b-256 4e20cf3df4a4ec306eb6b9b29eac5efdf33b714a9a44da0b2540db1a23ecb54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c780d992f5d734432726b92a0c87bf1857c3d85082a8dea29cbf56e44a132b3
MD5 bb36afc44ec732d56eed4511a5f02202
BLAKE2b-256 ae20bcde1e994e6cefd69fbbe09ec123e043f8e3d5af1479fbdf67f1949a572c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76820f2ece3b0a7c948bbb6a599020e29574626d23a649476def023cbb026787
MD5 96166c544fbbe762945615b53106347e
BLAKE2b-256 475024f8ce418d186b40be13f7ddfc2e207c78b86bdf72a18b793f11cac91377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0ed35d6d6122d0baa9a1b59ebca4ee302139f4cfb57dab85e4c73ab793ae7ed
MD5 39cfc59c78e703f7a1bcb665de3a6f2a
BLAKE2b-256 85744fa4db5d8ef6b421f9500ddad8512208bd5efa2d6935231a9176763017c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b5658b1f9e486a2eec4c0c688f213a90085b9cf2fec76ef08f98fdf6c62f4b9
MD5 9f3a224dd2c3dcf47551dda207c11c68
BLAKE2b-256 91a5f4ba1e8255c71a01c822210badfcdcb96a83200929da884464d268c84760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88cdb1da7fdb121dbb3116910722f5acab4d6e8bfcacab8fafe27e2e7744dc6a
MD5 898d77a6f3b8ca46ca5f6451dde94193
BLAKE2b-256 e50e3ad53134073772a86d372b0981a25b48608dfccbc08912d950dae31e9ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d6d25b8a5c70e2334ed61a8da4c11cd9b97c6fbd980c406033f06e4463fda006
MD5 1bc1b41cc0423a278db066e2a3b49c65
BLAKE2b-256 e8f3b05e35929eb017250ff78eebfb276223f965fbc1da1689a475d7eeb8a18b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a1cf98afa7ad5e7012454ca3fde254499a13f9d92fd50cb46118118a249a1355
MD5 5ed21a2c569c162af6c78f0c38c7977b
BLAKE2b-256 675b950e7f8d439490b5b1e6968a8489c3d81c1eea04ddd5fc29777ca60906b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.6-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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5cd67674db3c73026e0a2c729b909780e88bd9cbc8184256f9567640a5d299a8
MD5 5e96370d8cac0bcdfd177be8d01ae4f0
BLAKE2b-256 dcf177593debd06460e7f8b87e2f61afa957e53dff51025871a36225cf037b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bbb4448a05d261fae423d5c0b0974ad899f60825bc77eabad5a0c518e78448c2
MD5 f332354e707d8ddf615afcf35ef58167
BLAKE2b-256 1c9466a715b15de91ab6b024f5fc378925a0745cad0b6c52ef8d4d5f9dbff397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fb4571efe86545b772a4630fee578c213c91cbcfd20347806e47fd4e782a18fe
MD5 f1c57ce53c26a11ab3708bd947a16726
BLAKE2b-256 c2df80f03569cad3fb769f2a9c8c1388117f01881f9b4c6875f4cd9c3b406695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 70843788c85ca385846a2d2f836efebe7bb2687ca0734648bf5c9dc6c55602d2
MD5 f6307434f8d1c91a4087b527b419064d
BLAKE2b-256 052d129901040b1341905fe44d7e71501e4db6319da31713b96607cf247e3d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae6c561f11b444b258b1b4be2bdd1e1cf93cd1d80766b7e869a79db4543a8a8
MD5 b56b7f0d2be93b218038a9ec5a02b745
BLAKE2b-256 569ad8a0b55f23c07e3b19e7660bf69494c21c0d3b5db716d9dff88b83e2a90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61213482b5a387ead9e250e9e3cb290292feca39dc83b41c3b1b7b8ffc8d8ecb
MD5 3068ec5e3821606fe9436abdaebbc00a
BLAKE2b-256 efe6326afafbdfc365dfffc1fd2328b637344f58fcdf75701ad99a5a557b0fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 619a63753ba9e792fe3c6c0fc2b9ee2cfbd92153dd91bee029a89a71eb2942cd
MD5 063d92d6d3bab4cacf425207c9484fed
BLAKE2b-256 dd5b47b5298a8a69f123b21c784948ce301f4c9fe55baae38fd8f8712957a4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f75114c05ec56566da6b55122791cf5bb53d5aada96a98c016d6231e03132f76
MD5 316aa8ade866cbfe02c20b507bfe3b6d
BLAKE2b-256 a255cafcdb89eda888e04856b59679ef5adc3cabebefb0fe3c49a37b4f6842e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da057d3652e698b00746e47f06dbb513314f847421e857e32e1dc61c46f6c052
MD5 543a30da6aa0557130d7daf4a535d4d5
BLAKE2b-256 de4e00e125b7d93a6803ca23879795891bf3fe326dc74003eb02bdeba9d5a562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 40b801b768f5a765e33c68f30665d3c6ee1c8623a2d2bb78e6e59f2db4e4ceb7
MD5 a6d6011764e6b65f767b6b59a7a52040
BLAKE2b-256 9e3e087612e34dcd2d78fa6ed3112a39994242db97986d1e9bd0ff2d027cdafb

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