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

Uploaded Source

Built Distributions

msgpack-1.0.7-cp312-cp312-win_amd64.whl (223.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

msgpack-1.0.7-cp312-cp312-win32.whl (216.5 kB view details)

Uploaded CPython 3.12 Windows x86

msgpack-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl (556.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

msgpack-1.0.7-cp312-cp312-musllinux_1_1_i686.whl (579.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

msgpack-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl (546.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

msgpack-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (559.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

msgpack-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

msgpack-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (543.9 kB view details)

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

msgpack-1.0.7-cp312-cp312-macosx_11_0_arm64.whl (232.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

msgpack-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl (235.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

msgpack-1.0.7-cp312-cp312-macosx_10_9_universal2.whl (305.8 kB view details)

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

msgpack-1.0.7-cp311-cp311-win_amd64.whl (222.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgpack-1.0.7-cp311-cp311-win32.whl (216.4 kB view details)

Uploaded CPython 3.11 Windows x86

msgpack-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgpack-1.0.7-cp311-cp311-musllinux_1_1_i686.whl (583.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

msgpack-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl (554.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgpack-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (545.5 kB view details)

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

msgpack-1.0.7-cp311-cp311-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgpack-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl (235.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgpack-1.0.7-cp311-cp311-macosx_10_9_universal2.whl (305.1 kB view details)

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

msgpack-1.0.7-cp310-cp310-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.0.7-cp310-cp310-win32.whl (216.3 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl (532.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.0.7-cp310-cp310-musllinux_1_1_i686.whl (560.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl (527.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (520.4 kB view details)

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

msgpack-1.0.7-cp310-cp310-macosx_11_0_arm64.whl (232.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl (235.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.0.7-cp310-cp310-macosx_10_9_universal2.whl (304.8 kB view details)

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

msgpack-1.0.7-cp39-cp39-win_amd64.whl (222.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.0.7-cp39-cp39-win32.whl (216.5 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.0.7-cp39-cp39-musllinux_1_1_i686.whl (560.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl (525.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (521.4 kB view details)

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

msgpack-1.0.7-cp39-cp39-macosx_11_0_arm64.whl (232.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl (235.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.0.7-cp39-cp39-macosx_10_9_universal2.whl (305.0 kB view details)

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

msgpack-1.0.7-cp38-cp38-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.0.7-cp38-cp38-win32.whl (216.5 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl (542.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.0.7-cp38-cp38-musllinux_1_1_i686.whl (571.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl (536.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (524.3 kB view details)

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

msgpack-1.0.7-cp38-cp38-macosx_11_0_arm64.whl (231.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl (234.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.0.7-cp38-cp38-macosx_10_9_universal2.whl (303.5 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7.tar.gz
Algorithm Hash digest
SHA256 572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87
MD5 a5a4172b2e89812ec28267dd8942b77d
BLAKE2b-256 c2d55662032db1571110b5b51647aed4b56dfbd01bfae789fa566a2be1f385d1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7687e22a31e976a0e7fc99c2f4d11ca45eff652a81eb8c8085e9609298916dcf
MD5 77d533e11e2fd5ecc4652a5c5b6229e1
BLAKE2b-256 dcc163903f30d51d165e132e5221a2a4a1bbfab7508b68131c871d70bffac78a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27dcd6f46a21c18fa5e5deed92a43d4554e3df8d8ca5a47bf0615d6a5f39dbc9
MD5 13dccae568cdc7382ecd45caf5587a1e
BLAKE2b-256 5e446556ffe169bf2c0e974e2ea25fb82a7e55ebcf52a81b03a5e01820de5f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e45ae4927759289c30ccba8d9fdce62bb414977ba158286b5ddaf8df2cddb5c5
MD5 441894c4d5fff99ede7d24aa2f77dd51
BLAKE2b-256 5d4dd98592099d4f18945f89cf3e634dc0cb128bb33b1b93f85a84173d35e181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52700dc63a4676669b341ba33520f4d6e43d3ca58d422e22ba66d1736b0a6e4c
MD5 6d03ee5bd78a071d6763d7c576c76565
BLAKE2b-256 786191bae9474def032f6c333d62889bbeda9e1554c6b123375ceeb1767efd78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 993584fc821c58d5993521bfdcd31a4adf025c7d745bbd4d12ccfecf695af5ba
MD5 aae3fae9389614e0626ba48359d5dd93
BLAKE2b-256 9c7edc0dc8de2bf27743b31691149258f9b1bd4bf3c44c105df3df9b97081cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e2d69948e4132813b8d1131f29f9101bc2c915f26089a6d632001a5c1349672
MD5 c9cda9258ec07eac7c96bf2d72d6aab0
BLAKE2b-256 e50ac6a1390f9c6a31da0fecbbfdb86b1cb39ad302d9e24f9cca3d9e14c364f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebbbba226f0a108a7366bf4b59bf0f30a12fd5e75100c630267d94d7f0ad20e5
MD5 8445c68d58c6dacf64ab14bcf58de17d
BLAKE2b-256 89751ed3a96e12941873fd957e016cc40c0c178861a872bd45e75b9a188eb422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdf38ba2d393c7911ae989c3bbba510ebbcdf4ecbdbfec36272abe350c454075
MD5 63b2e518beb193de7d9f4c744b1a3ea6
BLAKE2b-256 a57499f6077754665613ea1f37b3d91c10129f6976b7721ab4d0973023808e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b291f0ee7961a597cbbcc77709374087fa2a9afe7bdb6a40dbbd9b127e79afee
MD5 b3b16f44a3f2f814e35ae8afdba49e20
BLAKE2b-256 9cf6e64c72577d6953789c3cb051b059a4b56317056b3c65013952338ed8a34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98bbd754a422a0b123c66a4c341de0474cad4a5c10c164ceed6ea090f3563db4
MD5 99e17dc3da58f8750f2f1ae091f4f078
BLAKE2b-256 6f8a34f1726d2c9feccec3d946776e9bce8f20ae09d8b91899fc20b296c942af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f0936e08e0003f66bfd97e74ee530427707297b0d0361247e9b4f59ab78ddc8b
MD5 d82139df2bb39096ae5bb327e2fcf29d
BLAKE2b-256 d74720dff6b4512cf3575550c8801bc53fe7d540f4efef9c5c37af51760fcdcf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f0c8c6dfa6605ab8ff0611995ee30d4f9fcff89966cf562733b4008a3d60d82
MD5 0f0174ac001e8337d1795d30ac45ed4f
BLAKE2b-256 b43dc8dd23050eefa3d9b9c5b8329ed3308c2f2f80f65825e9ea4b7fa621cdab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e7bf4442b310ff154b7bb9d81eb2c016b7d597e364f97d72b1acc3817a0fdc1
MD5 f761141d3edd5223f0aaf532d1192689
BLAKE2b-256 cf7b1bc69d4a56c8d2f4f2dfbe4722d40344af9a85b6fb3b09cfb350ba6a42f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec79ff6159dffcc30853b2ad612ed572af86c92b5168aa3fc01a67b0fa40665e
MD5 7f39b3d510f4d848ec352ce9926cd487
BLAKE2b-256 4cbcdc184d943692671149848438fb3bed3a3de288ce7998cb91bc98f40f201b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 84b0daf226913133f899ea9b30618722d45feffa67e4fe867b0b5ae83a34060c
MD5 c7dd64feb1395297850cfe440ff0570b
BLAKE2b-256 f53f9730c6cb574b15d349b80cd8523a7df4b82058528339f952ea1c32ac8a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f9a7c509542db4eceed3dcf21ee5267ab565a83555c9b88a8109dcecc4709002
MD5 4f6766c14b1a8151dd1473249e46c49d
BLAKE2b-256 d453698c10913947f97f6fe7faad86a34e6aa1b66cea2df6f99105856bd346d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d4c80667de2e36970ebf74f42d1088cc9ee7ef5f4e8c35eee1b40eafd33ca5b
MD5 1bebdf9b5497d8602fe9a49131321daa
BLAKE2b-256 df09dee50913ba5cc047f7fd7162f09453a676e7935c84b3bf3a398e12108677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3476fae43db72bd11f29a5147ae2f3cb22e2f1a91d575ef130d2bf49afd21c46
MD5 f0b1172893c178ccdc2bf06df4c2612d
BLAKE2b-256 6d74bd02044eb628c7361ad2bd8c1a6147af5c6c2bbceb77b3b1da20f4a8a9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b0bf0effb196ed76b7ad883848143427a73c355ae8e569fa538365064188b8e
MD5 b3924cc1815c832e38b4d34fbd61bb1b
BLAKE2b-256 26a578a7d87f5f8ffe4c32167afa15d4957db649bab4822f909d8d765339bbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85765fdf4b27eb5086f05ac0491090fc76f4f2b28e09d9350c31aac25a5aaff8
MD5 31773d46dde7d45cc75593fe6f111633
BLAKE2b-256 f54e1ab4a982cbd90f988e49f849fc1212f2c04a59870c59daabf8950617e2aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 730076207cb816138cf1af7f7237b208340a2c5e749707457d70705715c93b93
MD5 0d2450f72ef72f7ed45ecb6791c5c823
BLAKE2b-256 1556a677cd761a2cefb2e3ffe7e684633294dccb161d78e8ea6da9277e45b4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 576eb384292b139821c41995523654ad82d1916da6a60cff129c715a6223ea84
MD5 2ed9dfe584340ea5ffece8285ebb82c6
BLAKE2b-256 f9b3309de40dc7406b7f3492332c5ee2b492a593c2a9bb97ea48ebf2f5279999

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a40821a89dc373d6427e2b44b572efc36a2778d3f543299e2f24eb1a5de65415
MD5 c87595dd6e8e5a7612e97fcd4a5a5d0d
BLAKE2b-256 4b14c62fbc8dff118f1558e43b9469d56a1f37bbb35febadc3163efaedd01500

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b610ff0f24e9f11c9ae653c67ff8cc03c075131401b3e5ef4b82570d1728f8a9
MD5 e47b6f18b232cf29a2e4ef0667a8bc4d
BLAKE2b-256 9b070b3f089684ca330602b2994248eda2898a7232e4b63882b9271164ef672e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb70766519500281815dfd7a87d3a178acf7ce95390544b8c90587d76b227681
MD5 fefdc77871bce6586155726ef13b9cfc
BLAKE2b-256 de4ea0e8611f94bac32d2c1c4ad05bb1c0ae61132e3398e0b44a93e6d7830968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ccf9a39706b604d884d2cb1e27fe973bc55f2890c52f38df742bc1d79ab9f5e1
MD5 2527a078e6a12993dcfdbcf32b64295c
BLAKE2b-256 0cac66625b05091b97ca2c7418eb2d2af152f033d969519f9315556a4ed800fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b573a43ef7c368ba4ea06050a957c2a7550f729c31f11dd616d2ac4aba99888d
MD5 0b5cb51d2d829ff087d165af22f7771c
BLAKE2b-256 afd1abbdd58a43827fbec5d98427a7a535c620890289b9d927154465313d6967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28efb066cde83c479dfe5a48141a53bc7e5f13f785b92ddde336c716663039ee
MD5 40007a256f6c4733867a997bd3c4c08d
BLAKE2b-256 4695d0440400485eab1bf50f1efe5118967b539f3191d994c3dfc220657594cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a7b4f35de6a304b5533c238bee86b670b75b03d31b7797929caa7a624b5dda6
MD5 cfaadedd9873a7b83a761312bc507b86
BLAKE2b-256 a2902d769e693654f036acfb462b54dacb3ae345699999897ca34f6bd9534fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4cb14ce54d9b857be9591ac364cb08dc2d6a5c4318c1182cb1d02274029d590d
MD5 46cec0067c257e49287e904c58b15980
BLAKE2b-256 763335df717bc095c6e938b3c65ed117b95048abc24d1614427685123fb2f0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50ebce52f41370707f1e21a59514e3375e3edd6e1832f5e5235237db933c98b
MD5 7de8d46faedf245f34e2c57f9e7787c6
BLAKE2b-256 ad72d39ed43bfb2ec6968d768318477adb90c474bdc59b2437170c6697ee4115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cca1b62fe70d761a282496b96a5e51c44c213e410a964bdffe0928e611368329
MD5 1434300204ca2e009033f2b81dbe5141
BLAKE2b-256 86a6490792a524a82e855bdf3885ecb73d7b3a0b17744b3cf4a40aea13ceca38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 04ad6069c86e531682f9e1e71b71c1c3937d6014a7c3e9edd2aa81ad58842862
MD5 ab16010a4ea074d105a2e6287b0a43be
BLAKE2b-256 413a2e2e902afcd751738e38d88af976fc4010b16e8e821945f4cbf32f75f9c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1dc93e8e4653bdb5910aed79f11e165c85732067614f180f70534f056da97db3
MD5 a7e57b1fef25497f3f7a1fc2a1eee8e8
BLAKE2b-256 403fd7e9327123445429a166a86b4f3b27b161b2bba1fe0710210bd8a0a46325

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f26a07a6e877c76a88e3cecac8531908d980d3d5067ff69213653649ec0f60ad
MD5 8649d580291c4d7d3b3630e26eaf1abe
BLAKE2b-256 003f6fcd74c85b7fa96dacbada96796ca81308e856f2a12458f6ebc3a1f2faa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ed82f5a7af3697b1c4786053736f24a0efd0a1b8a130d4c7bfee4b9ded0f08f
MD5 00c5177afef8e62b8f8491ad00f0b6fe
BLAKE2b-256 a63c66220419738efe82ef88ac3ddf840cb8b35b3fd94bced232dd7113f8b2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f64e376cd20d3f030190e8c32e1c64582eba56ac6dc7d5b0b49a9d44021b52fd
MD5 76b73af8d16577adca1cb6a541d665e3
BLAKE2b-256 efa2589139caa054b5c242a5682fa6b6f119e16e9d1aefc49c4412e57eb7549c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 384d779f0d6f1b110eae74cb0659d9aa6ff35aaf547b3955abf2ab4c901c4819
MD5 d3a4830ec69d663ae43015efa3653c70
BLAKE2b-256 959fc1feee104ad1fb58f75ce32a02d4a0f05ffcdfeb7459d172b9eaf8fa1d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6ffbc252eb0d229aeb2f9ad051200668fc3a9aaa8994e49f0cb2ffe2b7867e7
MD5 064d778b37ab79360c239ede819a9b83
BLAKE2b-256 58992b2e64b7195f62b88be01c13ed0244055498d9cd1454f2aafa1a2df24dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dd178c4c80706546702c59529ffc005681bd6dc2ea234c450661b205445a34d
MD5 9ba6dfcb31b095d8915cf2aad1bd08a6
BLAKE2b-256 10b6e8123361c50859c510cf03f5fbe7d8c1fff16689e4a7dddd619f7287b286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 822ea70dc4018c7e6223f13affd1c5c30c0f5c12ac1f96cd8e9949acddb48a61
MD5 05f2b30246119b35e491972c6528a050
BLAKE2b-256 1ac72d31e1819b5c8619deff40ca4ca31cb9e48662f4ab2b0a35942007986b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3967e4ad1aa9da62fd53e346ed17d7b2e922cba5ab93bdd46febcac39be636fc
MD5 3bd79dd6d8c548b00ba72568c9d22c59
BLAKE2b-256 0a7a73a184ed27c974f18cd7c8f571e99fe22faef643fd7c34feee515dc60e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 484ae3240666ad34cfa31eea7b8c6cd2f1fdaae21d73ce2974211df099a95d81
MD5 8e0a3eadc4d3b455147f78b6ffde5bf3
BLAKE2b-256 464f6119d222e1a5ee107820abcc188b41b248a2f520d4c2f6a9f8a1bca519e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bfef2bb6ef068827bbd021017a107194956918ab43ce4d6dc945ffa13efbc25f
MD5 76b81202162af8abe052cf271bc0adeb
BLAKE2b-256 0ebfe5318f60000d14912da75088662c308d4335dd13bb5b7707cf472b746343

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8f5b234f567cf76ee489502ceb7165c2a5cecec081db2b37e35332b537f8157c
MD5 797993135f7825a88ffdf93332e57613
BLAKE2b-256 7724045045a06521bc5bcbf5917a1467a92b8d3b9dd047c2e4d1e8ca6ec560ee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4e71bc4416de195d6e9b4ee93ad3f2f6b2ce11d042b4d7a7ee00bbe0358bd0c2
MD5 4944a0a8d40351e6a3fa29191f015496
BLAKE2b-256 74dc19d6194e9f31bb67b6735e1ebd93eb6cdb9f24792cf7689aeab63e35ed05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dd632777ff3beaaf629f1ab4396caf7ba0bdd075d948a69460d13d44357aca4c
MD5 2f85b21bca9bb288005f74a09a14de66
BLAKE2b-256 4cf6386ba279d3f1dd3f5e1036f8689dd1ae25c95d292df44c0f11038a12d135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dc43f1ec66eb8440567186ae2f8c447d91e0372d793dfe8c222aec857b81a8cf
MD5 26bb50be56522181106be2ed501868c5
BLAKE2b-256 e31e7e1375fb92a1f0ae6bb6b6b94425f89e4e352974355f0ded60dad1aed71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ff1d0899f104f3921d94579a5638847f783c9b04f2d5f229392ca77fba5b82fc
MD5 3f218bef520c3cb9ecaf2b7bfca173c0
BLAKE2b-256 d9fe4ce9fe50b4cf1fc0f26df810db6dfedac39ef683a7a8deae4ab4934ec459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36e17c4592231a7dbd2ed09027823ab295d2791b3b1efb2aee874b10548b7524
MD5 594e4bbc5c2f810e7e856f9e24801f78
BLAKE2b-256 1df344968c303d70a9d1c5cd68180319851e3bb7396580a4c9f6c58b841b4409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bfdd914e55e0d2c9e1526de210f6fe8ffe9705f2b1dfcc4aecc92a4cb4b533d
MD5 baaae9095c001d18ccefb5cb6697f91e
BLAKE2b-256 e557d181484eb77bc726154ff73c057a744fcef2f3b9721b25dc951e9f2bffa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38949d30b11ae5f95c3c91917ee7a6b239f5ec276f271f28638dec9156f82cfc
MD5 740fa70836209a302eeb6a8d830730b6
BLAKE2b-256 090083d7cd67ec05772799b264ea3070a55b58b3351b01fe8cd3b00a759383b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cab3db8bab4b7e635c1c97270d7a4b2a90c070b33cbc00c99ef3f9be03d3e1f7
MD5 0dca3f83db34450918bbe70cb3da7b7e
BLAKE2b-256 688e46e5e1b863030a9b6ba116d5b2f101b1523180bbbca55f6f9ad6a9839a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 235a31ec7db685f5c82233bddf9858748b89b8119bf4538d514536c485c15fe0
MD5 6a9f6e340edacc1efb0ab4c237b1d50b
BLAKE2b-256 268493e3cee53a1c32cfa672c65adcfb725e6a2b29f7cf710f62e0cbff6bcfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.0.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b6ccc0c85916998d788b295765ea0e9cb9aac7e4a8ed71d12e7d8ac31c23c95
MD5 23f1e87624339da8573b5590a83125ef
BLAKE2b-256 e2f88680a48febe63b8c3313e3240c3de17942aeeb2a0e3af33542f47e0a4eed

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