Skip to main content

MessagePack serializer

Project description

MessagePack for Python

Build Status Documentation Status

What's this

MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. This package provides CPython bindings for reading and writing MessagePack data.

Very important notes for existing users

PyPI package name

Package name on PyPI was changed from msgpack-python to msgpack from 0.5.

When upgrading from msgpack-0.4 or earlier, do pip uninstall msgpack-python before pip install -U msgpack.

Compatibility with the old format

You can use use_bin_type=False option to pack bytes object into raw type in the old msgpack spec, instead of bin type in new msgpack spec.

You can unpack old msgpack format using raw=True option. It unpacks str (raw) type in msgpack into Python bytes.

See note below for detail.

Major breaking changes in msgpack 1.0

  • Python 2

    • The extension module does not support Python 2 anymore. The pure Python implementation (msgpack.fallback) is used for Python 2.
  • Packer

    • use_bin_type=True by default. bytes are encoded in bin type in msgpack. If you are still using Python 2, you must use unicode for all string types. You can use use_bin_type=False to encode into old msgpack format.
    • encoding option is removed. UTF-8 is used always.
  • Unpacker

    • raw=False by default. It assumes str types are valid UTF-8 string and decode them to Python str (unicode) object.
    • encoding option is removed. You can use raw=True to support old format.
    • Default value of max_buffer_size is changed from 0 to 100 MiB.
    • Default value of strict_map_key is changed to True to avoid hashdos. You need to pass strict_map_key=False if you have data which contain map keys which type is not bytes or str.

Install

$ pip install msgpack

Pure Python implementation

The extension module in msgpack (msgpack._cmsgpack) does not support Python 2 and PyPy.

But msgpack provides a pure Python implementation (msgpack.fallback) for PyPy and Python 2.

Windows

When you can't use a binary distribution, you need to install Visual Studio or Windows SDK on Windows. Without extension, using pure Python implementation on CPython runs slowly.

How to use

NOTE: In examples below, I use raw=False and use_bin_type=True for users using msgpack < 1.0. These options are default from msgpack 1.0 so you can omit them.

One-shot pack & unpack

Use packb for packing and unpackb for unpacking. msgpack provides dumps and loads as an alias for compatibility with json and pickle.

pack and dump packs to a file-like object. unpack and load unpacks from a file-like object.

>>> import msgpack
>>> msgpack.packb([1, 2, 3], use_bin_type=True)
'\x93\x01\x02\x03'
>>> msgpack.unpackb(_, raw=False)
[1, 2, 3]

unpack unpacks msgpack's array to Python's list, but can also unpack to tuple:

>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False, raw=False)
(1, 2, 3)

You should always specify the use_list keyword argument for backward compatibility. See performance issues relating to use_list option_ below.

Read the docstring for other options.

Streaming unpacking

Unpacker is a "streaming unpacker". It unpacks multiple objects from one stream (or from bytes provided through its feed method).

import msgpack
from io import BytesIO

buf = BytesIO()
for i in range(100):
   buf.write(msgpack.packb(i, use_bin_type=True))

buf.seek(0)

unpacker = msgpack.Unpacker(buf, raw=False)
for unpacked in unpacker:
    print(unpacked)

Packing/unpacking of custom data type

It is also possible to pack/unpack custom data types. Here is an example for datetime.datetime.

import datetime
import msgpack

useful_dict = {
    "id": 1,
    "created": datetime.datetime.now(),
}

def decode_datetime(obj):
    if '__datetime__' in obj:
        obj = datetime.datetime.strptime(obj["as_str"], "%Y%m%dT%H:%M:%S.%f")
    return obj

def encode_datetime(obj):
    if isinstance(obj, datetime.datetime):
        return {'__datetime__': True, 'as_str': obj.strftime("%Y%m%dT%H:%M:%S.%f")}
    return obj


packed_dict = msgpack.packb(useful_dict, default=encode_datetime, use_bin_type=True)
this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime, raw=False)

Unpacker's object_hook callback receives a dict; the object_pairs_hook callback may instead be used to receive a list of key-value pairs.

Extended types

It is also possible to pack/unpack custom data types using the ext type.

>>> import msgpack
>>> import array
>>> def default(obj):
...     if isinstance(obj, array.array) and obj.typecode == 'd':
...         return msgpack.ExtType(42, obj.tostring())
...     raise TypeError("Unknown type: %r" % (obj,))
...
>>> def ext_hook(code, data):
...     if code == 42:
...         a = array.array('d')
...         a.fromstring(data)
...         return a
...     return ExtType(code, data)
...
>>> data = array.array('d', [1.2, 3.4])
>>> packed = msgpack.packb(data, default=default, use_bin_type=True)
>>> unpacked = msgpack.unpackb(packed, ext_hook=ext_hook, raw=False)
>>> data == unpacked
True

