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.

Install

$ pip install msgpack

Pure Python implementation

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

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

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

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])
'\x93\x01\x02\x03'
>>> msgpack.unpackb(_)
[1, 2, 3]

Read the docstring for 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))

buf.seek(0)

unpacker = msgpack.Unpacker(buf)
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)
this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime)

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.

NOTE: msgpack can encode datetime with tzinfo into standard ext type for now. See datetime option in Packer docstring.

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)
>>> unpacked = msgpack.unpackb(packed, ext_hook=ext_hook)
>>> 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 in old msgpack spec

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.

Major breaking changes in the history

msgpack 0.5

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.

msgpack 1.0

  • Python 2 support

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

    • msgpack 1.0.6 drops official support of Python 2.7, as pip and GitHub Action (setup-python) no longer support Python 2.7.

  • Packer

    • Packer uses use_bin_type=True by default. Bytes are encoded in bin type in msgpack.
    • The encoding option is removed. UTF-8 is used always.
  • Unpacker

    • Unpacker uses 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 (e.g. unpack into bytes, not str).
    • Default value of max_buffer_size is changed from 0 to 100 MiB to avoid DoS attack. You need to pass max_buffer_size=0 if you have large but safe data.
    • 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.

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

Uploaded Source

Built Distributions

msgpack-1.1.0rc1-cp312-cp312-win_amd64.whl (75.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

msgpack-1.1.0rc1-cp312-cp312-win32.whl (68.8 kB view details)

Uploaded CPython 3.12 Windows x86

msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_x86_64.whl (404.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_i686.whl (386.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_aarch64.whl (395.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (394.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

msgpack-1.1.0rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (386.4 kB view details)

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

msgpack-1.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_universal2.whl (152.6 kB view details)

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

msgpack-1.1.0rc1-cp311-cp311-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgpack-1.1.0rc1-cp311-cp311-win32.whl (68.2 kB view details)

Uploaded CPython 3.11 Windows x86

msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl (406.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_i686.whl (387.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl (396.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgpack-1.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgpack-1.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgpack-1.1.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (388.1 kB view details)

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

msgpack-1.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgpack-1.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (84.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgpack-1.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl (151.0 kB view details)

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

msgpack-1.1.0rc1-cp310-cp310-win_amd64.whl (74.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgpack-1.1.0rc1-cp310-cp310-win32.whl (68.3 kB view details)

Uploaded CPython 3.10 Windows x86

msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (379.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_i686.whl (365.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl (373.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgpack-1.1.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgpack-1.1.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgpack-1.1.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (363.1 kB view details)

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

msgpack-1.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgpack-1.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (84.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgpack-1.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl (150.7 kB view details)

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

msgpack-1.1.0rc1-cp39-cp39-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.1.0rc1-cp39-cp39-win32.whl (68.5 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (379.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_i686.whl (364.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl (373.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgpack-1.1.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgpack-1.1.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgpack-1.1.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (363.4 kB view details)

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

msgpack-1.1.0rc1-cp39-cp39-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgpack-1.1.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (84.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgpack-1.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl (150.9 kB view details)

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

msgpack-1.1.0rc1-cp38-cp38-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.1.0rc1-cp38-cp38-win32.whl (68.5 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (391.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_i686.whl (376.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl (385.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgpack-1.1.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgpack-1.1.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgpack-1.1.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (369.5 kB view details)

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

msgpack-1.1.0rc1-cp38-cp38-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgpack-1.1.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (84.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

msgpack-1.1.0rc1-cp38-cp38-macosx_10_9_universal2.whl (151.5 kB view details)

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

File details

Details for the file msgpack-1.1.0rc1.tar.gz.

File metadata

  • Download URL: msgpack-1.1.0rc1.tar.gz
  • Upload date:
  • Size: 289.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.2

File hashes

Hashes for msgpack-1.1.0rc1.tar.gz
Algorithm Hash digest
SHA256 a1d3291999cc1af4b23d394b37a6dbf5a0a16da97e50c471008eb3a4ea95ea43
MD5 28c86745c8e8b1920c23ab3b0f5ee9ac
BLAKE2b-256 c0e5e1126c96f726a0baaa8f814c119cb5358f740497ee617b518497b6037d23

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad44c26c195999b24117ad719dd0a8af30dff74daba9b23981f0b81a5cd4c08d
MD5 829e1b1d325f449f11ea430af6fcd9e3
BLAKE2b-256 36ccf1e473cb0acb095b78e3c1a9126712b3c49c3ced54d08f67735809fa17d8

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e53bdb1469a105a7f23aa8bb84eed8447759ae6b1268ef8212a6b016846ba8a7
MD5 ec0ece235a2d35f7a9d980704bbc12e3
BLAKE2b-256 e5cae575a3e283fd1a6548b4feb0ad5c55e4ac54cf2c6a7a0af827eb7b0fa3f0

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8d6779aaaa5bfacee74df1fc23aee68f9d445a1e9a9cc3942ca70d4b1fa5ddb
MD5 14caa0bdce81f2c46186fb5c94e60b55
BLAKE2b-256 18a6904c7bd0e6d9d8c223ca7d4f542811078bf960201c9451ed983a18ac2ece

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f5caa3b3b0243516af8e2385746991fddd29d6b7adbfe217e21d8d2fac3101ac
MD5 34fad7d05e76a7b159555f1bd7920352
BLAKE2b-256 604139f1219e43f6ae363fd518e41bb3b400e58afc1472bc998dda0632ebbd8a

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1567a7a089cd2dabfdf667f9a555702cfdd6bacc95538e5376e0a0d3e1cfec13
MD5 4091c53678229c630cfd2432763c1d27
BLAKE2b-256 0004a9dc5983cb24231eafb8cb474bc15997986ba9925d5c2a143964d243cc25

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6570b5e0a006748b65f652462c872cab2d54648ff2b32e596875480558b81946
MD5 b2b34af395f079464e00664daf6223dc
BLAKE2b-256 3b0521b6523ea7286f238c9dc1facae615f576b676633dac23eb718c81ac33f8

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 620033ee62234c83ac4ab420d0bdcd0e751f145834997135a197cc865c02eb58
MD5 7e00ea641452ee30808fc431e1973b5a
BLAKE2b-256 90eefddd0d20802b294b416b6c576f2e26e3b54a8f1628064fe9e39602b2403b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a4698fe8974242fccd90e99dd71f963b23bb414d3c1f2bef4c6df662ff7627f
MD5 992e5963ccfe9978f44edcbecb1c6e94
BLAKE2b-256 2524cac4e9966816f8c7c8e69e95fa86fa3d5bc2eaa406bab23ef28aca15a509

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aec097b46b2e2e47229a304379d9b9bfd57845c6e8c0ef078030fcd6f21e04fd
MD5 804d9b1514065d17d91f67b86512a92a
BLAKE2b-256 fc49d2e7d114ea72546a9d0cc432b22d458726fd6ab24cf49757943c98dc4573

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23425589809b96ad7d5d00e691ae3ab65c1f0934a817b69b244fc236236f3477
MD5 149a41d8b7e1e9149e19798421c55ac3
BLAKE2b-256 eb9a1396d6512d1dae98f7c6e95746c9a106f6861ba7966a70a9d8832f1faac0

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 57e45e59f6d45d9bdf4a5a19ae1dd3e151ab42a8dba4bc2aa5e8c4281c9d71d5
MD5 e8057b9394b72311d30742983e38bd9d
BLAKE2b-256 ea2ce8af682b90733a62af2436b3f27a2ff828bb1ee340e53853b4730ac6f579

See more details on using hashes here.

File details

Details for the file msgpack-1.1.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f066f14cf1b63f173a764ab563fa338654bc6ae87aace1ebcf5fc68e367f18ca
MD5 506cc698bf92d20a5ce48b53eed4d92f
BLAKE2b-256 c774be6c856b502e6c1ef871f16b019a175201725043cc3aca81c1325e0dcde3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2a6d891d65a76b9e31e6e9cf6eaef6481e445c7e78c357e7b5c2c422fcf57557
MD5 02ff6c4c1fe93b0cffdee591863f3256
BLAKE2b-256 9f7acf3623384d6da344df6ac0d9c4401b2804ac835706a68493532bfc7c6d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6813dc453b2c6de59731f26d98f11e5e9e84f1c5167b36442a49ade7d98e6b37
MD5 320565d9aedd6b4c4221ccd31cf5483e
BLAKE2b-256 46af719de837b6d509c61dd7e13612a25d237e39d6f360c170c125ed6f9a5fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 013113f953a0fe664944348418a4c1227d50455dbfb99622275a9294d6933669
MD5 77b294910c106a2ec2f2388bbdd5a6a1
BLAKE2b-256 4d4f90f59d3f4903da016e148fd39c5967d71c8aab1a85047d6f4dde82e58742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d1b312cf09415acb1139efd6fc0ed68e652a45b9337b06604b734398fd174eaf
MD5 daab6f8f9d0fc12aec349c35ec69ccbe
BLAKE2b-256 b4e13fff186105b50e6dc973aadb7e92f7ea6e440c45940f1a6d908e3b5d1e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3955ac51841ebf5e0908f087cc878c83c208cd13b4a18e8c8cf575ffd746ad8f
MD5 61938a5dc1d1bbd13be13bf0f48c1aec
BLAKE2b-256 721275990cae2bd627418f38c5d8963fd38025253c4fd54e5d803e00dfdc1fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03425af2a5eda14c6657a84478cb7c381b6512b43a1ae7e90bf8899fb16f53ea
MD5 e7ba90c7a515fffbb322cec6d8c25e48
BLAKE2b-256 0dc6ffa602a9012e3d191de9c2d05e36a7afaef27815c4b11e941b6a47b7b73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 032ced3b44e961944629d0393025db7a03d08c48f2b9e17ccd9fc9efa423aeaf
MD5 c6bf83afd1efc3a8e00a9510b373e760
BLAKE2b-256 d7a92cf9dfa630e221f0b13ecf1dbf33d0365856d3d85075f3154771bb9ea862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ba094a005c7d2bc3787e777b687f5584df8e96625f8221f819f0722b9341436
MD5 b32fc9351f399c3c8cbfd3a81124c38c
BLAKE2b-256 cf3e57212eee68e7051922955fdd437bec605cb2c9a1ba0be06fcc46df4f055f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d433f2b6ce9ba932ccc9b7e9b122937245c9f47e8724e3867377350e66884128
MD5 dc3acad356ea69a47a76c02da2edd1a9
BLAKE2b-256 2044ad39cf24c79229b6ac9de62b5245d6192d4b853e7708834eed8741b47372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68dd76e1da2ee80917c7c972b80b372d8e9143780716cdb4c1d37e47a805950b
MD5 7832cbb3980166183a35117b3e9074ac
BLAKE2b-256 f5761c8b53398a29cfec49c871c41e2f6a1574dee29cb200a82410776af4a41b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8c164fc1e2a76620eb36f931235549fb028fbc7c2aba6d8ad720ed11c9ea6bc
MD5 10c4a8e3fefe3fe36bf997e9d343652d
BLAKE2b-256 98ab5819c7f53fa89e9c26e306a9b9d88f91041554d23826f80e9c70570e1cdd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6fc22491e5345199cf64c9c10f84821de891443553d36bf99de1dcf56de5cd81
MD5 6861e6b7a3ed2ce8b1b661c6b056fa2d
BLAKE2b-256 0be75336b39a98c9cbb73d87f13bbe924062ddd8e2288e50683b883b01e4d55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1e876357ce6e89808bf691d0cda96e6920d7a640955e4966b998325903faa2c
MD5 d40bcfb8c9205a174a90fc0d91c9b812
BLAKE2b-256 dd3e7ce3da1ae6ee77e4d04e748031bbe07d184a612d0e045f5540e27fb82b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4ad0c5998680607efbec755d0ce20628abcf2b886613a63cc5c2c72293ef9920
MD5 8a63efeda160f970a37bd007fc3212dc
BLAKE2b-256 8db524793f624821b1c82fad0c4d0a58445404d7523e4ade26e8e790ab4f9d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c08e0d626ef3d1b4566adb40362e596936ebdd4c299c950ae1d0edb3e38d217
MD5 66d408004535115fa9c68cda5413c9b2
BLAKE2b-256 c7d233797ba72a367e3754133e002e81e4aa621d4f53c4df5b705a83c1de6255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b893ec498067a2c03efe83d4f5b5593b04e48c32372aa0f08e2331eec6c54ae7
MD5 853e8c69bac0a2e6ad4c67a9f70a7eff
BLAKE2b-256 9135958d1fa30a2b3d1f7c6a2805f961d501ba84102e39929c6adee6e348cc7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82e3c7537eca97c2254b93ec8cca11e6e35dc15e1934923b4a9a3bf2ca2b5749
MD5 885476b9c56146420d36f6cef23d5bd9
BLAKE2b-256 d38f457a8570cd72e31a5c792b46c363f0a92455c428351ce394e19ea1fc4b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 368a6b29e04414c851ebc1e9605a01f3720aff7db32d022a22ae657bbdd470b9
MD5 d3c87f6049ee3034548392c04fd22f4d
BLAKE2b-256 e7a43690e70ade2059fa157d7e95051fb4dec9d43a42ebfe414ac5348bf9034f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acc2f1f7ef4034dc027134e9bffa152ecd13f81b683dfc56b209dfa5e5db59a6
MD5 9d9215d5a2c489748863eeff70ea02a8
BLAKE2b-256 7b55c5d48f5b7f56b2fdd40ca556682167eab006e2a462b6ce66fd5c75a00fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b672459b47e1849f7a5638fab6e9e11665c196e1a94c285d9e6f83f9eeb94d25
MD5 f8c8410178cd4758c9ba3f48756fd15e
BLAKE2b-256 76160446a1aad656c931333b8d15537216f576dcc4f2346329cbbb8a38353471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba255662d83f1f4f38cd0a77c409b488bf7bfd3036403c508f8325bd6ec8e085
MD5 404ab9e1fe3f275bd2fb1b02ea9f59ef
BLAKE2b-256 e49d4b4a4459bc31072ae0efc85825644a70ef2d55ab9b5b8d464d725aa05dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 08b6711236ae207f6f35aa053892957024a43f9476425a0f764ce5948ad2f9f7
MD5 c188a2ebc5c1845d06b0b4995b947317
BLAKE2b-256 a992dea4a047a3f368ce0b5f3a80782e73ecc2d5a9c2434c35999638d953a2bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 03d70cf865b5816b15c223bf6577e60fff1ef8454ed9fba62956793203580d26
MD5 9a9e0f2ba65e28cd7eb66160145b0cdc
BLAKE2b-256 a6f69bf6064806920a586c8ec3c5de6bddc7f9ddb1e9d722b7dd688153ad8455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b8e977eecf8da623f2d618ef6d91ccc7450e46b44fd91fc9171bbd33f8cd38c
MD5 33b7c232bedf8d0c95b9ee9385e8bfa3
BLAKE2b-256 f5407d0f3635a18c0363a9e6f942ea2c5ecf26dd3743dd17b03ae805113a0816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82e22e7c6a275a2fe89a3faa13d18fd8ffe7420fe68dc6b113ab7992b2c7570b
MD5 8b302140030b3175f14d9b9a8a3ec98c
BLAKE2b-256 ece467098f3227245fa73ac122e5b8b7f30fa8c64c81a5c87223c4e570013df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5846dc5bc9251c2af40dfca2c23522f53ee6c3a47d08cea74e7ed9627156e01
MD5 649b9fc336f750618242411b59f48cfb
BLAKE2b-256 a6b7d17b0b75e92237a37bfdf40c336d573e11f4d0722c00549caf855bc0b4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 429a520de955d34edc3561beeb5c7189d9c34730d1c2c24379f41aeaac3b6a47
MD5 35f74c522ab10e59bf156eb4e73aa0b4
BLAKE2b-256 93c69e12de9f749fc4436e8f85f742ae18d6f32827649991e3d52fe0b64ca13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa31dc354402c40c36bcc1fc5cfc42020a7c580b266e1076a8c23eb6dce0c7ab
MD5 a174532aa7711302516d800174edd0c0
BLAKE2b-256 70c39cd9a587f06b7b4edb041dd5ece6002194ac5c605aa2c027b79f37228ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5e4988a4019eda86c2caa5d34f0afbf24e4015fcbeeab4c88325ee26e4ff6d8
MD5 c4debe2a3df63620ad469f4da8a3e855
BLAKE2b-256 700f5d2ae1edfbbeaf2f8b9ed9138c8f5ea1594741bf1028935574bc057fd620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 720a157e6406fed16eb0ec2e83d37bddd0c75245583dffa558b7a37545032078
MD5 d6d666dc0aca3ca702c396930c65f0bb
BLAKE2b-256 d951054446e9b97133de0028c76be2f566c5dc852ddf5590aeb2cf6e3b45b842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 631c8ce4f9b68b2f476343b86c68e59dbaa694678d3d893b60000377d3229ab8
MD5 0d3b7f27f5d22cb4942497307445cee1
BLAKE2b-256 7d23ee8ceef08dfe1caf4b086793b3a7f2a4480995044c0dbe03a9bb6aebe3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 90fde137d98b3b8d96d43496e178f3a3721c203e9133d248cb2f04fabaabe4d3
MD5 95b16a13d1262b287858589b31ac3a9c
BLAKE2b-256 b541388a47d3ce827b65dd83a80d416f43a7c989aef217efeebfda61eba015bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 db07d22aebd65ea2734dff4b72a85831382ddeb5f1f0c3332f2c05473eb041db
MD5 cc5211533c6ba1d4c5028fd336116c3e
BLAKE2b-256 8d51dffd1be3da6516b3979fd7ddcb00afb95cc0a4da875aa24d7f52c29097cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d9c164c61cb6f763bb67049b101ea9434936249d5b1d6ff79a0da360ee75e84a
MD5 e5e6ed405dda39ffc0bf4977fda11208
BLAKE2b-256 cd47732f5a98acf01ea2407ee8894929d63863f3997291321b841e2dc0687c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4cb93da7000e456d5c3998a10a228262f0a9d8e7c7ee9c0e5d9b572e5e504f95
MD5 bc2b879f2da5edfd0d0c25a2b082510f
BLAKE2b-256 e3a8546be5a96d087d4b191ee01ba7c4c400de515d91ba5f3f2fbace9ebb9b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 851543a7d3f02f6f21976e5173e2f02e8a739b897cb63813bc559c908b6a2393
MD5 18a7b499df0f76d55322d4ef8c357d17
BLAKE2b-256 0ac798aa7f8b59d2e88af0180751afede58aaa655362edf5cf95844b58c2f9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5d09fe0b1333464d6cda6a53bc9e67a224576ea14424cae63ee1211eeedfd97
MD5 dcfa57e5a7ee27037fd03fa724cff57e
BLAKE2b-256 8a1c0470a3d7d32bd2fbfba0f03c36c9113d5fe7b7ab4fbec34825a95dcc7934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2eee0c0047cd3fd57468b975b38eb2b4110631790e701fd850e3c44e5d48548
MD5 0cabfc960864a83d89ecf4472b391eb1
BLAKE2b-256 5ea54873fac8e50c9844705530d354ec5cc09f6457a3261cf4075bc6fb6b588a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f1a310fa47cc34f4aaaf27f5ac2acc8e3744ca820251e482eea1c673965714c
MD5 a48d11e5d24161ac3bd8be2afdf8e2d3
BLAKE2b-256 9adce051ee4ec37797ca459c53519609e8f9c581d68774b1a5b2554cd682a62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6d3bf12fcd06dd79c4808cbb56161ce02de2527b601627f6119af444f86ddd2
MD5 8c58fa71e2fa01cea8de9fbf82372ea2
BLAKE2b-256 9e8dc9cafe97262a093546ae6b5c71093b709cb3f641da3c228cd0904bffdd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36bd1766a5344a7cf1cbf8d3569e24f7ee081a3595fedf15288a8bfec237c85e
MD5 9cc269c14ac6680164274c29d47cb6ee
BLAKE2b-256 8b0be19b9d05c71b36f49a9e717660e8dcb22ec2e8bc0d1b8aff5603aef9b9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5ea8b6b943dbc96522008a64875f0dae1bf2befa3ce265aeab8e6e51fb3f2ff
MD5 bbd97f64b9fa9a5d82dfc34b35e942ab
BLAKE2b-256 d7487d97379416278a13a9a422f83a52dbf3a918df588e650abdd1bff8c78d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.0rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3d80425e461f48bb7b193c87c13666722985dce7df1229c195076af5de55d64c
MD5 cb5bf640378fca4b125d65a5d09c0b22
BLAKE2b-256 cdd0f06b68a2c877defaa7c9d71e94b1e1f91ed53168bd2eba2c57e06e64d7ac

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