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

Uploaded Source

Built Distributions

msgpack-1.1.1-cp313-cp313-win_amd64.whl (72.3 kB view details)

Uploaded CPython 3.13Windows x86-64

msgpack-1.1.1-cp313-cp313-win32.whl (65.3 kB view details)

Uploaded CPython 3.13Windows x86

msgpack-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (424.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp313-cp313-musllinux_1_2_i686.whl (408.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

msgpack-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (406.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (420.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (404.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

msgpack-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (78.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgpack-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl (81.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgpack-1.1.1-cp312-cp312-win_amd64.whl (72.6 kB view details)

Uploaded CPython 3.12Windows x86-64

msgpack-1.1.1-cp312-cp312-win32.whl (65.4 kB view details)

Uploaded CPython 3.12Windows x86

msgpack-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (419.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (412.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

msgpack-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (409.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.3 kB view details)

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

msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgpack-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgpack-1.1.1-cp311-cp311-win_amd64.whl (72.3 kB view details)

Uploaded CPython 3.11Windows x86-64

msgpack-1.1.1-cp311-cp311-win32.whl (65.0 kB view details)

Uploaded CPython 3.11Windows x86

msgpack-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (427.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (422.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

msgpack-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (413.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (423.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (413.5 kB view details)

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

msgpack-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (79.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgpack-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgpack-1.1.1-cp310-cp310-win_amd64.whl (71.5 kB view details)

Uploaded CPython 3.10Windows x86-64

msgpack-1.1.1-cp310-cp310-win32.whl (65.0 kB view details)

Uploaded CPython 3.10Windows x86

msgpack-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (406.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (402.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

msgpack-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (396.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (402.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (395.1 kB view details)

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

msgpack-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (78.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgpack-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl (81.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

msgpack-1.1.1-cp39-cp39-win_amd64.whl (71.7 kB view details)

Uploaded CPython 3.9Windows x86-64

msgpack-1.1.1-cp39-cp39-win32.whl (65.0 kB view details)

Uploaded CPython 3.9Windows x86

msgpack-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (401.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (400.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

msgpack-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (393.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (400.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (393.2 kB view details)

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

msgpack-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (78.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

msgpack-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl (81.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

msgpack-1.1.1-cp38-cp38-win_amd64.whl (72.2 kB view details)

Uploaded CPython 3.8Windows x86-64

msgpack-1.1.1-cp38-cp38-win32.whl (65.4 kB view details)

Uploaded CPython 3.8Windows x86

msgpack-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (412.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

msgpack-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (413.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

msgpack-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (404.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

msgpack-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

msgpack-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

msgpack-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (402.8 kB view details)

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

File details

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

File metadata

  • Download URL: msgpack-1.1.1.tar.gz
  • Upload date:
  • Size: 173.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1.tar.gz
Algorithm Hash digest
SHA256 77b79ce34a2bdab2594f490c8e80dd62a02d650b91a75159a63ec413b8d104cd
MD5 abcd18fded80a89c486c0446f112eb06
BLAKE2b-256 45b1ea4f68038a18c77c9467400d166d74c4ffa536f34761f7983a104357e614

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1.tar.gz:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d489fba546295983abd142812bda76b57e33d0b9f5d5b71c09a583285506f69
MD5 9dae3679657a43454ada78681e44e771
BLAKE2b-256 ca917dc28d5e2a11a5ad804cf2b7f7a5fcb1eb5a4966d66a5d2b41aee6376543

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: msgpack-1.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 500e85823a27d6d9bba1d057c871b4210c1dd6fb01fbb764e37e4e8847376323
MD5 0f17e571ba9c3e1253fd185cf60cccc1
BLAKE2b-256 8c87a75eb622b555708fe0427fab96056d39d4c9892b0c784b3a721088c7ee37

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4147151acabb9caed4e474c3344181e91ff7a388b888f1e19ea04f7e73dc7ad5
MD5 d08288415df971410bbc4c303e8eff1f
BLAKE2b-256 bc6636c78af2efaffcc15a5a61ae0df53a1d025f2680122e2a9eb8442fed3ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1ce7f41670c5a69e1389420436f41385b1aa2504c3b0c30620764b15dded2e7
MD5 60cf7e5e0f946b418806c7edcf6852a3
BLAKE2b-256 ee9788983e266572e8707c1f4b99c8fd04f9eb97b43f2db40e3172d87d8642db

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4141c5a32b5e37905b5940aacbc59739f036930367d7acce7a64e4dec1f5e0b
MD5 9c8c140b92146c9ce33e4e957cb0e2e8
BLAKE2b-256 2e606bb17e9ffb080616a51f09928fdd5cac1353c9becc6c4a8abd4e57269a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d592d06e3cc2f537ceeeb23d38799c6ad83255289bb84c2e5792e5a8dea268a
MD5 8db8e86e6d47239dff9de4ca5bc4e0a0
BLAKE2b-256 20222ebae7ae43cd8f2debc35c631172ddf14e2a87ffcc04cf43ff9df9fff0d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 196a736f0526a03653d829d7d4c5500a97eea3648aebfd4b6743875f28aa2af8
MD5 06ece42cc9a2d1fe2f5b4ab124f648a5
BLAKE2b-256 a060daba2699b308e95ae792cdc2ef092a38eb5ee422f9d2fbd4101526d8a210

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4df2311b0ce24f06ba253fda361f938dfecd7b961576f9be3f3fbd60e87130ac
MD5 2083cc9904a7bb85dae4392fddba4230
BLAKE2b-256 401b54c08dd5452427e1179a40b4b607e37e2664bca1c790c60c442c8e972e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ddb2bcfd1a8b9e431c8d6f4f7db0773084e107730ecf3472f1dfe9ad583f3d9
MD5 b651c3e50e1b6cbafb56fa8635cf528f
BLAKE2b-256 094854a89579ea36b6ae0ee001cba8c61f776451fad3c9306cd80f5b5c55be87

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3765afa6bd4832fc11c3749be4ba4b69a0e8d7b728f78e68120a157a4c5d41f0
MD5 4bc14e2bf2d0b9b3c95675840b5b95d0
BLAKE2b-256 a138561f01cf3577430b59b340b51329803d3a5bf6a45864a55f4ef308ac11e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 72.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5692095123007180dca3e788bb4c399cc26626da51629a31d40207cb262e67f4
MD5 0d1813b5e6427d80ab85190e152cf150
BLAKE2b-256 c0230abb886e80eab08f5e8c485d6f13924028602829f63b8f5fa25a06636628

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 870b9a626280c86cff9c576ec0d9cbcc54a1e5ebda9cd26dab12baf41fee218c
MD5 9ead4d2b27042ac8751a92c3c0271aed
BLAKE2b-256 62839697c211720fa71a2dfb632cad6196a8af3abea56eece220fde4674dc44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb29aaa613c0a1c40d1af111abf025f1732cab333f96f285d6a93b934738a68a
MD5 c2974a5a0b22e48edee1b9f7239760c0
BLAKE2b-256 b8d00cf4a6ecb9bc960d624c93effaeaae75cbf00b3bc4a54f35c8507273cda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fd6b577e4541676e0cc9ddc1709d25014d3ad9a66caa19962c4f5de30fc09ef
MD5 23b417c440ff6f82b29a8fb44d121d55
BLAKE2b-256 c6b60c398039e4c6d0b2e37c61d7e0e9d13439f91f780686deb8ee64ecf1ae71

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d275a9e3c81b1093c060c3837e580c37f47c51eca031f7b5fb76f7b8470f5f9b
MD5 478f653f1c7ca9537117716b3d79521e
BLAKE2b-256 8c1669ed8f3ada150bf92745fb4921bd621fd2cdf5a42e25eb50bcc57a5328f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a494554874691720ba5891c9b0b39474ba43ffb1aaf32a5dac874effb1619e1a
MD5 bcfd0e2a2ea302dda68a7491b5392576
BLAKE2b-256 4decfd869e2567cc9c01278a736cfd1697941ba0d4b81a43e0aa2e8d71dab208

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f64ae8fe7ffba251fecb8408540c34ee9df1c26674c50c4544d72dbf792e5ce
MD5 bf978280183e6180fcc99a7fe41f7711
BLAKE2b-256 0fbdcacf208b64d9577a62c74b677e1ada005caa9b69a05a599889d6fc2ab20a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb643284ab0ed26f6957d969fe0dd8bb17beb567beb8998140b5e38a90974f6c
MD5 6ce1286684ede2a2ac59c9ec1e6507e0
BLAKE2b-256 552a35860f33229075bce803a5593d046d8b489d7ba2fc85701e714fc1aaf898

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33be9ab121df9b6b461ff91baac6f2731f83d9b27ed948c5b9d1978ae28bf157
MD5 8990aaa2b8beb857d366ef72a16bfad8
BLAKE2b-256 ab657d1de38c8a22cf8b1551469159d4b6cf49be2126adc2482de50976084d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ae497b11f4c21558d95de9f64fff7053544f4d1a17731c866143ed6bb4591238
MD5 a1710d19580d0bf83ff6857e14d0aaa7
BLAKE2b-256 e326389b9c593eda2b8551b2e7126ad3a06af6f9b44274eb3a4f054d48ff7e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5fd1b58e1431008a57247d6e7cc4faa41c3607e8e7d4aaf81f7c29ea013cb458
MD5 e72d8090cc48f29d97bd7437c1a4aea1
BLAKE2b-256 48459d1780768d3b249accecc5a38c725eb1e203d44a191f7b7ff1941f7df60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 65.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7da8831f9a0fdb526621ba09a281fadc58ea12701bc709e7b8cbc362feabc295
MD5 7110e21e32985aaee1687e5bbbbe5459
BLAKE2b-256 a23b1f717e17e53e0ed0b68fa59e9188f3f610c79d7151f0e52ff3cd8eb6b2dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a28e8072ae9779f20427af07f53bbb8b4aa81151054e882aee333b158da8752
MD5 bc78a2bbc3f37bb95c67153cae56d756
BLAKE2b-256 3b2bbafc9924df52d8f3bb7c00d24e57be477f4d0f967c0a31ef5e2225e035c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8b55ea20dc59b181d3f47103f113e6f28a5e1c89fd5b67b9140edb442ab67f2
MD5 7d433a1a70e55aa254f01c586a5a9553
BLAKE2b-256 69e8fe86b082c781d3e1c09ca0f4dacd457ede60a13119b6ce939efe2ea77b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88daaf7d146e48ec71212ce21109b66e06a98e5e44dca47d853cbfe171d6c8d2
MD5 46ddc62315230c7cd0ddd2546957b994
BLAKE2b-256 7505ac84063c5dae79722bda9f68b878dc31fc3059adb8633c79f1e82c2cd946

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a8b10fdb84a43e50d38057b06901ec9da52baac6983d3f709d8507f3889d43f
MD5 f55af49f2f4b5006ff38f1ed73579d33
BLAKE2b-256 4516a20fa8c32825cc7ae8457fab45670c7a8996d7746ce80ce41cc51e3b2bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a32747b1b39c3ac27d0670122b57e6e57f28eefb725e0b625618d1b59bf9d1e0
MD5 2b0bfe7a20d0c15e8478359bb4ac4b7c
BLAKE2b-256 f84631eb60f4452c96161e4dfd26dbca562b4ec68c72e4ad07d9566d7ea35e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba0c325c3f485dc54ec298d8b024e134acf07c10d494ffa24373bea729acf704
MD5 62a796a1209401d81a647e9a1ed7b7ba
BLAKE2b-256 86ea6c958e07692367feeb1a1594d35e22b62f7f476f3c568b002a5ea09d443d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36043272c6aede309d29d56851f8841ba907a1a3d04435e43e8a19928e243c1d
MD5 e7fa63feb7d814843f2be9f16845ca94
BLAKE2b-256 aa7f2eaa388267a78401f6e182662b08a588ef4f3de6f0eab1ec09736a7aaa2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71ef05c1726884e44f8b1d1773604ab5d4d17729d8491403a705e649116c9558
MD5 93b756bb8c7c8c70c6539ed9c6b38bb1
BLAKE2b-256 7f8397f24bf9848af23fe2ba04380388216defc49a8af6da0c28cc636d722502

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 71.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b65b53204fe1bd037c40c4148d00ef918eb2108d24c9aaa20bc31f9810ce0a8
MD5 38ad02cc095bd645a226b337183b462e
BLAKE2b-256 7d1873dfa3e9d5d7450d39debde5b0d848139f7de23bd637a4506e36c9800fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 65.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6640fd979ca9a212e4bcdf6eb74051ade2c690b862b679bfcb60ae46e6dc4bfd
MD5 a0f5e4eb8c9c50d379111c1dc80d1d1f
BLAKE2b-256 d46439a26add4ce16f24e99eabb9005e44c663db00e3fce17d4ae1ae9d61df99

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96decdfc4adcbc087f5ea7ebdcfd3dee9a13358cae6e81d54be962efc38f6338
MD5 32fc1f8f2c93979d2169b564d4b71dfc
BLAKE2b-256 5827555851cb98dcbd6ce041df1eacb25ac30646575e9cd125681aa2f4b1b6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6d58656842e1b2ddbe07f43f56b10a60f2ba5826164910968f5933e5178af75
MD5 d2b2ed394a3c0acda0fab1e2ce2d2faf
BLAKE2b-256 61dc8ae165337e70118d4dab651b8b562dd5066dd1e6dd57b038f32ebc3e2f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88d1e966c9235c1d4e2afac21ca83933ba59537e2e2727a999bf3f515ca2af26
MD5 edefffe195eff4ffec64f7435c828913
BLAKE2b-256 2b92b42911c52cda2ba67a6418ffa7d08969edf2e760b09015593c8a8a27a97d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b17ba27727a36cb73aabacaa44b13090feb88a01d012c0f4be70c00f75048b4
MD5 5743a78baeaf5eec54110251c2c2d737
BLAKE2b-256 208e0bb8c977efecfe6ea7116e2ed73a78a8d32a947f94d272586cf02a9757db

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78426096939c2c7482bf31ef15ca219a9e24460289c00dd0b94411040bb73ad2
MD5 b8ffe2a792973219e895148bd6f4b6f8
BLAKE2b-256 e8c5df5d6c1c39856bc55f800bf82778fd4c11370667f9b9e9d51b2f5da88f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a17ac1ea6ec3c7687d70201cfda3b1e8061466f28f686c24f627cae4ea8efd0
MD5 7b11a813a41fb0fa1aa39171a313cdbe
BLAKE2b-256 59a1731d52c1aeec52006be6d1f8027c49fdc2cfc3ab7cbe7c28335b2910d7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79c408fcf76a958491b4e3b103d1c417044544b68e96d06432a189b43d1215c8
MD5 fb20265cd9104104beba64bc25047602
BLAKE2b-256 e4357bfc0def2f04ab4145f7f108e3563f9b4abae4ab0ed78a61f350518cc4d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 353b6fc0c36fde68b661a12949d7d49f8f51ff5fa019c1e47c87c4ff34b080ed
MD5 bd52dcc71a4f10f4b195c4390aedce6e
BLAKE2b-256 3352f30da112c1dc92cf64f57d08a273ac771e7b29dea10b4b30369b2d7e8546

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 71.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40eae974c873b2992fd36424a5d9407f93e97656d999f43fca9d29f820899084
MD5 5e3d556af9b71478fcf8f93346f7430f
BLAKE2b-256 20d6cd62cded572e5e25892747a5d27850170bcd03c855e9c69c538e024de6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 65.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 61abccf9de335d9efd149e2fff97ed5974f2481b3353772e8e2dd3402ba2bd57
MD5 9f0453c2beb909024b0a71da55a8af7c
BLAKE2b-256 d331e8c9c6b5b58d64c9efa99c8d181fcc25f38ead357b0360379fbc8a4234ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8ef6e342c137888ebbfb233e02b8fbd689bb5b5fcc59b34711ac47ebd504478
MD5 36f1ffcfecbc02445f8bbb9576530289
BLAKE2b-256 fcec1e067292e02d2ceb4c8cb5ba222c4f7bb28730eef5676740609dc2627e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4835d17af722609a45e16037bb1d4d78b7bdf19d6c0128116d178956618c4e88
MD5 06fdb01f04c4d8e960bd387a545e5365
BLAKE2b-256 3937df50d5f8e68514b60fbe70f6e8337ea2b32ae2be030871bcd9d1cf7d4b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 435807eeb1bc791ceb3247d13c79868deb22184e1fc4224808750f0d7d1affc1
MD5 d94dabfedc150fc674e0a129a712ec3d
BLAKE2b-256 98c63a0ec7fdebbb4f3f8f254696cd91d491c29c501dbebd86286c17e8f68cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d182dac0221eb8faef2e6f44701812b467c02674a322c739355c39e94730cdbf
MD5 f106f4f4cbd6b69c3606525db1ee64ad
BLAKE2b-256 edaf6a0aa5a06762e70726ec3c10fb966600d84a7220b52635cb0ab2dc64d32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d75f3807a9900a7d575d8d6674a3a47e9f227e8716256f35bc6f03fc597ffbf
MD5 39d3620a9efd7f239171827516ae781d
BLAKE2b-256 7327190576c497677fb4a0d05d896b24aea6cdccd910f206aaa7b511901befed

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b13fe0fb4aac1aa5320cd693b297fe6fdef0e7bea5518cbc2dd5299f873ae90
MD5 3db8af44a2acf0ec1bca43e80e92cf26
BLAKE2b-256 1e803f3da358cecbbe8eb12360814bd1277d59d2608485934742a074d99894a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a89cd8c087ea67e64844287ea52888239cbd2940884eafd2dcd25754fb72232
MD5 8aec03e08d70c2bae9ede5148d764980
BLAKE2b-256 7577ce06c8e26a816ae8730a8e030d263c5289adcaff9f0476f9b270bdd7c5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5be6b6bc52fad84d010cb45433720327ce886009d862f46b26d4d154001994b
MD5 1b730308bffb0932a32e574cb93fdb6b
BLAKE2b-256 1fbd0792be119d7fe7dc2148689ef65c90507d82d20a204aab3b98c74a1f8684

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 72.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da8f41e602574ece93dbbda1fab24650d6bf2a24089f9e9dbb4f5730ec1e58ad
MD5 330515d2a152faf0ab6c6daa909f3ab7
BLAKE2b-256 ceec27d4740fdeea71a7d559b405614b5d9b866028768a949e8dd58abed8474f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-win_amd64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgpack-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4d3237b224b930d58e9d83c81c0dba7aacc20fcc2f89c1e5423aa0529a4cd142
MD5 5527b1d6e100001b4874c06700a681eb
BLAKE2b-256 e380644311ca3064cfc9a9ecf64074e905e5359da730faefc88c6cfbbaf110ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-win32.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 996f2609ddf0142daba4cefd767d6db26958aac8439ee41db9cc0db9f4c4c3a6
MD5 57d3da4e42697ffc0d76fe9d9fc98a6c
BLAKE2b-256 0379ea7cda493ec78afb9bd4c88e3c8bf5bffabca78d1917d8b24cddd0b9f5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1abfc6e949b352dadf4bce0eb78023212ec5ac42f6abfd469ce91d783c149c2a
MD5 55671f6068c2acaaa5d8818f42f9a897
BLAKE2b-256 85d2c849832b0c0bfb241efc830ccbe7fb880274bbdbc4780798b835f2cd7b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgpack-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61e35a55a546a1690d9d09effaa436c25ae6130573b6ee9829c37ef0f18d5e78
MD5 5dce1b17d60669c8bd2cc03d08c91d94
BLAKE2b-256 1d720ba95da893ddffb09975b4e81fd7b7e612aace0a42ce0d9bdd1a7d802cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8f93dcddb243159c9e4109c9750ba5b335ab8d48d9522c5308cd05d7e3ce600
MD5 97d4efaf6746d809dba41f8940b970ff
BLAKE2b-256 7ea4257806f574f8b4bfb76d428b2406cf4585d9f9b582887a0f466278bf0e2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bba1be28247e68994355e028dcd668316db30c1f758d3241a7b903ac78dcd285
MD5 73327e201df6fc6215640bbd9c24d2fc
BLAKE2b-256 bd74b0fcaec0cea3f104c61c646f49571864f12321de7b8705e98a32d29ba2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgpack-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fbbc0b906a24038c9958a1ba7ae0918ad35b06cb449d398b76a7d08470b0ed9
MD5 c34139c3568081259bd5d31242a5d2b0
BLAKE2b-256 961746438f4848e86e2f481d46bd3f8b0b0405243b4125bac28ce86dc01e3aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on msgpack/msgpack-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page