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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

msgpack-1.0.5-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.5-cp311-cp311-musllinux_1_1_i686.whl (355.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (69.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (70.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl (129.7 kB view details)

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

msgpack-1.0.5-cp39-cp39-win_amd64.whl (62.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

msgpack-1.0.5-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.5-cp39-cp39-musllinux_1_1_i686.whl (352.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.6 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl (75.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl (130.5 kB view details)

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

msgpack-1.0.5-cp38-cp38-win_amd64.whl (62.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

msgpack-1.0.5-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.5-cp38-cp38-musllinux_1_1_i686.whl (361.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.5-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.5-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.5-cp38-cp38-macosx_11_0_arm64.whl (68.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl (73.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl (126.9 kB view details)

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

msgpack-1.0.5-cp37-cp37m-win_amd64.whl (62.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

msgpack-1.0.5-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.5-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.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (293.1 kB view details)

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

msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (72.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

msgpack-1.0.5-cp36-cp36m-win_amd64.whl (69.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

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

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

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file msgpack-1.0.5.tar.gz.

File metadata

  • Download URL: msgpack-1.0.5.tar.gz
  • Upload date:
  • Size: 127.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for msgpack-1.0.5.tar.gz
Algorithm Hash digest
SHA256 c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c
MD5 da12a9f0a65a803ec005219f6095d0a3
BLAKE2b-256 dca1eba11a0d4b764bc62966a565b470f8c6f38242723ba3057e9b5098678c30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c4c68d87497f66f96d50142a2b73b97972130d93677ce930718f68828b382e2
MD5 74bf6fce36d7778217d905bdb9806969
BLAKE2b-256 6b790dec8f035160464ca88b221cc79691a71cf88dc25207c17f1d918b2c7bb0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c396e2cc213d12ce017b686e0f53497f94f8ba2b24799c25d913d46c08ec422c
MD5 76f0f4a70ec6e26f88b9da69a14d15b0
BLAKE2b-256 0e693d10e741dd2bbb806af5cdc76551735baab5f5f9773701eb05502c913a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf22a83f973b50f9d38e55c6aade04c41ddda19b00c4ebc558930d78eecc64ed
MD5 7723628d25b398d172348a867a4df7ee
BLAKE2b-256 45856b55b0cabad846d3e730226a897f878f8f63ee505668bb6c55a697b0bfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b2de4c1c0538dcb7010902a2b97f4e00fc4ddf2c8cda9749af0e594d3b7fa3d7
MD5 9186353d386d62ee87acc0d3d3a6da43
BLAKE2b-256 2ce9c79ecc36cfa34d850a01773565e0fccafd69efff07172028c3a5f758b83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed40e926fa2f297e8a653c954b732f125ef97bdd4c889f243182299de27e2aa9
MD5 defd993b630f142731da7753418f51ba
BLAKE2b-256 b8bc1d5fe4732dc78ff86aaf677596da08f0ae736e60ca8ab49c1f1c7366cb1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28592e20bbb1620848256ebc105fc420436af59515793ed27d5c77a217477705
MD5 70a116d0dd4456b52e3a91cf9c2e2544
BLAKE2b-256 6b6dde239d77d347f1990c41b4800075a15e06f748186dd120166270dd071734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ab2f3331cb1b54165976a9d976cb251a83183631c88076613c6c780f0d6e45a
MD5 1feac4848b6b2b139156072482d8d691
BLAKE2b-256 330aaa7b53ae17cf1dc1c352d705ab3162fc572c55048cc3177c1a88009c47fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe5c63197c55bce6385d9aee16c4d0641684628f63ace85f73571e65ad1c1e8d
MD5 54299b14c8db42bb991461d37f60dc11
BLAKE2b-256 7e1c9d0fd241a4e88e1cd2f5babea4a27ac25b1b86dbbc05fa10741e82079a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5494ea30d517a3576749cad32fa27f7585c65f5f38309c88c6d137877fa28a5a
MD5 711745152b94f8043560fbee4f45b04c
BLAKE2b-256 6cfe8a7747ca57074307a2e8f1de58441952a9dbdf9e8a8e5873d53a5ce0835c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e6ca5d5699bcd89ae605c150aee83b5321f2115695e741b99618f4856c50898
MD5 a4bc860529cc10fdcba1d8e92f65349b
BLAKE2b-256 c15701f2d8805160f559ec21d095fc7576a26fbaed2475af24ce4a135c380c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f5ae84c5c8a857ec44dc180a8b0cc08238e021f57abdf51a8182e915e6299f0
MD5 0e6d608de8542acae500450bcf048f89
BLAKE2b-256 27ad4edfe383ec3185611441179ffee8cbc8155d7575fbad73f6d31015e35451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4867aa2df9e2a5fa5f76d7d5565d25ec76e84c106b55509e78c1ede0f152659a
MD5 9d807ec80f423950e9f6461f772a27de
BLAKE2b-256 3ce53d436bed11849ba05d777ed3fd1a0440170bad460335ea541dd6946047ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 382b2c77589331f2cb80b67cc058c00f225e19827dbc818d700f61513ab47bea
MD5 0bb9c394a8327135f9a74385e568a8e3
BLAKE2b-256 7be9b47f9e93fc381885624c40cbbbd0480b18ae11ca588162fe724d43495372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d25dd59bbbbb996eacf7be6b4ad082ed7eacc4e8f3d2df1ba43822da9bfa122a
MD5 421d91d4d364b6cc66ac265da60825a8
BLAKE2b-256 29561fb6b96aab759ab3bc05b03ba6d936b350db72aac203cde56ea6bd001237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 20a97bf595a232c3ee6d57ddaadd5453d174a52594bf9c21d10407e2a2d9b3bd
MD5 8be372c05362cd49b7f3b80b3df30725
BLAKE2b-256 10ca50c3a5e92d459a942169747315afd8c226d05427eccff903ddf33135c574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1967f6129fc50a43bfe0951c35acbb729be89a55d849fab7686004da85103f1c
MD5 dc273c2cd5ed3f015d5ab68afcfb7c3e
BLAKE2b-256 95c9560c3203c4327881c9f2de26c42dacdd9567bfe7fa43458e2a680c4bdcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e42b9594cc3bf4d838d67d6ed62b9e59e201862a25e9a157019e171fbe672dd3
MD5 56104bed1729c463cb4283c564e013a3
BLAKE2b-256 5967f992ada3b42889f1b984e5651d63ea21ca3a92049cff6d75fe0a4a63e422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cb47c21a8a65b165ce29f2bec852790cbc04936f502966768e4aae9fa763cb7
MD5 87197d5713c96680d8e708be6d96f0f0
BLAKE2b-256 3e80bc7fdb75a35bf32c7c529c247dcadfd0502aac2309e207a89b0be6fe42ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55b56a24893105dc52c1253649b60f475f36b3aa0fc66115bffafb624d7cb30b
MD5 f9c575753862835ffb09391dad1b054a
BLAKE2b-256 10fe9e004c4deb457f1ef1ad88c1188da5691ff1855e0d03a5ac3635ae1f6530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdc793c50be3f01106245a61b739328f7dccc2c648b501e237f0699fe1395b81
MD5 e4319d18cd5a3a6b2560e1b977ab90de
BLAKE2b-256 7399f338ce8b69e934c04e5d9187f85de1ae395882cd56e7deb48e78a1749af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f8d8b3bf1ff2672567d6b5c725a1b347fe838b912772aa8ae2bf70338d5a198
MD5 31cb3e4e120db3cfb51bd811a35367b2
BLAKE2b-256 f2da770118f8d48e11cc9a2c7cb60d7d3c8016266526bd42c6ff5bd21013d099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 525228efd79bb831cf6830a732e2e80bc1b05436b086d4264814b4b2955b2fa9
MD5 8120a4c42fa211aaab992f998859719f
BLAKE2b-256 9f4a36d936e54cf71e23ad276564465f6a54fb129e3d61520b76e13e0bb29167

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 06f5174b5f8ed0ed919da0e62cbd4ffde676a374aba4020034da05fab67b9164
MD5 caaf74eadb9756e5a358935a898c093c
BLAKE2b-256 6cfa3ca00fb1e53bcacf8c186fa6aff2d2086862b12e289bcf38227d9d40bd86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ac9dd47af78cae935901a9a500104e2dea2e253207c924cc95de149606dc43cc
MD5 643bc02cb0991746c937c0ce0ca351df
BLAKE2b-256 183f3860151fbdf50e369bbe4ffd307a588417669c725025e383f3ce5893690f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11
MD5 635db7c888371819821706a19b7a28c5
BLAKE2b-256 1710be97811782473d709d07b65a3955a5a76d47686aff3d62bb41d48aea7c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8
MD5 a30df7fd77c19d1d881cfd74e83c929b
BLAKE2b-256 e9f145b73a9e97f702bcb5f51569b93990e456bc969363e55122374c22ed7d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d
MD5 ab46b4e45edf96770412cff6f25524ae
BLAKE2b-256 67f8e3ab674f4a945308362e9342297fe6b35a89dd0f648aa325aabffa5dc210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f
MD5 b6cd3987fc0469be08afa6872c438fd0
BLAKE2b-256 abffca74e519c47139b6c08fb21db5ead2bd2eed6cb1225f9be69390cdb48182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437
MD5 4cdedc5722aa07bce945ca6f701bce77
BLAKE2b-256 4957a28120d82f8e77622a1e1efc652389c71145f6b89b47b39814a7c6038373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282
MD5 ad3b8caf9af3fe19de2fd23121b1b468
BLAKE2b-256 43876507d56f62b958d822ae4ffe1c4507ed7d3cf37ad61114665816adcf4adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd
MD5 3851fed20c636387caf38533c75c3076
BLAKE2b-256 bf68032e62ad44f92ba6a4ae7c45054843cdec7f0c405ecdfd166f25123b0c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5
MD5 f096296802df753f5f255e24ed70cf7f
BLAKE2b-256 4b3dcc5eb6d69e0ecde80a78cc42f48579971ec333e509d56a4a6de1a2c40ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025
MD5 261daa8a497a473e5579c2d0704d01a1
BLAKE2b-256 126e0cfd1dc07f61a6ac606587a393f489c3ca463469d285a73c8e5e2f61b021

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bae7de2026cbfe3782c8b78b0db9cbfc5455e079f1937cb0ab8d133496ac55e1
MD5 bde19e1f1833aa8c55bafbe9594e3210
BLAKE2b-256 da46855bdcbf004fd87b6a4451e8dcd61329439dcd9039887f71ca5085769216

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5-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.10

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c0f7c47f0087ffda62961d425e4407961a7ffd2aa004c81b9c07d9269512f6e
MD5 0b166892fe0ad66a5b5ceddf44bf814e
BLAKE2b-256 80f0c1fadb4e4a38fda19e35b1b6f887d72cc9c57778af43b53f64a8cd62e922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0
MD5 d22879c17a1e3484530fd688f2eb5c30
BLAKE2b-256 5650bfcc0fad07067b6f1b09d940272ec749d5fe82570d938c2348c3ad0babf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48
MD5 47e963afeb39bc30bf9a153f2202a62f
BLAKE2b-256 0d9044edef4a8c6f035b054c4b017c5adcb22a35ec377e17e50dd5dced279a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 addab7e2e1fcc04bd08e4eb631c2a90960c340e40dfc4a5e24d2ff0d5a3b3edb
MD5 322f7bd32421bb0f11f6d77c604853bc
BLAKE2b-256 288fc58c53c884217cc572c19349c7e1129b5a6eae36df0a017aae3a8f3d7aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9985b214f33311df47e274eb788a5893a761d025e2b92c723ba4c63936b69b1
MD5 4931e11ce9e1c77a1066d8ddd358c129
BLAKE2b-256 0a04bc319ba061f6dc9077745988be288705b3f9f18c5a209772a3e8fcd419fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba
MD5 c6cc9094c16b03180765a3c7e57996f0
BLAKE2b-256 190c2c3b443df88f5d400f2e19a3d867564d004b26e137f18c2f2663913987bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48296af57cdb1d885843afd73c4656be5c76c0c6328db3440c9601a98f303d87
MD5 7477380432806e4b99e52ba824246f4d
BLAKE2b-256 2f21e488871f8e498efe14821b0c870eb95af52cfafb9b8dd41d83fad85b383b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 332360ff25469c346a1c5e47cbe2a725517919892eda5cfaffe6046656f0b7bb
MD5 da7f8ef8bea2e6d47df12f234fa1ddf9
BLAKE2b-256 f11fcc3e8274934c8323f6106dae22cba8bad413166f4efb3819573de58c215c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d
MD5 9526020d5a21aeda7ce23005d8847a8e
BLAKE2b-256 3352099f0dde1283bac7bf267ab941dfa3b7c89ee701e4252973f8d3c10e68d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b72d0698f86e8d9ddf9442bdedec15b71df3598199ba33322d9711a19f08145c
MD5 55606d8fc585a3391ed30bc037916d1e
BLAKE2b-256 1af7df5814697c25bdebb14ea97d27ddca04f5d4c6e249f096d086fea521c139

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 62.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ab31e908d8424d55601ad7075e471b7d0140d4d3dd3272daf39c5c19d936bd82
MD5 359ec238fdf1fe8838eccf042f804f21
BLAKE2b-256 e81fbe19c9c9cfdcc2ae8ee8c65dbe5f281cc1f3331f9b9523735f39b090b448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.5-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.10

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cb5aaa8c17760909ec6cb15e744c3ebc2ca8918e727216e79607b7bbce9c8f77
MD5 5322964b6774463cd1a41bb463ac78eb
BLAKE2b-256 ceb889cb1809b076a4651169851aa1f98128b75cbfe14034b914c9040b13c4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf
MD5 d66afee14a0f6e54d90af56f243e3475
BLAKE2b-256 e86078906f564804aae23eb1102eca8b8830f1e08a649c179774c05fa7dc0aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086
MD5 ec54e4aa6bce0d5360a032e334593cc0
BLAKE2b-256 72ac2eda5af7cd1450c52d031e48c76b280eac5bb2e588678876612f95be34ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d
MD5 058f9d51bc644ecf64f1f9295e9fd6e7
BLAKE2b-256 ef13c110d89d5079169354394dc226e6f84d818722939bc1fe3f9c25f982e903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56a62ec00b636583e5cb6ad313bbed36bb7ead5fa3a3e38938503142c72cba4f
MD5 10a7702ae8b570298655475c502ed00d
BLAKE2b-256 2bc4f2c8695ae69d1425eddc5e2f849c525b562dc8409bc2979e525f3dd4fecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c05a4a96585525916b109bb85f8cb6511db1c6f5b9d9cbcbc940dc6b4be944b
MD5 2f498b92f9d9eb4d6d3310a90f08edf2
BLAKE2b-256 6257170af6c6fccd2d950ea01e1faa58cae9643226fa8705baded11eca3aa8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f
MD5 956fbcb90fbcef9ce3c8ad034e744868
BLAKE2b-256 625c9c7fed4ca0235a2d7b8d15b4047c328976b97d2b227719e54cad1e47c244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c
MD5 649082303b4c587baaa77653ff5cf920
BLAKE2b-256 c5c11b591574ba71481fbf38359a8fca5108e4ad130a6dbb9b2acb3e9277d0fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 288e32b47e67f7b171f86b030e527e302c91bd3f40fd9033483f2cacc37f327a
MD5 35af4e55c30a6b5a672f83ad18167662
BLAKE2b-256 c23b70d1eaaafb451679663a72164c46fadfb93f59c90f584dcd77289f90e4c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b5ef2f015b95f912c2fcab19c36814963b5463f1fb9049846994b007962743e9
MD5 d3f5d6e3351530a219c6c88859a2ba8c
BLAKE2b-256 343c34e94b091b3fdf941dbce5bc619e2fa5488d49fdf00944b50f5a1d6e1871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36961b0568c36027c76e2ae3ca1132e35123dcec0706c4b7992683cc26c1320c
MD5 d8770aa1bb0b94f6ea8d35802c666e49
BLAKE2b-256 9a0bea8a49d24654f9e8604ea78b80a4d7b0cc31817d8fb6987001223ae7feaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b
MD5 d2d18a0e4cccc0b7b38cac2f135080ed
BLAKE2b-256 60bcaf94acdebc26b8d92d5673d20529438aa225698dc23338fb43c875c8968e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c
MD5 0b30ed54528622f5179ac8b3f5227470
BLAKE2b-256 a2e0f3d5dd7809cf5728bb1bae683032ce50547d009be6551054815a8bf2a2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6
MD5 078615533d01b4c1ecee44ba229f3b51
BLAKE2b-256 45e16408389bd2cf0c339ea317926beb64d100f60bc8d236ac59f1c1162be2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f837b93669ce4336e24d08286c38761132bc7ab29782727f8557e1eb21b2080
MD5 df50ac5e905708a476fefa6c02fa9094
BLAKE2b-256 f580ef9c31210ac580163c0de2db4fb3179c6a3f1228c18fd366280e01d9e5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 366c9a7b9057e1547f4ad51d8facad8b406bab69c7d72c0eb6f529cf76d4b85f
MD5 1c0ef7eea9b54024bca98404527ac8ef
BLAKE2b-256 d3329b7a2dba9485dd7d201e4e00638fbf86e0d535a91653889c5b4dc813efdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2b031c2e9b9af485d5e3c4520f4220d74f4d222a5b8dc8c1a3ab9448ca79c57
MD5 d20e4751252a12681e2bba1ef7006a04
BLAKE2b-256 2bd49165cf113f9b86ce55e36f36bc6cd9e0c5601b0ade02741b2ead8b5dc254

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