Advanced unpacking control

As an alternative to iteration, Unpacker objects provide unpack, skip, read_array_header and read_map_header methods. The former two read an entire message from the stream, respectively de-serialising and returning the result, or ignoring it. The latter two methods return the number of elements in the upcoming container, so that each element in an array, or key-value pair in a map, can be unpacked or skipped individually.

Notes

string and binary type

Early versions of msgpack didn't distinguish string and binary types. The type for representing both string and binary types was named raw.

You can pack into and unpack from this old spec using use_bin_type=False and raw=True options.

>>> import msgpack
>>> msgpack.unpackb(msgpack.packb([b'spam', 'eggs'], use_bin_type=False), raw=True)
[b'spam', b'eggs']
>>> msgpack.unpackb(msgpack.packb([b'spam', 'eggs'], use_bin_type=True), raw=False)
[b'spam', 'eggs']

ext type

To use the ext type, pass msgpack.ExtType object to packer.

>>> import msgpack
>>> packed = msgpack.packb(msgpack.ExtType(42, b'xyzzy'))
>>> msgpack.unpackb(packed)
ExtType(code=42, data='xyzzy')

You can use it with default and ext_hook. See below.

Security

To unpacking data received from unreliable source, msgpack provides two security options.

max_buffer_size (default: 100*1024*1024) limits the internal buffer size. It is used to limit the preallocated list size too.

strict_map_key (default: True) limits the type of map keys to bytes and str. While msgpack spec doesn't limit the types of the map keys, there is a risk of the hashdos. If you need to support other types for map keys, use strict_map_key=False.

Performance tips

CPython's GC starts when growing allocated object. This means unpacking may cause useless GC. You can use gc.disable() when unpacking large message.

List is the default sequence type of Python. But tuple is lighter than list. You can use use_list=False while unpacking when performance is important.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

msgpack-1.0.8.tar.gz (167.0 kB view details)

Uploaded Source

Built Distributions

