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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

msgpack-1.0.4-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.4-cp310-cp310-musllinux_1_1_i686.whl (348.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.4-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.4-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.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (311.5 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.4-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.4-cp39-cp39-win_amd64.whl (62.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

msgpack-1.0.4-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.4-cp39-cp39-musllinux_1_1_i686.whl (352.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.4-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.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (69.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.4-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.4-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.4-cp38-cp38-win_amd64.whl (62.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

msgpack-1.0.4-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.4-cp38-cp38-musllinux_1_1_i686.whl (361.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.4-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.4-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.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (315.6 kB view details)

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.4-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.4-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.4-cp37-cp37m-win_amd64.whl (61.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

msgpack-1.0.4-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.4-cp37-cp37m-musllinux_1_1_i686.whl (334.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

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

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

msgpack-1.0.4-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.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (293.3 kB view details)

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

msgpack-1.0.4-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.4-cp36-cp36m-win_amd64.whl (69.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

msgpack-1.0.4-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.4-cp36-cp36m-musllinux_1_1_i686.whl (334.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

msgpack-1.0.4-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.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

msgpack-1.0.4-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.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for msgpack-1.0.4.tar.gz
Algorithm Hash digest
SHA256 f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f
MD5 1822cdb939e7531f7ad0f7f09b434f22
BLAKE2b-256 22440829b19ac243211d1d2bd759999aa92196c546518b0be91de9cacc98122a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 61.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4dea20515f660aa6b7e964433b1808d098dcfcabbebeaaad240d11f909298075
MD5 7493d94369f5cf2c7dafd4d2cf41339f
BLAKE2b-256 ef3ff20ed47d3a356a556edbd8f9d0515a5a111ffde1e24213a64da948d823a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-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.13

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0dfe3947db5fb9ce52aaea6ca28112a170db9eae75adf9339a1aec434dc954ef
MD5 61c2564cb6e037a5d2717a16f8f7ccc0
BLAKE2b-256 7619c84285eacc20a7161962a7a15944364a8310dd7840c3aa57d87c7bb4f6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aca0f1644d6b5a73eb3e74d4d64d5d8c6c3d577e753a04c9e9c87d07692c58db
MD5 19fe69d7868b4307a51e8cb995572f39
BLAKE2b-256 29e3c596dbeac35a2e14282d95b71851de8fac2ff4ad6cb7e87b1eea04396985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49565b0e3d7896d9ea71d9095df15b7f75a035c49be733051c34762ca95bbf7e
MD5 f6404abf7ad8862fbedae7c0967718c7
BLAKE2b-256 6c99decc145948ac7ecb97ae58eed39e827a289bb8d1e4b471bff158af3bd9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c23080fdeec4716aede32b4e0ef7e213c7b1093eede9ee010949f2a418ced6ba
MD5 fa1d4c10009ae53c3803afebd1ce4867
BLAKE2b-256 70746cfcf4c52e5d69fa2e5e0fc66005db28f1ae613271cfd1c0b4b7ab309553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4733359808c56d5d7756628736061c432ded018e7a1dff2d35a02439043321aa
MD5 9faa8868caff63086d91294c620b3622
BLAKE2b-256 ea18ef2e84d4ac07262b6ce2ff52cf4f6c97d95b4702a1acbc0da34fdc7701d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35bc0faa494b0f1d851fd29129b2575b2e26d41d177caacd4206d81502d4c6a6
MD5 d8b1ef38bfd3609bfa85d2fb2304fe91
BLAKE2b-256 dc16a8b2de141c4fc536627560b9d3139a6f73bdb2cb5d32ec08a0d875b1210a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb514ad14edf07a1dbe63761fd30f89ae79b42625731e1ccf5e1f1092950eaa6
MD5 f58bd50f3792dd8b6494db5d0b58bc80
BLAKE2b-256 4e777a9ec1887d62c16dd2d9d21bf8184af535d1371d75751415871f70f373f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 002b5c72b6cd9b4bafd790f364b8480e859b4712e91f43014fe01e4f957b8467
MD5 f7dc90f90a8237d8f03d8fa7dd6b52df
BLAKE2b-256 bb99f4d7081da13af22efb547f305ea563f41d43dbaa1637136bbfd6ee9b2b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 112b0f93202d7c0fef0b7810d465fde23c746a2d482e1e2de2aafd2ce1492c88
MD5 75c9f34a3d672ce0e1a0cf7452793f6f
BLAKE2b-256 91d2c6aa033ca5ffd635561d53535af20ac1565b0ea3c1506d12f9a8fdad79af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250
MD5 bb6238902e5b3530d6c7566b370675cc
BLAKE2b-256 83692f442b38fbba1cedc88bfce381b67d78b59145471a3c9581ec9417a8625b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 62.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4d5834a2a48965a349da1c5a79760d94a1a0172fbb5ab6b5b33cbf8447e109ce
MD5 796065fcf55d54a15ad68b51687ce73d
BLAKE2b-256 77a267e5313ea20bd609fbdca6d773b7fe942f30196a467bb8b564dbf9d713c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-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.0 CPython/3.9.13

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb62ea4b62bfcb0b380d5680f9a4b3f9a2d166d9394e9bbd9666c0ee09a3645c
MD5 a3d0b8237322051d0868e0f8e57faf47
BLAKE2b-256 9a0d747810476d72831c11132cf1421e71f8de7504e1dd93b39ae14e15f4444f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63e29d6e8c9ca22b21846234913c3466b7e4ee6e422f205a2988083de3b08cae
MD5 4c58705f907fdf6f0b3d442c36cedbbe
BLAKE2b-256 449ab432d6cf0b099c005c108bbf5a431a9b704d2cf365c2a93fd6738a352374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1576bd97527a93c44fa856770197dec00d223b0b9f36ef03f65bac60197cedf8
MD5 e7ea86a5574a7be2b4486dc43f41c664
BLAKE2b-256 3a7811b0c5fa262b585b701aa69b996ce1527ded816c29de40498e4ec6604dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0e3590f9fb9f7fbc36df366267870e77269c03172d086fa76bb4eba8b2b46624
MD5 d94ff5b55aa595a593e307d9a2223de5
BLAKE2b-256 9351df0fba79de02ca61c5a45a7774346ec9e5c58b7adaa0481e6287aed707ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0df96d6eaf45ceca04b3f3b4b111b86b33785683d682c655063ef8057d61fd92
MD5 8317d5f84edbe185556ee25a323cbf1b
BLAKE2b-256 5f0203e2d072744a29af7c5bc17d37f55446965205d80c61f0e6590ad2b2bb34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed6f7b854a823ea44cf94919ba3f727e230da29feb4a99711433f25800cf747f
MD5 1e54a55f4a232add16e5fcb29b9feeb1
BLAKE2b-256 beb728d8b70d44a953dbef8eb38287ab372590134964b069960b275de23cb617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a4192b1ab40f8dca3f2877b70e63799d95c62c068c84dc028b40a6cb03ccd0f
MD5 7588dfe3ad554cca3bd67cb55e9db1a1
BLAKE2b-256 266ffea3b1c442c5f6c13932aa09a4b37d81b6006823b6b6c3530199b48ffee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0029245c51fd9473dc1aede1160b0a29f4a912e6b1dd353fa6d317085b219da
MD5 af068c083bfffc3f4a9b63fe85eef228
BLAKE2b-256 c1b33079c4d4eac3a35100d2fcb6b349c5a412712e5162230edb0ba94682da51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2999623886c5c02deefe156e8f869c3b0aaeba14bfc50aa2486a0415178fce55
MD5 cc48e43a56b64d5e7f985122f026a098
BLAKE2b-256 e83a480dec4eea56cd0872d37824d79a4a691bb4594adf490a6f838ca45f4bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 462497af5fd4e0edbb1559c352ad84f6c577ffbbb708566a0abaaa84acd9f3ae
MD5 0adbd28313414b64a420aac3c9962ac4
BLAKE2b-256 9f2651050b20bbac23ff34f532ae4a0e53e2dae32139e143e017b08dfd32e5e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 26b8feaca40a90cbe031b03d82b2898bf560027160d3eae1423f4a67654ec5d6
MD5 802ecabfbf24c276a658ccc14d474fb6
BLAKE2b-256 45799d51bf36ab55059f8e96b13161d5867bb4bb359b03e82f240f64898d3ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-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.13

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2bb8cdf50dd623392fa75525cce44a65a12a00c98e1e37bf0fb08ddce2ff60d2
MD5 5e53fa7a8b7fc51afeaa038b5b29bb8a
BLAKE2b-256 278beae8183c3a452b497b3d8523fc019d6c220e517fb9021f84e5e2f2dd1085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b17be2478b622939e39b816e0aa8242611cc8d3583d1cd8ec31b249f04623243
MD5 fb71d93952a81382dbb46fb55e1772fe
BLAKE2b-256 0b2bfd152d4a63dee8cee780efeec7b2679f6de6433ff2c9786ee1b4849aaf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 77ccd2af37f3db0ea59fb280fa2165bf1b096510ba9fe0cc2bf8fa92a22fdb43
MD5 adabb5b47f629b97dec0b7bc32ef23a2
BLAKE2b-256 4b495db0a9d7dd5c02041a2feade0848a770624c8c847fa01fa974625b3fc233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5b5b962221fa2c5d3a7f8133f9abffc114fe218eb4365e40f17732ade576c8e
MD5 f2ee01297cdbdc4d4bf21b440512e480
BLAKE2b-256 7ffcb2ad599613c448a9c9b8d86e59612dbd36e5debef6c18dbb5dd930c9442c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6916c78f33602ecf0509cc40379271ba0f9ab572b066bd4bdafd7434dee4bc6e
MD5 7c52951c3562cc2f0e4508f4cc05ba7b
BLAKE2b-256 ad07f20fd312f7b0c698d1ed49f1780aedb7dee8e3127663b4de0e20c0b016f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48f5d88c99f64c456413d74a975bd605a9b0526293218a3b77220a2c15458ba9
MD5 023ffe0238a02a7885d28b503a11ebd6
BLAKE2b-256 dc83654d85d318cccabcc82d03fab9b2f5a3706278bf6242d6daefbb3d29ca2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81fc7ba725464651190b196f3cd848e8553d4d510114a954681fd0b9c479d7e1
MD5 b6feef97b890e3d9d953c828f58b3185
BLAKE2b-256 ecff92af8194c12fc46da6dd56e4e22bdb7bdd297c451bd76183b0ec496196ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d603de2b8d2ea3f3bcb2efe286849aa7a81531abc52d8454da12f46235092bcb
MD5 80234bcf46f8428783d3e1c36fcd0898
BLAKE2b-256 a4e2ca6c95d06e68e499208976b0513da3d41e0049f21663f869889a065ba442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 449e57cc1ff18d3b444eb554e44613cffcccb32805d16726a5494038c3b93dab
MD5 a6f61cf480cc94c52f102b37306c8d36
BLAKE2b-256 019c26a337b8d4a7cb5b1058bec7f187936bf749e78cd519c497e845e965d2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7760f85956c415578c17edb39eed99f9181a48375b0d4a94076d84148cf67b2d
MD5 48b279cb2e4e9148d17391db8bf3487c
BLAKE2b-256 5ef705760eb8fd1ee1d8080f42b95c268629f13239c9b675063b27213631d604

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eba96145051ccec0ec86611fe9cf693ce55f2a3ce89c06ed307de0e085730ec1
MD5 41047f5559b7761564cf8625ed28180d
BLAKE2b-256 0546633f2a31bf0e6e5530993bc8c8230d165323bd372eb50b8c9f74ca04fc68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2cc5ca2712ac0003bcb625c96368fd08a0f86bbc1a5578802512d87bc592fe44
MD5 6f0d344aebc43fcf2ffc96ab85686f30
BLAKE2b-256 4dde3e745e0f358dd55bd540a220657e2a3bc2c7c88f0d2528e630649c523991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 545e3cf0cf74f3e48b470f68ed19551ae6f9722814ea969305794645da091236
MD5 ae604d8e72672c2907aee724401dc80e
BLAKE2b-256 f4f8225ca22971690c8b530a2f5344e8cf4d13d601c3817eded87ecbb3e644b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2a2df1b55a78eb5f5b7d2a4bb221cd8363913830145fad05374a80bf0877cb1e
MD5 1e693166ba6396522d190d17c3e95521
BLAKE2b-256 39b151731fcf638bc5d8b842c0b1905c72ff1207841571f4d5db32d1d8afb814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1e91d641d2bfe91ba4c52039adc5bccf27c335356055825c7f88742c8bb900dd
MD5 a7c7302b1c2664a4c18a0e0bbc8ace7e
BLAKE2b-256 056789809468cd7e4e6dbc29c3c15a65e1e9582f9ef391b794039996ce7a136e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11184bc7e56fd74c00ead4f9cc9a3091d62ecb96e97653add7a879a14b003227
MD5 e253166956a8bfebe541aba17e65bd54
BLAKE2b-256 d4d518808999054f3c633bf3ff808a652b329a26083dea6bd2386e2aec4ffee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9667bdfdf523c40d2511f0e98a6c9d3603be6b371ae9a238b7ef2dc4e7a427b0
MD5 b131de93d125d0e4d34b4c2f60f27fa3
BLAKE2b-256 1028bf6b683f594f7172f13dfb8a3416ce4d1beaf198f14197d138abf1254d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac5bd7901487c4a1dd51a8c58f2632b15d838d07ceedaa5e4c080f7190925bff
MD5 d11a0deffd656897a79af8977b0ccb3c
BLAKE2b-256 09ea7db5df39aa59e25c1a14471dd5215981083f231f42a77b7ae1ee0ec99649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a75dfb03f8b06f4ab093dafe3ddcc2d633259e6c3f74bb1b01996f5d8aa5868c
MD5 4ea04bcf4f084ef4db5d41dbf3bdb267
BLAKE2b-256 a6655b283e66b89d3b41f1b30fd42da70a609b5432b764f5cd6fed23d3b4699b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c1683841cd4fa45ac427c18854c3ec3cd9b681694caf5bff04edb9387602d661
MD5 b7bb83b9e0d0a81946f22f21a5c0c32b
BLAKE2b-256 c87b0a2a88e0ee407df88fb60acd68a36aa0c2149bcc54f874244da75b37b383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.4-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.13

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 85f279d88d8e833ec015650fd15ae5eddce0791e1e8a59165318f371158efec6
MD5 1b84991baaa29703dc0afcd4c4ea23b5
BLAKE2b-256 1dc653563375f1be57a6fac26bc50743ef9811fbd75cefd1f23c714b7ed357dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a68d3ac0104e2d3510de90a1091720157c319ceeb90d74f7b5295a6bee51bae
MD5 a56a2d42d1163286b7fab283ca46a01d
BLAKE2b-256 71156fb5c834fab52a12cab92036f2138aa1a5c5fd55d5a17c26741de0c02cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 76ee788122de3a68a02ed6f3a16bbcd97bc7c2e39bd4d94be2f1821e7c4a64e6
MD5 90eb229e746b10b891befddb2537b317
BLAKE2b-256 3daa1778b6d209921ba399fe1f259806348dec6239d470e0b895022c12b1b399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fcb8a47f43acc113e24e910399376f7277cf8508b27e5b88499f053de6b115a8
MD5 a12fbee034a0d68a94f137e866092876
BLAKE2b-256 516ae1a3bbe7dff8032fdf41a78bb7e9a3fb86b053a9897c61f93c00187ec6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1276e8f34e139aeff1c77a3cefb295598b504ac5314d32c8c3d54d24fadb94c9
MD5 531368d1f5c7c64faf743fcb9b58717c
BLAKE2b-256 3d2cfcd9d62ae5a3b0bbb931803591f8612f008c73015846650cee01d4f47d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c11a48cf5e59026ad7cb0dc29e29a01b5a66a3e333dc11c04f7e991fc5510a9
MD5 438c92fba63c86cd34f63f2aac62802a
BLAKE2b-256 b105504f5564e8c01d37ff672ee2b47ff258503df31ed4ac59cb26cb2bb72fdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c9566f2c39ccced0a38d37c26cc3570983b97833c365a6044edef3574a00c08
MD5 d415c8ec5c685f224a2747f0c043c89b
BLAKE2b-256 61da974ffe02a4d16d704efd3a7b36126782544f7abf7d506b4209ddaa3bd987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e83f80a7fec1a62cf4e6c9a660e39c7f878f603737a0cdac8c13131d11d97f52
MD5 1f44cb17b72e48e79ac7b5fc12cbe5df
BLAKE2b-256 ddfcd21b74be6671bada90129696db21703016214aaa47bd9a5dcdc928e7f1b6

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