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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

msgpack-1.0.5rc1-cp311-cp311-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgpack-1.0.5rc1-cp311-cp311-win32.whl (56.5 kB view details)

Uploaded CPython 3.11 Windows x86

msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_x86_64.whl (323.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_i686.whl (355.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_aarch64.whl (316.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgpack-1.0.5rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (319.4 kB view details)

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

msgpack-1.0.5rc1-cp311-cp311-macosx_11_0_arm64.whl (68.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgpack-1.0.5rc1-cp311-cp311-macosx_10_9_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgpack-1.0.5rc1-cp311-cp311-macosx_10_9_universal2.whl (127.0 kB view details)

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

msgpack-1.0.5rc1-cp310-cp310-win_amd64.whl (61.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.0.5rc1-cp310-cp310-win32.whl (57.2 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_x86_64.whl (316.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_i686.whl (348.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_aarch64.whl (311.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.5rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (311.4 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.5rc1-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.5rc1-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.5rc1-cp39-cp39-win_amd64.whl (62.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_x86_64.whl (322.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_i686.whl (352.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-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.5rc1-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.5rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.7 kB view details)

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

msgpack-1.0.5rc1-cp39-cp39-macosx_11_0_arm64.whl (69.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.5rc1-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.5rc1-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.5rc1-cp38-cp38-win_amd64.whl (62.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_x86_64.whl (329.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_i686.whl (361.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_aarch64.whl (324.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.5rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (315.5 kB view details)

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.5rc1-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.5rc1-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.5rc1-cp37-cp37m-win_amd64.whl (62.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (302.8 kB view details)

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

msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_i686.whl (334.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_aarch64.whl (292.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.7 kB view details)

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

msgpack-1.0.5rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

msgpack-1.0.5rc1-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.5rc1-cp36-cp36m-win_amd64.whl (69.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

msgpack-1.0.5rc1-cp36-cp36m-win32.whl (61.9 kB view details)

Uploaded CPython 3.6m Windows x86

msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_x86_64.whl (302.2 kB view details)

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

msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_i686.whl (334.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_aarch64.whl (292.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

msgpack-1.0.5rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.1 kB view details)

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

msgpack-1.0.5rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

msgpack-1.0.5rc1-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.5rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bea6b16a3537ad712bc9b7189970bdf28c56a0cec0a0b46a9f3db3ac0a853335
MD5 180daaddbc12dc3b6611ce2acb400061
BLAKE2b-256 4c1121dcd906bc1fbc0e16758c26d4033f10ed5ee94b4eece64a94b5659ccbeb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d18a179e7e26da21f85e3b807f317316da28c62f4213e6864191fa9aabe482a
MD5 b3568209c7bd45abb47878c9fefcc1b5
BLAKE2b-256 7e1a1a80109c165763f0af60b32e2e845a9aa33904a034482b8d0c6a2904611b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04366c754ac3bfecf589ea0578599f0c26a3b6558e44cc94d5078bedc67ebfb8
MD5 c56cf124ad2225e1229c21dc4a2ce194
BLAKE2b-256 649a30d1ff643c0c7c7304723c5e16a37d0d7bcfbf99694362766610d3d3def8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 290f9a656d34aa20cb672ee11ebd5c6647d08419c88614823562997ecb566c16
MD5 ec3bd55d0d06f1b42bca9b810a31ae61
BLAKE2b-256 541646db7c54ecc15ad9b675365eefa4e1841cb956b27a2de2ca9cf048364fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68726d2404250b6b3b3e63df7e2c4243d46846c630d356a8d129f4aec72ced56
MD5 f2bed43bd5823747e63653e68f2337d2
BLAKE2b-256 f8f7b5459019d3be7900954e4bbeee7969b13854979d03dd0ec63dc57ddad515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90703d9c8eae435fcb2f84a545183a23670b5662e6e9e7ee6dfdcd8f69a373f5
MD5 6d3f73c89acf39291689a567bc5068c1
BLAKE2b-256 0467985311e251085e67ef4501c19f14812e5480991ea33aecfe29706f20a390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 469c8f3d9458b0d4fc2fa691b914eced40465a95a623e87f75bc40a74e31dfea
MD5 d9316d04383caf9ffd8fea34c2757d41
BLAKE2b-256 1e22efd5339f080e4813c73b5361d7263c567c1c26f3cbf76aab2aa77b1bf60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31b4112b43af2a78d005c9192d2a5f0cec62c6a731ca93e77a0d3979da585d9b
MD5 8f71d4b3c9a91692addab53b43368bca
BLAKE2b-256 e041ffb1e705bb6900c5e24c43630846f7349fe165db714f449a4124b0bc6133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d98a89e53df1540f3f465a510b511e97d21e1b1777b9f5e030184e1cc68d1072
MD5 6c15f70d887f657433faea45da912c25
BLAKE2b-256 754890be379bb59ade21a68ece4e5f08b9cad4fde97276452ff331f13da0fdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f25c3553c5b7b07ecff4a3b88024477a08b568edf9566cccb662b31803649919
MD5 b0ff79b4ea69228eea39fd1ba8c08ef0
BLAKE2b-256 7b1755ba6ed0aa725fc15011f8c5e550e791eaa210d7705f32a29c01301edcf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a34b0dfb71eb8807cf082d59c0666715df51fc49e734c0f171df5bbb86e02570
MD5 8985c1d008ed2ae35f64c362bac903ac
BLAKE2b-256 9bc5bd107ac6cf03ffef2397a3273b3f245f8f17dce18e6a36491ea4773e1d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5629026acea9c4e2c2e684de7b313ef82e516e2e88049b3eefcc6316da43ce40
MD5 d0cefe08843f2ced928d733885c2e8b7
BLAKE2b-256 64c73ad9d3bd731b919549cd6348092c11cb2197b2299c02420aaefc12924889

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f2c3692b13e8c26aa54a87318861d80b1b0d2adbfa3fb81b05d54a6e56083958
MD5 61b626e2fbb13d393a2f97c4d31fffde
BLAKE2b-256 cf19db6df3c2fff57962218865ff0990413ad6b89080033bf79f70b362333765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 318956e96edd3c02a183e96af10f471c1fa18c29add5c317871de3532302609c
MD5 acabd19176c1b9518af44216bf87b993
BLAKE2b-256 fa1b78592382eaef9809eb22adc9c57f7ebe65fcb2a739b1f15ee12377abed8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d6a73d8f30e06562efc35f5f9699221eb240b18691807b32ef29bae7f66e0da1
MD5 74931b2540a320b7c9871901fc4b627a
BLAKE2b-256 5914a34ad4eb7fbd187c6eaa94b040915ee8744fd5f0d78dbae34491fcf6d2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e4f6a2b90746c8bca7f3742e38b8ce8fc6ad4a0b63e938c135ea0d578857aff8
MD5 80c0ef8a4d0dbbae7eb152505e9b11ee
BLAKE2b-256 509d8daf505dd5b74c45ce86bce019c0fabf78020667b1895d9384ccd1fa78d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20a26548e6fbd0998846d51835d79e2c9a1542d11228872baec61baf87264e92
MD5 5f47a817f13ef8698ac1c2a713debb97
BLAKE2b-256 7f90ae6e4910697e99b1f8668f68cf0b4bde4fd41288d224e501a9e61c735ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53cbf882e4b11aba6cdeec41abe576d4cc7dbf22e7a431f95d8127b32768709f
MD5 c37144f87848943b058279e392cc7a7b
BLAKE2b-256 babda8a56cae3a80b52b2bf41ac2c2a9d13b9451d3d4b333ceca1a8b0a7f89fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 969e6ee8f82b7ff0f831b1d3ceb84eafe9b58f5300cc024a96041c7a8c20d559
MD5 0ab711d31d8e26090193fa107b57b926
BLAKE2b-256 f9e1b852fa5d966bb4be3b638b6e2a438d61d4f54043540953a2f335360a7465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da5db8a4d8b532bbe1e4aa1fabfb21f49f30ee7db49d4885c448c7a9ea032138
MD5 edf76678d0b44d0afafb9662f78a34bc
BLAKE2b-256 b553136626469ac2ba3bb2f9b64fe1e1190f6ca135455d507b70d9ef95ec0558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4df078e1a38a26d9f8addabf0df24fcf0abc2161bb7b43b2cfdd178d8a127a12
MD5 846b7c1681d3a8e872b51b86932f5960
BLAKE2b-256 15d5d1a034ba86e541028a63afcae6a3bf9288b8d7b8cc0a36862a37ad05e496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fb0db88c3db68a938f4f930c34570b9b5b050e43ac611bcfd8506303d0ff2d4f
MD5 fd0cb23a013463bb5a4d7af0bc05b6be
BLAKE2b-256 8362403d3744f2a321af8df1dc28e67ce8e23f7d0efb0efb33b8850e51b372ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3729619996e9a0db56d5dc00de1d72e401aee6695d59cbfb62815a5605c66cdb
MD5 c2ee2f6ec4856e2fe1c08a3c94824708
BLAKE2b-256 f46401918d333d8400689423843f14f5b2f6a8be7bee3b202fe41f494fd78bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5rc1-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.2 CPython/3.10.9

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d896df74ce25ff2e0b2d5bdd0344eff01e05814cd9b168f9321bd459f476981e
MD5 e5edde42bdb3da772cb9c26a0117343a
BLAKE2b-256 92b20776316bf53a30fc121e7f7afa600e99299a3cb91b94f33e62a7ad706f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2cd4e24daff07eedf168f6e7db1b2c0831bed748d8b7254053d4b2334c206ed5
MD5 6cc3e38d6fb14ea2ba679ddd39a5b455
BLAKE2b-256 068dd06bec901adc76eeeb14f9928f70ae071a158e2e6d3d3b4ee6004917bc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 12a5f5e5279a37909ed41dab91b20cc41d6423ddf944141e2d2cf41517f3b119
MD5 44dacbcaaed923955458a7d35f829782
BLAKE2b-256 1ca3a7fdfabbb3f555b6209ed94e9c2d2cae91e8d09ae4f304bc5364cefa3e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb4a0545afb15189601c1e4e7cf82765456ef45985dc293297c854c4045afe31
MD5 f4766b25f60db0db4077c3c58b5785df
BLAKE2b-256 a55ebab2141875708da4526bb7cea7c7abc36a30abf91e65f36a2e93ab2e65d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dff7f7c68435a7b7b570b75f8c71ab986681e04767e10eefc178105c698495b1
MD5 13d69d059152111cb4c7efbe513e68a4
BLAKE2b-256 2fb51fddbc9e55833224ea0a6c15a742fa36f94c88fde5f73ca4ee6f93aa1d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 669450ebc749e8ac27d07b750643e8e2ff8976ba95ebcc2e12eb00999f3cf500
MD5 c840c13f1fd455911a43caeb87d0ad38
BLAKE2b-256 dd0c2265d145e63a2f3b319aa2851936486880a0736a440c5701ec9572108919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d73c893dd03129c67cb2bea65733bdf1c52cf78e51fb599b81146c1ae8a51f0
MD5 efc29b22b86a890ccb5d8cd83af83481
BLAKE2b-256 8888e61e1ee58c31377a4d3bb433b86358b03ae992840e5534ece91e1012aff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13eb94148866fe4f6f93a5253bab1b12b3976c1c859b6b11f3ca7be581f20c12
MD5 18567ddda10351e735995c0a30bba37f
BLAKE2b-256 8716a507fcec7df2cd25890ad983d30c1c5abfb6272220fed6378af30d9b75d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa9a797de3c755e9bb47a8c6f592b4c0dbb296cee584d3cd0e36b53be0c31e80
MD5 2b26c48142a1744d7627f288cff91fd8
BLAKE2b-256 8882f37d1f42ea0601c86ed2acbad356c06088d4542d5abfa46110775d411d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6322b441d0ddab56ca5e79904dd2f79494d33636fdf53be0d01a23ebb56d2613
MD5 598f6a8a9a937c029935ec26bb6d2763
BLAKE2b-256 6862da24b708ab23865f214cc8cff2e12519e013dd18a57920c57c13a57c2022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 47d9123a621b18b4c7a63739acbb56de4f89b92b3e493cb165593474cff3c60f
MD5 9b9a8c247a80156c4854b56891cd4891
BLAKE2b-256 6236a8e7b27bfd2e66210ed3b7554b467f303cd56b7bbfc769742bc5d7359352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5rc1-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.2 CPython/3.10.9

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ceed735d624af7e1834db1995ad293389e66306025c7c791db2ac42e006dbd25
MD5 602e4e3eb62f06e3532d9cc2916652ac
BLAKE2b-256 6c8b49e646d61b444aa3c117f2df9094170bef9ba066e71ddfd671b55b6c78a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cbd3af673fa93706c59e66519f6110d4a317892ddeae7a9718dde3e0e9a9a6df
MD5 cd3e9380af353211d5c21e9765d166d5
BLAKE2b-256 1edf2fd2d2f6b6d7772aadccb67d17923c82e48350f80aa7afdbc7e4a9793782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f9b6d3689fac019f10091cdaf5ff95458a8ccdadfd5598bb0be92cf888feeace
MD5 d1df0d25711291e90f77d7f450849fa0
BLAKE2b-256 54f1c0476fb640f5aa58ad17d9c1123110b94040720e6393adc4582a00d22caf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf7aec2bf2ff7bf7e8a07de04b593c1076f51941a28dd23d2af5b07c23f60ee9
MD5 df121b19d775d3c5adc8de86fdd17af7
BLAKE2b-256 e7f06af5509d4f7abfbdb31b486cdcc8168cf8dcea2de991e4a929864428952b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbe299a9e7b7d24e688f1e4dac09eb5b01d8eb8eaca944aae5d8f8aef6c73c37
MD5 4b2a5d3bbfe4697d59f31fbc84a75917
BLAKE2b-256 760a6b257805c6557ccc1f0d194b1d4e0b34d6c9b46152bb9fda2e4063c3752a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1960d6c57e30f60c132e2649e5fefb0bd29b1b55c707c0c5ecfa7f08def82d1
MD5 57f3765ae077f45a339dbb8fdd02abdc
BLAKE2b-256 ff401d308d64e8d56a63fa17acf457dfa022cdbd93707251f6dfc8139e66ae15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8667a1ecb0a70d612992516a9483dce35d5e452430832cca4f01899e8da6da7
MD5 58969612ba6e3fce4f09349000a361a0
BLAKE2b-256 2e3f82be32e36b676698a8ccf982722fd6f6a5ba61b2c7cb4bcd28ea57f6d6f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b202019a014ad3e7e5953430fe5838125196ad4fb27c15e521b22724add939
MD5 70af1d8c85f47384cd16f0b074031829
BLAKE2b-256 ce0c3323cf0f27921aa9374fb537b99eab97b96537becb0a3633ff1293a13650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c81463959da83fc74ff9bfba7d0a5c6d21b44e799f78c28fe57c75b300160f5d
MD5 38e0f7ef2b5d5f14a01c95acb87b369d
BLAKE2b-256 436ce728f8ed28443dcfdc8bcf13372b1ae721ef97ed59f7df32537d300ac5e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9c57c6730e94801b341c87d56edbf923165dda6d000f2c1c1d5fb74f257cd802
MD5 5fd4ffd5f42228978b8bc269e1343326
BLAKE2b-256 4adae4c38c5e0e04b05ecc0dfd18e5f4d9ba5141f50485ae0205071b5f2bcb58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e63c6d85f23243d9ed15aaff826a2330a8be33d09b8d808602dbe8d2b596a89f
MD5 2afb4c5eed9e3893072276a09f56c40c
BLAKE2b-256 2acc15dee8da623992580aa7e279650ea7ec592fff5cc07fa1c8de3330be8342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5rc1-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.2 CPython/3.10.9

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6e733b50bbcedd04e82922c80e7f045530f8bd19ce004c006316eef511b623bb
MD5 405de2740d5c6f9dc3fd6baff4c3d253
BLAKE2b-256 826fe829beeae421966ba2d76569f2ac9b869588401a33aea46cd104f78bc105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2371e14ff3b17f5774f50602fb139e1df39ee3ca44eb3ae82683ac9b1db5e4ed
MD5 c9821913b01fc32e4397abe2878c4390
BLAKE2b-256 32a61a90777fef36583cfca232633858e4ffeee13ca19dcc39be3c4cea14430b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e4d1c09fe6a3104a001e6197e46e34237f1858ca470b97a87cb7d29fdc359fe
MD5 b0b5407b9099fd1889a5a6f6a640aa90
BLAKE2b-256 7a24f85c77127f4a50b242b1c72619e1d6b75e8d27b049a27c24987a2ee05b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4655afa670c7f05bb560a00640d725629c3f2d4f36267c0d3b9645bdecee9b74
MD5 eeb87c069c337fec334c72556b5fb89a
BLAKE2b-256 c8b7822de9a37501bfc3b490ca9b08842fc415af8bc2f4d28f4378357b0f9430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 631bdeacad61e2bdee929835622025131d9971bd9aed4cbad9e44a46caa42069
MD5 534ecebfef474d758377e9189a343bca
BLAKE2b-256 f8b41745f95ccf75456e26cc3d4a78f28fc07f62c15cd16f9b3a12ba2cf0daa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44b913a7b9a4a7726bb004aed024670682669a15f77dc2ad8d87a179d9e26e94
MD5 14ef2394437d686babebdb6c9d7e3729
BLAKE2b-256 77c69d2231afb84e27712a3cb8253b9ade0bbb717c81c82aa3847b551d3b082d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6788d652256e38b19f7578eb7dd4f96de10fe20546ebf5519bef22aa18c6109
MD5 e130f05005004ca1d6417d49b64a358c
BLAKE2b-256 0aba6a1bf3f30350d7775fe15356bd7001c7be78c472c3eafd1810d903d37fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e600cb89997f4cda23f93b29c9ad4ae09884573ec87476d46df264b86a92cc3
MD5 4c99d2efaea7444c8c83de918a7e0de0
BLAKE2b-256 6494373a471ba19af6c1aacea3b38e1e8daae2229132a0e27058e3ddb923207c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 512df5ec1f97ae44c3307049be05cc901b255b297aae5c88508e3058a3874270
MD5 b6b92298ef5feac9dc40a4d0068a8993
BLAKE2b-256 cd872ece1e0d6d61277f153cc192eb4bbb0bbfc924dcd2c179e74070beaabbd8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1c19803007800ed7ff492b21dc84872ea2ef7577800c97939a50f1ecef099fb2
MD5 0c7fa152bb99063a381f9190d69677cb
BLAKE2b-256 0f0b7df3c1c1feb48f65334b43c7ca99e903e138fd17e52fcb90bdfe41419411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dfdacd510bc0f73125aa3e496243ebf768f0eb6478243867607f3b247451fb6f
MD5 76ede7898854ed4da8c9e54ec2e09545
BLAKE2b-256 e21ec4c57f4135153bbe72bbadf8470dff14f5fc722b05bc599f65b69c4c3fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ff54f758e67d2ed70121b99f35929801a02086bfd544dfc40a9cee59a3f04c8d
MD5 96cf1b744f4295705e5ff07bb0c0dabf
BLAKE2b-256 e2bbdc38f9425d39411026eedb461f63cbe10115c9fe018678b3a27f3cf1c31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a43019ea96dc4632dc2626c76b5413e5a4e1294781e9f5241435076897140594
MD5 3cb5e8dbec74f2b799f8e141d2478817
BLAKE2b-256 f36a13c856ccc39452ee3a49d44ca2b437feb5fcbc146e9c2c919d762391d179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 556c17b6bbfeb5e31e52baa3e39d04e863dabd98b459538f73aa958bc4bc4043
MD5 14c25f9d7f2878c9fd1c6cb58df229bd
BLAKE2b-256 0d35bdeacca062d1c3443b66b5fa137f64f856f62bf7e004dabace9a3c56f9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a8fed756d52f8e8e45e1cb1eac83d96349d563997eed417ffd80eaac426e49e
MD5 9f3451ae572fab59ec7d35ca361fcf51
BLAKE2b-256 533f2c71a3fa0895ab04fcc71430471845af4eca8817630fc7c34f4a6ec15093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42418455bb0aba4591f8f90ac4b783834e6cb0d880c0b92a71423bf59ccc38b9
MD5 3e54e8c98499f63a027593696a36b990
BLAKE2b-256 441f7268ae1ac67cffda222c8d0f6c5fc40dbfe245c798ddd190c429cab1f205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c65fd6feb88efe81765b51ad1150b9db682794fb2ab6ddf0e77a6fb4750eca92
MD5 4924397f81853af95d2fcbcb24a982f3
BLAKE2b-256 fe30dc9a401158104569bc1bc3cbb861749951ef1ff91dc8235e2a13d8f0bd8c

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