msgpack-1.0.8-cp312-cp312-win_amd64.whl (75.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

msgpack-1.0.8-cp312-cp312-win32.whl (69.3 kB view details)

Uploaded CPython 3.12 Windows x86

msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl (433.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl (401.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (408.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (394.2 kB view details)

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

msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl (85.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl (88.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl (158.9 kB view details)

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

msgpack-1.0.8-cp311-cp311-win_amd64.whl (75.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgpack-1.0.8-cp311-cp311-win32.whl (68.8 kB view details)

Uploaded CPython 3.11 Windows x86

msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl (409.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl (434.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl (404.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (409.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (400.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (397.3 kB view details)

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

msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl (84.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl (88.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl (157.7 kB view details)

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

msgpack-1.0.8-cp310-cp310-win_amd64.whl (75.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.0.8-cp310-cp310-win32.whl (69.0 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl (385.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl (413.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl (380.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (374.3 kB view details)

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

msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl (84.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl (88.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl (157.7 kB view details)

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

msgpack-1.0.8-cp39-cp39-win_amd64.whl (75.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.0.8-cp39-cp39-win32.whl (69.2 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl (413.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl (379.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (373.9 kB view details)

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

msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl (85.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl (88.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl (157.9 kB view details)

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

msgpack-1.0.8-cp38-cp38-win_amd64.whl (75.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.0.8-cp38-cp38-win32.whl (69.2 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl (396.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl (425.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl (391.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (390.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (380.1 kB view details)

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

msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl (87.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl (155.5 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8.tar.gz
Algorithm Hash digest
SHA256 95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3
MD5 6f4d91b00537fd5069dc6bfc52ae5652
BLAKE2b-256 084c17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd
MD5 24e5bee1cfab27e0f9dd08a9c2120793
BLAKE2b-256 725c5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 69.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c
MD5 4a6282faa1bcd16dcd5448ac06ce4144
BLAKE2b-256 8f59db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543
MD5 0a2665ae3cb82fb3322e91a15b1b79c8
BLAKE2b-256 cb46f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04
MD5 33d1b6c0e5506558563cb0b095945c9f
BLAKE2b-256 0379ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f
MD5 9a5bf05a204232a754c1d0e9031ba77a
BLAKE2b-256 98e10d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc
MD5 53ac550fa4591dda02d2e6775f8c4d9f
BLAKE2b-256 042ac833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3
MD5 f11bbe3637b3d347556ab4ec951c5c30
BLAKE2b-256 54f784828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58
MD5 2d8d859ef5baf9a3cecff49762a87de5
BLAKE2b-256 0450b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8
MD5 1fa99ca8c4dbbdec9e84cad7874aa454
BLAKE2b-256 993e49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b
MD5 edc13dda89b7ef617d91e9ade070cf73
BLAKE2b-256 11df558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee
MD5 e49ebf3a272aefc885c63ffc9ef019c3
BLAKE2b-256 9773757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e
MD5 c0b48f512eb16f6d0b6afa6145052a2f
BLAKE2b-256 33e9f450b8e1243704c0ab656dcd37f6146881d11bbb68588132d8ae673c455b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305
MD5 7d6049b5d58444c4c7477a0ad734bf0f
BLAKE2b-256 c6d646eec1866b1ff58001a4be192ec43675620392de078fd4baf394f7d03552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce
MD5 1bd028e7c4b26142698ffce4ae7076e5
BLAKE2b-256 dd06adb6c8cdea18f9ba09b7dc1442b50ce222858ae4a85703420349784429d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b
MD5 33fe453fa7a9c0598771d78cbcf5fd3b
BLAKE2b-256 e03f978df03be94c2198be22df5d6e31b69ef7a9759c6cc0cce4ed1d08e2b27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a
MD5 0dd7a46120e6a9f20ecb629405a64a45
BLAKE2b-256 437c82b729d105dae9f8be500228fdd8cfc1f918a18e285afcbf6d6915146037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85
MD5 0d3b31bd65a4a882374384df9ce866bb
BLAKE2b-256 f6f0a7bdb48223cd21b9abed814b08fca8fe6a40931e70ec97c24d2f15d68ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba
MD5 0a876d1fe0d611c7b2b434215f3f3eb5
BLAKE2b-256 1a0101a88f7971c68037dab4be2737b50e00557bbdaf179ab988803c736043ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950
MD5 6e44fea7b57f04ec168bfbb55291b0f7
BLAKE2b-256 f59a88388f7960930a7dc0bbcde3d1db1bd543c9645483f3172c64853f4cab67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b
MD5 8faa0657cd72de8ca892cfebae9eddc0
BLAKE2b-256 17297f3f30dd40bf1c2599350099645d3664b3aadb803583cbfce57a28047c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad
MD5 37cf244e87081f596ab7acb7e7fad073
BLAKE2b-256 46ca96051d40050cd17bf054996662dbf8900da9995fa0a3308f2597a47bedad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836
MD5 2ee4121a342edf3c0f4e119f107c022a
BLAKE2b-256 3e0e96477b0448c593cc5c679e855c7bb58bb6543a065760e67cad0c3f90deb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a
MD5 6f8e845809a39421df0eaa73edfa1e71
BLAKE2b-256 2147b7217d54e15dbae5492b845364427fa3cb1b0ccb58160b04ba47b551d7d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693
MD5 0719ac6251c6fe75dc1355814135fa45
BLAKE2b-256 98b4a32559cd8604402f55560ab7e5ebf20a92b533f376d693bb67a9c0aff41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653
MD5 724162796586e9cba01b7c7d7bcad570
BLAKE2b-256 b0a829426f7af85406116e1cdbd21d8f02e30ef8f4afe3cfcbb43c498cbadadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d
MD5 4404789d012624e28e8bd805b4a8fb67
BLAKE2b-256 7c40c6f31cef899b54e3f6a759204d0b152c9205aef7219c9d2279f608c421eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128
MD5 78b0ae84a1139d773ef9ad2d98a1125f
BLAKE2b-256 f075553cc9ddfe59c62654dd398c16cd8ab1b3eeb145e56805f52115cbe9f5a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982
MD5 19d9e20bd8a15a5f699f0aedfa4392b9
BLAKE2b-256 d996a1868dd8997d65732476dfc70fef44d046c1b4dbe36ec1481ab744d87775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2
MD5 f944389cafd9d2db06b52a90493b7548
BLAKE2b-256 2b6e3dcd4f7d8b978277393fd5b7c0abd9d2b6ef7ba8eb12834bed59158ecf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa
MD5 b799ebd69f03c647b63556c1b69cf9fc
BLAKE2b-256 9bdb8d629233bba3cbe6d7a6e0fd018ed684c5f0befea4428d4217ce066d2f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659
MD5 874e76353d6fac40bb05072823ad9317
BLAKE2b-256 ba13d000e53b067aee19d57a4f26d5bffed7890e6896538ac5f97605b0f64985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c
MD5 86c8a35d70f41b08a1e9ebcd0f9a31c7
BLAKE2b-256 0d7e93373ffbe6561e719996a90b6d112604f52da3ab46e7c395db7607458553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868
MD5 647cf78a85296f8b11024e46ceede364
BLAKE2b-256 b3c28ecbafd6d3178ad408989c82d6d518fec76e053bae20c0fd9f47bffe7dda

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011
MD5 15698675f5ab4ca744c2413006b695ff
BLAKE2b-256 c8035ded16a0da44662b131af259fb2f95cd9b11a5850e57d290a5341b16d9ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d
MD5 7fdbcd9f45c7f364899903bc94191d07
BLAKE2b-256 aaefbde2160092b87c76e3733b94bb4fba5fbd7937173a9d4a4bf0f78c246cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273
MD5 2d4817c5b1006a3e2c156969c2b23854
BLAKE2b-256 ff211b3545b88fe47526925b37217729036df4088340cad6e665609cb36ba84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746
MD5 49c512f11ba47f4268d7df21765a4afd
BLAKE2b-256 567a2a9b40ca2d9ff8f9b5628b15b820676d830b006cff6ca6b3bdffbafd2142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8
MD5 1b7650b7353e421f3e6e7e85bc6165b6
BLAKE2b-256 39e2cac717fd842a6d0d321b2f34add877033aede4f2e6321d93799ab68c6aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228
MD5 0a05bb9ac0b6c52f6c78d186ed9138e9
BLAKE2b-256 09b1d80b0a71ac05655f73146492601e91b1dbb7eb0d95d8261bec1c981e8a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f
MD5 05fc0eb71cc1fe97bbc5efe69846fbb9
BLAKE2b-256 ad61225d64e983e51f960cac41fd1084188764fcc7430e75f609ad9d86e47839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18
MD5 f976cbcf089259ffa0531e5032055329
BLAKE2b-256 20404eb8e9dc0e949bf22e5bcd74d16996ad61eb87220a1d719d6badd169be1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d
MD5 6e90cf144dfb987d532dcfa41faa6dc8
BLAKE2b-256 42fa9379d11dd1b83570b2e9dc0d7c7e45aec2fb99d80540170f82d79f83132a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596
MD5 2ed6f4b0754087871acbc2bbd6ae83a6
BLAKE2b-256 7ac7c95fe31dd0d7bf49fd3590df8e0089a8b9b18222909439d68dcc7973fd13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a
MD5 d0a7ec0284f6d7856baa1980f8c3825a
BLAKE2b-256 762fa06b5ca0ba80aeb5f0b50449fb57a55c2c70bc495f2569442c743ed8478d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480
MD5 d94f918eba38a3cbdaecfc46a9fb7112
BLAKE2b-256 39fb57d60f7423da9a25aa910fe498cfe095ca1d006777a1737928d01897ce70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: msgpack-1.0.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 69.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c
MD5 36dbec156aeae2524ca03e33a9b6e689
BLAKE2b-256 73fbf10346acbe8950b20bb5de22a3630090aee6771f4c3ca502003747d0090b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a
MD5 4ac074bb095269b4302cfd1d472c38dd
BLAKE2b-256 79d2e0a6583f4f8cc7c2768ae3fec386eb0ca19cdbea296eb6d1201f275a638a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2
MD5 b06e2a4058f362cd9e62f7d379efddd2
BLAKE2b-256 608c6f32030ad034212deb6b679280d908c49fc8aac3dd604c33c9ad0ccb97a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13
MD5 031f122ff705beb745edb76366d5c0de
BLAKE2b-256 5633465f6feaca727ccc898e2a73e27af942febe9c8cfc726972bcf70ab059e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db
MD5 9c40a52794d21807ec09bf2ed830c0af
BLAKE2b-256 d69b108d7447e612fcdb3a7ed957e59b912a8d2fc4cab7198cad976b30be94a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d
MD5 5f00280ff1e1619ce8f901efb3a1008c
BLAKE2b-256 8faae637d1212560c905b97ddd1dbe1cb35b320cd15c6200f5d29acea571c708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77
MD5 5abdbd9487651dae91e3d4789f60b6e5
BLAKE2b-256 2787e303ebcfb1b14d4ed272b3aa54228d8d5b5caa3cea7b6ff6843a76d5affd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24
MD5 668988ca7e7260fa72cc216de883a02b
BLAKE2b-256 50eeb749822f36f448b7edb5e6081cdba529fc0ef9e442d5632a05602f7a8274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151
MD5 844c5637f0a5926778871ac9bf0cecf1
BLAKE2b-256 ec218fb3fb9693413afc9bc0c3b796e17f9d6e7e77e9c88d34e19fd433c5486c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40
MD5 3ff45a6516f99e3a483887f7e13e26d3
BLAKE2b-256 a930815bbd025ede86f9ac5b04d9f96480386227e35a6d438cbb95e02a31dc9e

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