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', u'eggs'], use_bin_type=False), raw=True)
[b'spam', b'eggs']
>>> msgpack.unpackb(msgpack.packb([b'spam', u'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.4rc1.tar.gz (128.1 kB view details)

Uploaded Source

Built Distributions

msgpack-1.0.4rc1-cp310-cp310-win_amd64.whl (61.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.0.4rc1-cp310-cp310-win32.whl (57.1 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_i686.whl (348.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_aarch64.whl (311.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.4rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.4rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.4rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (311.6 kB view details)

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

msgpack-1.0.4rc1-cp310-cp310-macosx_11_0_arm64.whl (69.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.4rc1-cp310-cp310-macosx_10_9_x86_64.whl (75.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.4rc1-cp310-cp310-macosx_10_9_universal2.whl (129.2 kB view details)

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

msgpack-1.0.4rc1-cp39-cp39-win_amd64.whl (62.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.0.4rc1-cp39-cp39-win32.whl (57.9 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_x86_64.whl (322.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_i686.whl (353.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_aarch64.whl (316.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.4rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.0.4rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.0.4rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.8 kB view details)

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

msgpack-1.0.4rc1-cp39-cp39-macosx_11_0_arm64.whl (69.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.4rc1-cp39-cp39-macosx_10_9_x86_64.whl (75.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.0.4rc1-cp39-cp39-macosx_10_9_universal2.whl (129.9 kB view details)

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

msgpack-1.0.4rc1-cp38-cp38-win_amd64.whl (62.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.0.4rc1-cp38-cp38-win32.whl (57.7 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_x86_64.whl (329.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_i686.whl (361.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_aarch64.whl (324.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.4rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.4rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.0.4rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (315.7 kB view details)

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

msgpack-1.0.4rc1-cp38-cp38-macosx_11_0_arm64.whl (68.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.4rc1-cp38-cp38-macosx_10_9_x86_64.whl (73.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.0.4rc1-cp38-cp38-macosx_10_9_universal2.whl (126.5 kB view details)

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

msgpack-1.0.4rc1-cp37-cp37m-win_amd64.whl (61.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

msgpack-1.0.4rc1-cp37-cp37m-win32.whl (57.1 kB view details)

Uploaded CPython 3.7m Windows x86

msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (302.9 kB view details)

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

msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_i686.whl (334.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_aarch64.whl (293.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.9 kB view details)

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

msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (293.4 kB view details)

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

msgpack-1.0.4rc1-cp37-cp37m-macosx_10_9_x86_64.whl (72.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

msgpack-1.0.4rc1-cp36-cp36m-win_amd64.whl (69.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

msgpack-1.0.4rc1-cp36-cp36m-win32.whl (61.8 kB view details)

Uploaded CPython 3.6m Windows x86

msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_x86_64.whl (302.3 kB view details)

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

msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_i686.whl (334.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_aarch64.whl (292.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.2 kB view details)

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

msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (294.9 kB view details)

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

msgpack-1.0.4rc1-cp36-cp36m-macosx_10_9_x86_64.whl (73.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: msgpack-1.0.4rc1.tar.gz
  • Upload date:
  • Size: 128.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1.tar.gz
Algorithm Hash digest
SHA256 086e0186560f9c3772efa498dbdeb63174362bbfd92163f36be103a628f2001e
MD5 6b18b88884cd2a41d535b8e766cd0bb4
BLAKE2b-256 f2f95055c5e479fab3787c763b69e9530b3d72316b8b7b9f7419d3ae43305854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8b068a1b0a2ffecaadd41d54c4b579a6bda1f2e49438a18fec4e70650100e90
MD5 f10dc4f01744d17172320ae07a547351
BLAKE2b-256 bc8a26f257d5cb004a531d05e24789b7cdbd74aa3193ad9333cf6dd9d6421d51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fd3cda91024f59725dc2b946d6623ed00e2a701d2273bdcf8abdd7f2e62af0fa
MD5 512cc39b2e0c2ec371831f26ca4d11e0
BLAKE2b-256 42dd1f01ad8ed6f34ad8dec491bded7a95569c4b065352676d71c63ef0b651b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95109aece96d3b97c91bbe42b57c6ee71cbabf0a22318e1697009ae82d0b60b7
MD5 14b43d38cb7d9174f1b48fcdaeb8ad3c
BLAKE2b-256 9309962ce0e2b8f774fd6d1752d83cca91edb782f4910f7bf5168c72bf21a0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7a2a107384432891b0f51ff59c3285a2855a1fd29f552c93bca94d52c5f33415
MD5 2b48f8c4fc9ce52acae8524afcb8f288
BLAKE2b-256 3d9865a0773696e9999db4b947b3d9ebb1400daaca4106d9e52745cb6fd3c69f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b676e7f1158ca01bfc9abd6942a2cd29e5f78fb71352272522daebaa04f9a61
MD5 5a2929dfc77a6050ad854fe253d5c488
BLAKE2b-256 d02fd0f78b05568d3de414f398f5a4679a709b3671ac15f8930ac2c9f8519e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c33705872a8bb50edc63a4c0a2ea15869f50bbe9593a3d9e7da7bb371b77a9
MD5 f61997cfc28d773effc8441b55a8b643
BLAKE2b-256 d9436e6920ed58eed2047335e09ca9ff952d8b8a2270976e043557de859bc3e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8c8bca149a84947fcad7fae687a53f73aec97b66412e26fc7bb2231edebf2df
MD5 f0e0f8f2f0d09a9c25f8fef9a22e9c00
BLAKE2b-256 17930604c7e76de39d5f82f980cc257790e9e56bed78701d585f6b4f675b9d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1016423a82fe177a9f7d61872f95936db37df179bf76ccc2e4e05e970f8a24b
MD5 ae7e79b545ab4fbd1f4226f00e92e236
BLAKE2b-256 471c1190bdd988afcec5f0764e2ca0848c01e9d6e5be5a46b3b6036748fc607b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 536087fdf320dce7f3d7df7e4f4833cb9b7f68537754b3e3c4903e1222d6adfc
MD5 8448b697a61bf1f415ed58dbf317a0e4
BLAKE2b-256 e574be18a6d3425fdaf2dac4ab9164a86fd39335766846a6fe8a96884ba23300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24a9b9a653fbd17645e9910a3f88a6f42d2836ae99ff85b301cd02dfd2f72a08
MD5 d0119c252c0f23a14107faaa1b38e02c
BLAKE2b-256 33fa6a0544420bad6d67ee2ae7818d45ffea882cfc6070aaf38ba947d6bf0951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b771eca12ce5d91975fc7f605d87309252985c12641f36fc156aa4da08507fa5
MD5 168c854ab29ff1ae33ee14644eae97a1
BLAKE2b-256 52ef9417f1f1ed590fce691a45e48186eae0d29f02037e351cbf308fdcf32226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cd3235f45571067df03a3330d0309de21140f86f5a3bea7ae70364b7e9d056e6
MD5 20e5ae5a010a1490d12b187e4972db81
BLAKE2b-256 5c90d79a5f2ee4731e51ff375b1aef52d50c97d4e7093eb2beb4e2705dcfd8d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 57.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fe40ed0f6264fd3e5f251851bc1589f0c8b845504a9ea2a30d63f0890518635e
MD5 dbfba367dea9b4ae615332340cfcb748
BLAKE2b-256 5c36e0e260bcd4f1e9fefb78d7c4d8821ec4eb638aa220c5b6220edf76252844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 907f03b2dc9f05d45951867ac266a1fa264b27ecbbb2e307ca1c96aac18c228c
MD5 0a99845b9556ddb6a3b5b04b024b2914
BLAKE2b-256 e7773b4059229047875a12c28896f8fc6b2a8b800b444a6369da3bcf7ceb8497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 83d1c61addb844544fbbac6dd46cfba53d55fe84f3a6e3166eae16b622a53f0e
MD5 f473233cbcc3aa1feee2ea8e05c24ff9
BLAKE2b-256 70bd5b80383f654ab1e9e34232471577c21b589dbb02aee882a912b9effbcb78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17f37b5cc2d62918a1afbc5bfe063d249071c93542fd7c8da0996604bbbcb3f0
MD5 e305aa7ff76027ed5661cd7c05716b22
BLAKE2b-256 5128ee065727dc47ce2f268dcee8ec6f004002c69d968d3ac77ae35595b9f121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 594de42e0a3cf053c849be3763f8382023e53c42696ffc957e8687811b6f62e2
MD5 6f8634c9785fd95d65b6af2b08a0674d
BLAKE2b-256 f5a93b919a2068357b85a22d5d2328481c92fa717ace71acc6f5692df917d42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8526601e29446c863ac1a14bb4ac22ac12efdef699eeed92ab93c49fb76f93e9
MD5 ad9d552f8db0ab91db78e28353c022dd
BLAKE2b-256 bf561ba54b4d92b294b3345a6d9268be36300c65bbd7244f7002c404264da4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea5bee8cc23ff9777015561d3c96f8878c734670ea0d83bc285ec044e006d3f7
MD5 f958f7619fb01b72b3e2976aecb1198d
BLAKE2b-256 a01b82e70db08e7631558d864d67fedfde21e48f62a931ce8b4c51a5e7e25c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9f492d8d23c71c1258ea3fde2da1ada925025c7b37e410b32a9893abb6a7cc9
MD5 ad9ddfa6315a784aaeec83ef8b612107
BLAKE2b-256 996cca943bb975da44fbab17b76e14a52070c4348be767e61b07cba73f6cb2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94c9558f6c9838ce6adcb759701224175b62115b565c61fba40d75c631571f47
MD5 fc8aed644ccad14715743387a8b5d1cb
BLAKE2b-256 2cbfdf8336bdae8972ebd06eb63f2241d8cdc2fbbfed1c5d9a815f895e8962f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6c964b18f57d836ff25b0a38d417af66d7fa003e35ab8f0dc803c404afa3859e
MD5 d6f0ce2a5e469f64e44f84221d56bb10
BLAKE2b-256 48bd625ee30f835853d0e0693cd530d55d28ad7c1d5805feb1397c39ad313f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8462278325d046f12ba14ea516d5d8f5c3465a4e7a47c1aec8d84d61a361f4c2
MD5 a67861115a2783db8920a5b6a2f2e3a6
BLAKE2b-256 7e24b5a83fa14cf80a0f7df0046f1e85bc7adefec860019985f5b8678c6d6a4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 094a58e2b259bc5a226f1db4c447bcc19d88468184cdc3764853690a1a0d0f2c
MD5 6a086b5fd422ccfa7c0eee7cc2d8ff49
BLAKE2b-256 993e4dded71312396010c8b58f7cc33c5e13b9def86e946fe958b05497c88c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3e565d9e01efb4113bd1ca79a27b3a92da6e1c90e30e25a6977421961de840d
MD5 b4caccbbf5b4b53d6fb8c4f81a5c1af5
BLAKE2b-256 08fd638f917ea9614665feaee270adb511585967dde0476195f7e157d5c1bb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 14d52f6045715817d068be1d2bbeb04a428030005a5f206e42f5721b7378231f
MD5 edeed5130ffaea56f58663efeeb6f80e
BLAKE2b-256 077a1b14c4149d2fd5e339e3e93cbeb6c20553630a32103ffc562ce5f3a1012e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6bdd79c72be420c461d35319d52bab8a1fbfd3e6c6864a3030270a0e8dd85446
MD5 290781ad27db407bb295f2f240ba1bdd
BLAKE2b-256 8bd073340fddbd6b1cd57cc474105708870e0aad2437866fd5c49386cbfdec6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ec0a0576330f21c565ab31a547330a97edde10449eb5909fb7435d4e54fca54
MD5 17fe84de286aa9bd47e9495302b4ca19
BLAKE2b-256 f2088185d207e5af8fcc82d1037e6e2801ff2e01c3b2d16389ce6c5365ad4160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10b7ca77ee124969ca0d930743e636961f29840c19f7b94926e56f203e1f6e1c
MD5 f04e3f53a81cb2baf860bef50fa8bbf2
BLAKE2b-256 28d73fd1c22b5d6a446947df654966ed9889ae653cb10f09ff738d2751a7c9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be3a991c842194e79c5fe51a627bc71f13c81e957ac5620cf87b3c4c81577108
MD5 f867d3ceb60dfe3c183236c73ab47b33
BLAKE2b-256 bd207b8073ef06d96b9b6b27b44c6fa4d07ed0250ba82e5eff8d166024f6fc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f88019382fede38391d93760e84929b0e229d627b9aa20f7987217cb22fcb380
MD5 e616aad030f1643fe61dd6920c95e567
BLAKE2b-256 cab3d1d1e89b41e1cf1ca0c4ebebeda4d7261dd6532e4cc97fd9c957bb435118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6781da4a77e6f10a1aa7e72231fd0ea10591a95958c8f9fa9874b85792016850
MD5 eb17eb0fe5388e793bde8fe46d565b35
BLAKE2b-256 647d0e99cfea92fcb4f3f243761354a20277321c931175d3f55af831d6a051a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 452aac256a384917b05e48babe57616e41f1554743ba9946bbeee30a023e839b
MD5 b7373cce5715696c95518af6f5cc95e5
BLAKE2b-256 9e170a5c74bc08c15de18846e2d69272c5d991d088a3e19d5c7dbce082af205f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ee887437e39e1a2ca8d1a47c0b942969e6ad0e338719c72e02e328db0e5650ab
MD5 875a47486f9f6c449137108191d0d6f5
BLAKE2b-256 bd27275546647460dc34da4e825a3253f0610ade53437c657b29357f97d1f4f8

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: msgpack-1.0.4rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e2e6e031f0b632e6b65368ed136770e5f8dd945c44a2f6d84f83f29e6375e0a8
MD5 2c67a438a2b7da19f0ffb042b96248d6
BLAKE2b-256 089e13d8fe75cc556f19d03600612b0a05f14097241c25577d0f6f60b854f65a

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0afec5b44440d612e06d31a9868938ab261e625befd11675ea8c8187ffce8a15
MD5 76ad7e45e65006a9d46f59fe43ff21ad
BLAKE2b-256 0653f6840bc312fe79b38f8ccbd1441701ba427d9dd9a365954d18eaf54fc772

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca4c699847d68fd09f18a07db6cb5bfe5972c8b9d728aaab79c097d6a761a262
MD5 33989b2ba9909e2453ae175a263a6355
BLAKE2b-256 cccea39dbc8b44293838208558d24d4c8e92196e87e52bab40fbbad97c534fb1

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 831861436295ba913f412eb9a3806109c14d4879193880b00c363746a879836d
MD5 b76e70c17d0c2cfa157eb00d841e623d
BLAKE2b-256 3c85dfb3fa13d4b939639a5b1a1c4b5588f5d49f6be294ccf9fd984fcdd42373

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e0bea97386c5916d952b14761069cf07016277f449cc283fce8f80672204cee
MD5 8c3c4c57c9a6b9a3e2e7b1fedeafe5e7
BLAKE2b-256 909410217a593c75cd7b017de2c8e3dcd4bea9d28ead57f4286a8e1efeb25b9c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95f4614eecb91c7ce67963e37e2aeb039a22049d76d0870f8ec0629fb55d0f03
MD5 548cc5ce2c5ef031dd8f5f25f088912e
BLAKE2b-256 8a7826bd4e1328b0e75c9c5d71b60609ec4e7ae2b0467475250317f4023757dd

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e6f52b625e1d9f07526aef2a5e7cc99d59eb23aedcbbc23d6cb355800a59b2f
MD5 67d754a4620ef4ef4449978833325021
BLAKE2b-256 98f5e6c0d49af328a6ee2c170d301b46d19690b7e867dfa95baa9968421fac7c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ccf1db54975f18bc3a6871c1244e1eee31354049faa226f135389de6078cedd
MD5 5d6e8f467e73f66fee0916eac3bce1cb
BLAKE2b-256 671d094d57a6e4735aee95f58f69088aa3c216c0962b96de9478fea90b7ff2eb

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1e55cb4022399d73a69935a2172e892b1b880f395d70da929a120eef3ce50fdb
MD5 5ebb32057eb79cb4cabb1e80cf0d7f01
BLAKE2b-256 34c65926d405ae58e1fcc563f636559c824fbea6bc9514c8e577bc7e553f74a8

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: msgpack-1.0.4rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 61.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 711e0771f9b7dc3c2933e0cbc8bb9393984d89d525fc34d6826066d7cdbc527b
MD5 bb2d1c03e4d7b080b9e93e396aa4c8dc
BLAKE2b-256 f4592ebd3931ec0e1d7c4ca980bb9715e6faa270eb4d5bb80f0294684591c5ab

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2dd8c68ca20149ae4d7205d48a955730cccd9647d7b384054f9670f8e03afd8a
MD5 398b6ea9120981f22289954004208e4f
BLAKE2b-256 570e976b13ea2968257af145c55210e822b4149f32ebd133756ab31501039411

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bbb6648a19d1ae94f72afbdb3c5ee94214076c940cdfe76534d646ba65827486
MD5 1da3cd151f4f084b0ec106da4c935a04
BLAKE2b-256 b9606e5f4f65de306626f7095bde8b020cdfdb5f0f78986b9b9ccc64e27474bd

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1976baa62fe5bbd07e9739d734c5dd5e79aad76f9498982ef3956d0ed6d599d2
MD5 3e75013117d1efae14ac8743d8d345b7
BLAKE2b-256 bb01634fa53e876e645f3d5e3cd3a9ad4485c65ea6930b311d2a0658f46e4a3b

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3cb90cca6f4096bdf292f01b10d2363d6d512cca0e6232fb2eea0707329da3b
MD5 656149a67d6a81ea71f84537ddef99c6
BLAKE2b-256 aa1d45565812feab8d3517efa1863fa1a4ea542581b478a1ae9f16ab07df5875

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9ad35214b73415540f9636774b70b3b318875cdf5c377bdca73f75d3513e222
MD5 851e4991c4b14b56441029a97ba9a9ad
BLAKE2b-256 18a3f21dc0af58e2de77bcffa301bc1a35f6fee3d4a1efb1f8139bf5a1da6bb5

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c79c5a953e646652edbb71d53ccdc8d61d9ced35fdc1cf498e3defc567fefe6
MD5 468671c5a613104618ff94973ec6c87e
BLAKE2b-256 37bd84bad9be539ee2c3e378e65392c9656333dfd5f0d7158ff5d8b8693dfda7

See more details on using hashes here.

File details

Details for the file msgpack-1.0.4rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.4rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e11038f3ada62ea89d881a9ded6617c3712210a8b1a88bb4c67b49aa7b06217a
MD5 407b4e7924ec3164ce3641e60a2bdf1d
BLAKE2b-256 b5c3b885d453769517fe8ce425110fc28bbd92bd9df3239ea2ecbd869d9df17e

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