Skip to main content

MessagePack for Python

Build Status Documentation Status

What is 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

If you can't use a binary distribution, you need to install Visual Studio or the Windows SDK on Windows. Without the extension, the 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 aliases for compatibility with json and pickle.

pack and dump pack to a file-like object. unpack and load unpack 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)

[!IMPORTANT] If Unpacker.unpack() stops with an exception other than OutOfData, that Unpacker cannot be reused. Create a new Unpacker when reading another stream.

Packing/unpacking of custom data types

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.tobytes())
...     raise TypeError("Unknown type: %r" % (obj,))
...
>>> def ext_hook(code, data):
...     if code == 42:
...         a = array.array('d')
...         a.frombytes(data)
...         return a
...     return msgpack.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 deserializing 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 types in the old MessagePack 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 a msgpack.ExtType object to the 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

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

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

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

Performance tips

CPython's GC starts when the number of allocated objects grows. This means unpacking may trigger unnecessary GC. You can use gc.disable() when unpacking a large message.

A list is the default sequence type in Python. However, a tuple is lighter than a list. You can use use_list=False while unpacking when performance is important.

Major breaking changes in the history

msgpack 0.5

The package name on PyPI was changed from msgpack-python to msgpack in 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 no longer supports Python 2. 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 supports Python 2.7.

  • Packer

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

    • Unpacker uses raw=False by default. It assumes str values are valid UTF-8 strings and decodes them to Python str (Unicode) objects.
    • encoding option is removed. You can use raw=True to support old format (e.g. unpack into bytes, not str).
    • The default value of max_buffer_size is changed from 0 to 100 MiB to avoid DoS attacks. You need to pass max_buffer_size=0 if you have large but safe data.
    • The default value of strict_map_key is changed to True to avoid hash DoS. You need to pass strict_map_key=False if you have data that contain map keys whose type is neither bytes nor str.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

msgpack-1.2.2-cp315-cp315t-win_arm64.whl (71.8 kB view details)

Uploaded CPython 3.15tWindows ARM64

msgpack-1.2.2-cp315-cp315t-win_amd64.whl (78.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

msgpack-1.2.2-cp315-cp315t-win32.whl (71.8 kB view details)

Uploaded CPython 3.15tWindows x86

msgpack-1.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp315-cp315t-musllinux_1_2_riscv64.whl (375.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl (404.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (376.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (422.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (422.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp315-cp315t-macosx_11_0_arm64.whl (87.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

msgpack-1.2.2-cp315-cp315t-macosx_10_15_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

msgpack-1.2.2-cp315-cp315-win_arm64.whl (67.7 kB view details)

Uploaded CPython 3.15Windows ARM64

msgpack-1.2.2-cp315-cp315-win_amd64.whl (73.5 kB view details)

Uploaded CPython 3.15Windows x86-64

msgpack-1.2.2-cp315-cp315-win32.whl (66.7 kB view details)

Uploaded CPython 3.15Windows x86

msgpack-1.2.2-cp315-cp315-musllinux_1_2_x86_64.whl (413.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp315-cp315-musllinux_1_2_riscv64.whl (377.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp315-cp315-musllinux_1_2_aarch64.whl (395.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (377.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (416.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp315-cp315-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

msgpack-1.2.2-cp315-cp315-macosx_10_15_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

msgpack-1.2.2-cp314-cp314t-win_arm64.whl (71.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgpack-1.2.2-cp314-cp314t-win_amd64.whl (78.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgpack-1.2.2-cp314-cp314t-win32.whl (71.8 kB view details)

Uploaded CPython 3.14tWindows x86

msgpack-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (419.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl (377.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (411.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (380.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl (87.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgpack-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (86.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgpack-1.2.2-cp314-cp314-win_arm64.whl (67.7 kB view details)

Uploaded CPython 3.14Windows ARM64

msgpack-1.2.2-cp314-cp314-win_amd64.whl (73.4 kB view details)

Uploaded CPython 3.14Windows x86-64

msgpack-1.2.2-cp314-cp314-win32.whl (66.8 kB view details)

Uploaded CPython 3.14Windows x86

msgpack-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (410.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp314-cp314-musllinux_1_2_riscv64.whl (372.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (394.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (372.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (412.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp314-cp314-macosx_11_0_arm64.whl (84.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgpack-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgpack-1.2.2-cp313-cp313-win_arm64.whl (65.4 kB view details)

Uploaded CPython 3.13Windows ARM64

msgpack-1.2.2-cp313-cp313-win_amd64.whl (72.2 kB view details)

Uploaded CPython 3.13Windows x86-64

msgpack-1.2.2-cp313-cp313-win32.whl (65.2 kB view details)

Uploaded CPython 3.13Windows x86

msgpack-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp313-cp313-musllinux_1_2_riscv64.whl (373.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (395.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (374.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (417.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp313-cp313-macosx_11_0_arm64.whl (83.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgpack-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl (83.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgpack-1.2.2-cp312-cp312-win_arm64.whl (65.5 kB view details)

Uploaded CPython 3.12Windows ARM64

msgpack-1.2.2-cp312-cp312-win_amd64.whl (72.3 kB view details)

Uploaded CPython 3.12Windows x86-64

msgpack-1.2.2-cp312-cp312-win32.whl (65.3 kB view details)

Uploaded CPython 3.12Windows x86

msgpack-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (417.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp312-cp312-musllinux_1_2_riscv64.whl (374.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (398.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (379.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (420.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (409.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp312-cp312-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgpack-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgpack-1.2.2-cp311-cp311-win_arm64.whl (65.9 kB view details)

Uploaded CPython 3.11Windows ARM64

msgpack-1.2.2-cp311-cp311-win_amd64.whl (71.3 kB view details)

Uploaded CPython 3.11Windows x86-64

msgpack-1.2.2-cp311-cp311-win32.whl (64.8 kB view details)

Uploaded CPython 3.11Windows x86

msgpack-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (420.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp311-cp311-musllinux_1_2_riscv64.whl (387.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (407.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (389.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (422.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (413.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (83.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgpack-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgpack-1.2.2-cp310-cp310-win_amd64.whl (70.9 kB view details)

Uploaded CPython 3.10Windows x86-64

msgpack-1.2.2-cp310-cp310-win32.whl (64.8 kB view details)

Uploaded CPython 3.10Windows x86

msgpack-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgpack-1.2.2-cp310-cp310-musllinux_1_2_riscv64.whl (372.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

msgpack-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (389.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgpack-1.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (376.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

msgpack-1.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

msgpack-1.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (398.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

msgpack-1.2.2-cp310-cp310-macosx_11_0_arm64.whl (83.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgpack-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl (83.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: msgpack-1.2.2.tar.gz
  • Upload date:
  • Size: 187.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2.tar.gz
Algorithm Hash digest
SHA256 9eb0b0e602064527a045ea28c4f174ed69383587e29cebe28947e3b84106eb2a
MD5 92fa9532cda14ebc2bc41266481e905b
BLAKE2b-256 6d44ea2100ec54d30c46ee9dba10a3bfb79b655e96c6df237238a3234c75869b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2.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.2.2-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 a378e12ccc06d76efde115caf4073b7e5ff3cc18291d1341f9e65fb882e3f754
MD5 db2ccbf3428320f047b1080f41a2de5c
BLAKE2b-256 605489ed16e6f966a050dc78b0e94a545025211b07ce9f4bdfe07dff70c03fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-win_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.2.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 78.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6f53285f20d592ed309ee19e509cc4c77a3bda1db02ad67e8a0949bb227a5a6d
MD5 629141498f6eadf3a36c6c61548402b6
BLAKE2b-256 5e9d1d02994c7ae2603c98100984428ff0f67443572133bc18eca6058f732c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-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.2.2-cp315-cp315t-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 8c6321a414f8b4a8dc43976b2fa8349156434ca9adedd9a187b796f7e1d3d3fc
MD5 b22f3d62d67698408374241e37bcea7d
BLAKE2b-256 ba4e13783aa7c17414d7186c72c49bc718366f75e49f0ea58d4f81cb63ac3187

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-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.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b13b59e66f107cca1ba708dd5307179870ca1b15b19fcee7ccf722e5308d9212
MD5 644dc94cd2228b54ad31a2e67d826a4c
BLAKE2b-256 cbe38051d53e5495c87c6cf27eb42fb680361017037f87f322bdaf525f71e4a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-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.2.2-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 51dd39d23cfdea0400ed3ff2d29d1e83bd951d3aea79dc89be5b701a09edfe23
MD5 1a5002b1d0094ebe4469dfd2de7da7e7
BLAKE2b-256 02d24e5ac915ba120172d210ef00165c5e6276c8a65db3a4a5cf36e946b83e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-musllinux_1_2_riscv64.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.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68df2947921d449f6dcfeafd86cb2cdde13327a8b447534bbe4ee5aaf32a5695
MD5 f41ba617e32bac3cc01794194d2d5c11
BLAKE2b-256 95770809aa9b52b2868f7d01862dc14073708f0440421a65197b48453480034c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-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.2.2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f80361592c13d7226b4379c8941529b63fe1a9d0e05d2de8f3306b70e522b53f
MD5 ff51c1bf800cd2f8f09b4df9cffd84df
BLAKE2b-256 8a6df76e8425efb0aa38988cd778ae290bfa120491d80d26872d88bb52fedb3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 352ed831042549cca8be23780e1fe7c9177e65ff02bf183509c4b4d33f671782
MD5 c2fd9d4cd51f289d8f00ad6c49628a08
BLAKE2b-256 813070f281a3685b04aaf235a5237da11b978a02a865a5a479186205177ad676

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3c247d457ae9079974c7ce3c665396754a6d2baff7eaa51332212a8a5a3f13b
MD5 99a77fa17f144f604349466ecdf1b5fd
BLAKE2b-256 ca0d0aac5752d1708dcb458f8754db34a4999514db3df2d2b798b9381293f638

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53679573c75cce5f82359e0bd4e6a97809a6b9a9b7a48fd1ba592f4a82cddc84
MD5 a4850989bfdd3563899c9571b534615b
BLAKE2b-256 914ccf6d12a3d709fe5f9771dd917c35e6ebcd55597a5b792287382fde056c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-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.2.2-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d886baa46b2532135e7320067e6a44edb09ba5883a6096b0f9c044533984b8a8
MD5 89b5052cd9cba55dbaa5915cbbf13a66
BLAKE2b-256 cd2012751ca0d8ec874701b54c392c2b19f51af8dd1de40a92a10e356f0aaf58

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315t-macosx_10_15_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.2.2-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 67.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 29cc2d5291711a52956a79a51f41c732329df39ad727c886bd8f0b5b9237a808
MD5 d4b1873a776eb41cfd7b4033a424a0d5
BLAKE2b-256 131a56b90f6defef61700b86baca3637c15f62ac0f9b21ab0f16613ab9d1f101

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-win_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.2.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 73.5 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9352e6cdb510a7b1a5d3ccaccec730e82e50cf3484a3af7bdaab19e23b9589ff
MD5 d22b4c9160dce6861979313e2ba97a7f
BLAKE2b-256 7456d86171f7251015e9312e5a7f9fdd4cf89752fc2114b88fed453d2a040c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-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.2.2-cp315-cp315-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 66.7 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 e2eb7ea0ac3911a7aac9d8aaa36d40f216d99455b3274cd3fac38181bcd910cf
MD5 2a4105b2aae12bc6d8ac18557b28453c
BLAKE2b-256 1bfb32613bced3cad47b40b1b73dd04d687121349d83f748efc2575929121903

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-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.2.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9db1ba1c1e6a84245a9dd866265b56b8a1e9461549cc72ed296d8cbfbd32961b
MD5 07e44e0ba40729e004ddeac0c6968ad9
BLAKE2b-256 a52cd5d2df273ed5306357da25b69400fd8d7a53c4d87d8976604b677484d61c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-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.2.2-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9fd7f32e2f0fb334e7ecc5adb5cf0458785bd3a9d9d86f950e1715f101cebce5
MD5 d97b20525be6d2dc911eb8628b24586b
BLAKE2b-256 4db53d46ba367a565e536d8d2a61eebcee71b1dc803da3ce74a22313b573d6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-musllinux_1_2_riscv64.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.2.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 226a62ffe99fe54c5c61d910ec64c3449b7766c3280bd286bf6c94838dde239a
MD5 d255d89eb0a97446edce9700be2c6b8c
BLAKE2b-256 f426c56d8d086d3fb1077bb48092b158b5ea2eee08b279e10c191275f13bc980

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-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.2.2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0708afbf6a9587f0bfe479a9825c141d14d91e2f6a5c8103cf28bc96f4edb5d9
MD5 f92c96e7df2995fe3fff694d2111737d
BLAKE2b-256 7adfa645102b4cdfd9a94201cac4e900e9c1429fc16d86aa311c06eef82528c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5c696ae7cd7166b3657261adb855b461ff31f07823fdbae9de8bf80adfccc21
MD5 bb14946c5e91ee0fedebc5be9e449c4b
BLAKE2b-256 d25a305c4dca14b50d0b51fb88ef04ec125b8f0be3e2ce730dcc62dbaa651cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06d95f61de7afe4f4ff908a6feebfcb070d0582ac87c9cf3cedf8551cf634516
MD5 349cc1cf683beef56f60216b9e7304df
BLAKE2b-256 d7bf7f53b9e6709a4df7f9b9b81dc65f9dfaa32caf65bee94986ec2cb8fa07f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fbc1bed8a535389b41882cfae66376e248cd1680eaa94fd83193c73e1d24986
MD5 66af67c49961d4d1577bda9e822d0491
BLAKE2b-256 8005c992bb65744665a41b5bf531fc0e1619bae0901f57738228ded90023c151

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-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.2.2-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e1b99ad34613d5f8477fa5cf99bc4eaeaf27965588007c102370cd9a78fe9de5
MD5 0b8a95fd266e889c5f5bb6e186a36051
BLAKE2b-256 3b924b44bc8f3243ef8cf9cb5368c17a299d45b9df858f6dfdd98a0482dbbb37

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp315-cp315-macosx_10_15_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.2.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 11e8c421e117d1c36728b423d0402555cccbf0c6f53e288f0e75b6b12100d70f
MD5 b2859e1078c68ef8de095842ee87da36
BLAKE2b-256 63d44b4b0ef25a86deca91feaf7252ca885ba4f2ada40461379120122a04fe96

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-win_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.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 935b1cfad9b908b0fa845010f4271df4c2f04e1cd26e3f18acd61a45f93c9e36
MD5 1e1e7cfad50ba87762af7f6099ed5a34
BLAKE2b-256 afdffda3a204415dab0a8c0db5461ef7205416ea52bd8581c5cafd361be07f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-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.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 419a45c67a5c04213172a14b1864657e014665b77d7081b107a51707923dd39e
MD5 8bc48f8720506f61c17a9af09b6409cc
BLAKE2b-256 7d426d02c19a01abd8d7ce817c321d2ee6af1a8e24d584dca619d1b6576a83bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-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.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55faa6f8395e23b848c535ad5dcb96b3462f37f5e7f4ac500d500434f7345da7
MD5 bc76372f465b33bb4c8d5c51c86d1ab9
BLAKE2b-256 06bbbf22338cdd22e0b40c8f28468cea5f3d9c320244c095d8303364bc012c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-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.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9bf452ff4d4981f25a18e9476e002bcc9263e7928024aa4d7148e25f7be3f929
MD5 b72b15e8783c7cd13c2419e95769bf54
BLAKE2b-256 279d0c1d9683a951a80f270c3b7dac1022c18b9307617344dd44d904135d5e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-musllinux_1_2_riscv64.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.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 652d1bf13d01bac8fd569def0fe76745e55bcda01e30aa6332d5947ea3788839
MD5 16686d34e6de4ad03f224fcd392de7bf
BLAKE2b-256 0ac4b924cbd5516676f4e612329f18602a833bd055ffbe27f808eeba0f01bfea

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-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.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ffdd2f4950daf7815490f23087963e3420175b9609520b7ff5df64d351159c22
MD5 a708708385d067cf247cac5b649c8738
BLAKE2b-256 c6fcf7d484ee5b572719608e7ffad569bea22ff11309a96ca2fae85eec94226b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d095df2627e5dd59ac7b0c5ad627a671c76e6020171e03cbe4621a61f0562c3
MD5 f4b7045384b0287df3fbca3ee6cf2744
BLAKE2b-256 9521d2d81d50aaedb14147d01f22094185794db3ad8a8791b60afacba0627c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b542ffc0a5c531eedc40419f291f1bd659aa8d4223408a5b51c88a2796083fd3
MD5 f583ab50f03eae32f8f2d54babcee1de
BLAKE2b-256 bd2c126ec8f187877c5f688631c543d1d3a3d75b2e66b83fb9de3ed7c13a39b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f6b6f8deb07d49090e1808c6ef9cb7d23ca17bef3aa6ed3e5e03df16606e60c
MD5 539bf5794b15eaacf5dd16ad57d433f4
BLAKE2b-256 aef0250f5985b6ee533e60d357571a808aaae03c54118294dc3db7158e27feb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-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.2.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f466049b8e1ec0854287bbe9a074316826fe0e08dcf707245f98b1ae49e92650
MD5 3abfb3c80483bf582c63d962b97431f9
BLAKE2b-256 64587e764b957bae80ae281a9cb28761068c8bae8d5c6ac0873e43cc69d176c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314t-macosx_10_15_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.2.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 67.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7826f16edc763e768404f55605ef85dfcf5857e729c1ed29e0d7c180be4fe6d8
MD5 9e0967b10a7f2931411b608e0d173c58
BLAKE2b-256 d555e36f2a33e38657f33850d74e0bf256838a0d45802c298cc501a32bffcc08

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-win_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.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 73.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1510f24612d4b983dff6935d9273e02c320cfd525727fbcb58836a75f589fdbc
MD5 0760bc1077ef8b52385c7421b1779cfb
BLAKE2b-256 4b3d1ce873c8057c65e4fbb076ffe1c99c9ae39d90a00a2540d7b06c652a292f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-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.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 66.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d242f3c4ccf55b056e6cf901720dccde58f1df117898f2bbf3bcd6e38ec7c248
MD5 db884c14487c27cb5e19e56588ab8ea0
BLAKE2b-256 94608366558da954095e04e7fbc351f9387d87a682feaee9a235ceda966f794b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-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.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8dd6c71d20c28d2d0eb0c51e7cccf3584afde3b1364f6629596186c9025bd54
MD5 a763cf736a60457695429cf595499dca
BLAKE2b-256 71cffbbbac0c6e5fbb9d51abc23e3b5fe8620f5c01e0588797cf664a623bb9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-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.2.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6195257a107bf25872ef84aab7295078271eea3ac6413f0506b631f6c9586ed5
MD5 1252c22d3ed246bb152f8fb3a6329556
BLAKE2b-256 47dbd11bd6f258a60703dcdc7a3772818ad0c2f602ee4c2acfb24088c6c3ebc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-musllinux_1_2_riscv64.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.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccfd880988f8438d1c91c77d7edc58e70f4d2012e999167bc154c64c6f06ea6b
MD5 28778486369e9a3d591f3de3c8cfe6fe
BLAKE2b-256 03d409b92e1fcdccea9466bfae45455367ac52362ae445d96a602e51b7a8df73

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-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.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aa1120c653b76d8eafa50423b5eba06b5c9737f8692c74fa3afe03e84b8978ea
MD5 c02dd62cab8fdaa9aad49e4228f1932c
BLAKE2b-256 dae8739a94197358a313307e6e9e7d8d22ef66add39222de911a44161aa96920

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73b0e05c32c3cfc3cd84994908e57430c0ebc6813abf905d3f18ff115d54df3f
MD5 5e05c3c80107264ae371dae8732c84bd
BLAKE2b-256 b64e46f5a5d949dbd054dab60cb15aac7ac6ae6774c134532893414689bf2f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8dc4487097571f7311188c3eca2a3e86cd1f1db4c37c7a017bcc3fd38486cbfe
MD5 4d2e0ab7a395d9de7126e1282c6e3c7c
BLAKE2b-256 1b89996573095bf7b038c04dd65ddbc4f1a4d381b0f7a44ff9186f3c7b8325c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dd9173c5ebaf5ecc5ca86e7ae1db92934e1d57b856f3dd90698941431f4fd77
MD5 a40b95036f6c5c2906d51f7957aef497
BLAKE2b-256 b6dc8efe6dd96a12ab043930cb4cffb40b6e7f061491d6ec7a3d2b75ef1fda42

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-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.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e497ee34e8a3342bbde51b27c22d8db05a651df3361dd3daef5b3ab0d66f3e04
MD5 07af7d90703185cce1753e5e1949d6a5
BLAKE2b-256 5e503e92c403346652cabd08cb8faceef847bae917ea3b3c81b64a5b6d09ed41

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp314-cp314-macosx_10_15_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.2.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d13d07efbf655f9ae7a2352b630c52727b359005b21ba08a507585c9ac8c0896
MD5 28efd7d1caf2561da018bf71730f0053
BLAKE2b-256 bc9ec6ef92046b4a2bbb9d3aa0cb581cbf4a4051afccf6e5fb301a1bd3086f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp313-cp313-win_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.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 72.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b07c03f0da7e5279170df7745ddc732d526c8a198208936ec1a95c11ed2b2d5f
MD5 93d3a9b0e98d5b7f77b36218f71e3093
BLAKE2b-256 3cf8593f5caf0dacab41cde1564c5f0419e61af55ec9628006205e8fd5eb5e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a4161eee7799863aee237c35c90427861f7b994416dd81ae829f560b0a81bdcd
MD5 306635bb2cc24b8e80425d501fc1bdff
BLAKE2b-256 779d4419b8f86c219174b1fb8bbd7faaf84a548935f7b1916d028401b9433417

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d9a562aec0a92fe536da2e533d313b3d2a6b929157b1dec7ff623446dc0a8ab
MD5 58fdba1470ae6322df32e1224ef3c00d
BLAKE2b-256 ccfe1548dede9d9ca482f2d424a2e110a9705d4e02627a16b8bc8d10ce0208a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9b659d77f8726fa5e7038967dda6b68d53cf34472c094cfa5b845454713b90d5
MD5 e34cbeb23258d73ecbb1d37d28e5f697
BLAKE2b-256 bbf796283e50f7020df4dfeacc55612b7a210c8cdf0dda48bc262f1f9b3e4c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp313-cp313-musllinux_1_2_riscv64.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.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 682804bf31e43d46e51a9a33bd575b51e839d715ce6bd5612c055f7b28ad637b
MD5 272d22403984a77932a570f2e4b52645
BLAKE2b-256 038b7ada15c7b64151d6dbb562d1b091520efb2c37acf2403b1d4ae13797b27d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 34e83e345194a2a51d8bd447dea9de2104f91e75b247f4735f14f04529f0746b
MD5 6b73551f61de3ab8c3ea70274bc72816
BLAKE2b-256 e3a1b21c6818a545e9a4a976ac954a5c250eecde9a02e0ec82f415473dab1324

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d24b38a825bcca41bb956de50eb98451ef291304a8607fad99e619043d3e79b9
MD5 da235ea7cb03f66b089d1de0b643c41c
BLAKE2b-256 6ed36592e4064619b04f2dd0054c5fa13e37e3d55eb26044483d871fadb2f46b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1814f92306ae7862908e9ece7cfd90e0dc87ded3e89b6ae7ffdd1175d6376fdc
MD5 9a4a7e3b3dda0edb4977c2458c919a8a
BLAKE2b-256 d77535823e4419df8792191b2a17ae3fe71b41d02c162b2c491c94d1a87f0caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8cdd1f3e7cc52c751092a9bf740e81e6919ab109cd376ae2d965dad0bbae34
MD5 1252a3646e732cbe15a352d2cfff764c
BLAKE2b-256 335410c6c16ddba8a5112e3680176b838e3694e4aad7284f9daa6d6d70d98817

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b2a281b556f120a43e591ea39915741b7ad54d4727b9c4350a0a11692252533
MD5 eadce2d5084e70a2eb031d7be4cabaf9
BLAKE2b-256 1feb42f31c5a48811787ff59a9869721f70a49654d65ab6c455f4463c39b044e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 65.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 59d5b93efa45fd09f620d0c9ba81cde339a2c9937af3eea42ee9653094ce6640
MD5 900f57d6e17902ec066e484887c4b408
BLAKE2b-256 df5e2f323a33a6aba5bd4b2d8b430e4fab21d92cd91c093b49ee287bc166ee54

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp312-cp312-win_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.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b68614fba0570349833b7dd999ff0aed4e5cc8d9eb6e3a7d4527be33c65e33d3
MD5 f2eea9629d34f752a3def38f82ba4d21
BLAKE2b-256 8598a33b8b4af14e3476bb0da1b8c36ef7a0f28dcf95db1c5e68ff88cb89d591

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0e3315de5a4b2920ccef48d96b4448025e064a10d0f5a250f6584477d839c8d4
MD5 45deb352e8736413c2997e3334331d6d
BLAKE2b-256 8e3cce8e9efe1fd9e95c78b3705e4300ba7feba3dc6c00fb76259895db155518

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b554d8164ebb526892194f71dcd96ef1fefe0c250087498785d3ffc04a80be3
MD5 f49d7f2d87ff49015c6e4a9540a57832
BLAKE2b-256 beaf91b0d8d3fb3063e259daee3ea8515cea6282f68f4b0e5f0b6fea25762c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c522420d78db2431887d45b518e304d86e27b9ad0b30f24e3806a6ad5d8bdbfc
MD5 cf4c681d5474390aca3153fbfd0e3cf6
BLAKE2b-256 82fed7be978456ff8552e69a8e270d882e7530e01513c096b293d83df03753ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp312-cp312-musllinux_1_2_riscv64.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.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e915d390d7068b257ca8b62f3fc59fad135c8631d1017ab03b0b924b07c5367
MD5 8b47fd6fee093c187aa6940d54e7705c
BLAKE2b-256 509af10ce11fa62700c9ab87a22e65b9ca272f7f673ddd31aeb2de6ae272ad35

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e91332144f69bc3018c91232fac26da580ef748fb8eaddd7914d4458001cc4f
MD5 25ad28a9ac8b0edf6e526d6c36c23d84
BLAKE2b-256 4e8ec70c8c9180c5ddf4440eb8658ebead98e22e7686fbf84f6b165031430750

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77c2e018417dc1d66f235e383877ee885b60ade9d29e494dd581e08af2cb1923
MD5 45083d935dac0314cc7136306b514fa1
BLAKE2b-256 41f029f591bea185616cf417645ac03bd3ad9b317483ad8572160e325f7fe777

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90986cc9aab9d7d1d8f38bcbf65d3f7ac83bdd90c35765db7d691b4829698cba
MD5 5e39b35735301162ac11da7f7f9f4cba
BLAKE2b-256 dac0d3ede9f5d16acb4c05a9281859f1e99ef9f877a928eb78454c37f70db001

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a652ceeededf71d3fa40c303a02a149d42338d310162367b91c539d4bd6e0a3
MD5 305b4b629e26f81c45f237ff345e1eb9
BLAKE2b-256 8888c2b6d8e81571da87aa232c0e34a3f3a0e618e6235892065ec82d1d81fc7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a4348705be86e029d04e741cf9ed0dfe03e942d7d3b92e838fa80d3aa2c3ebc
MD5 60c519ffd55cc318c6ec283017db17c7
BLAKE2b-256 317890c15bebb1a72667349ca62d4507e9d9369e7f8f76b95f490b823d3622e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 65.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4955accbd87f27beebef5f3ecc27503aa74cb016fb4f640868e749fd93194a35
MD5 8ac927c2f8af79424d9acac703067dac
BLAKE2b-256 46a610d979c4e76b18a9b9ebbd6499ff863474ffe5955028ea27e09b66f6833c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp311-cp311-win_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.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 71.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0883a1578168929fd1640fbbc4614773f1a130e419a8a817dc2918d9af1b651c
MD5 c33ea701afb0a5f99eb64520268d5964
BLAKE2b-256 8413f748f0d59f355d196e71a0b32d48d386a9bd311f94d954e666cf7e5b2572

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf66fb38703e61a486b01b56d43bb1f50698fbe99b6bd90feba10f24fab60b3b
MD5 642e4c0be2c0fa5aa8a62c04e77b940f
BLAKE2b-256 6fa607f9a4f3324d55c3567ab2a7e8d5325291bc95a31a374bb390a21b7c4e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdb6cc6e1127d15879c47a8b3270716243da82d3e7feab1f5946872c75b3d60f
MD5 aa6e03fb6aff04da4829cbcd736bd845
BLAKE2b-256 de0f5d1e6d68e516621697a9262b24917d678793e838cf3f331ed4656b3e959d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 336525cc2688e43ea77dfb1a4ce012c8cde561835913801dbfcfdcf4111d8abb
MD5 5897e97bc60c67ae4ee9b1374bc0330c
BLAKE2b-256 d61b57906337bfee0ead554571dc203ea17c3fad26d51e5eca6271ecd983f73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp311-cp311-musllinux_1_2_riscv64.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.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42fd9260416885b4815caca5bdd14dfd5dda6cdade732d6c09104ef8f6228761
MD5 70f838e1f0b9083401d7f84e8b20e71a
BLAKE2b-256 2afdd8533fed473cc3e309a701e851d0e5fe36ada5552a3899025f5c69fbe877

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8b1415d02e9bf722672af8a90f90813265a0cd0b14163187261e54a5592bc949
MD5 70bffa9199240c041a560828ba26346a
BLAKE2b-256 d3af2b567d684f912fedcefe3f7c37de604716ffa99336bd432688f9f040df92

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f11e09f10210a91c169e39c7a5a1f9090eaa73ad75555fafad5023c3053c47ba
MD5 0cd4b98522ebd76a3c5692e262c744cf
BLAKE2b-256 931517374efe9793f5332c7d4727ab40539f95a1dc9df653531795daca8c4281

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9b0c1f2aa7b0026b4bd50718100e8b04175e4f36e160aa852502377b5e572e7
MD5 1cc0678a162635442c3ea336a71532dc
BLAKE2b-256 acc300dcd902d66a641b9ba350783feb482ea5c1ca4a7ff6629db0c10c0ea982

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fe374ba76eb0ecca13a1703daa8fa85825a6ddddbb52d4c1a732fa524194683
MD5 9108ec53a2b2c3ec4f137e54dfce6986
BLAKE2b-256 0fdfe20bcf5c149890545334743b212eb4b82e1a25fe0a34f99753a1755bfab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d7fb25b4442fae0cb2590272d06ab4f6caa526ee36a994edb81e946b874813e
MD5 265e8ccb8e06650585ae46bb75214113
BLAKE2b-256 53fda05ba8f84c5951c9aec2a19c1c81f6c4a67b8bec80af604ac5b23ccfa019

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 70.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82b1bdf293267afaadcc608b125e7fc6576bb0785a60c4fa7d07c7ab76ed76ec
MD5 31417ae2d2820824bfa998689e0d291a
BLAKE2b-256 571db41e96ff441d46890b9d5982959aea4d15c5d322f92740dbef16e9dfa908

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: msgpack-1.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f3af0baafd184436501004828bb3df64eeb2fc49dfe9d89abcf604956094563
MD5 8626cfb5c12c3030646e842d3801f787
BLAKE2b-256 ca497efba0fd604059f0dc8f57ba2867bda4d57bab6921a12e975ecfbd49284c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46ec851571d8f1b6e29794ebb9dd36f785008da6d14f57c702e60781d6caf648
MD5 6ba58a9f39ed0da61a6c9b42824e25db
BLAKE2b-256 0e03c1e0035e1f923f548b7016a2fef5afea431cdae95d397c5aa52ed75dde05

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9bd3d1557c3fe1a095068210708a03e3e4795973392af6f4047060e70abd9a6c
MD5 0829b1678d3c41c6642d0eec0a05a2da
BLAKE2b-256 4492541e9fa4623587767623788b38d11fc78d402acb1421962a13d3ace48bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp310-cp310-musllinux_1_2_riscv64.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.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e05a94a0442de86818a30281c6cc2cb9cc7aa148386fd3541c4d4774b73cb3a9
MD5 165736c6a06ab2c7a223312d55fd4733
BLAKE2b-256 b5a427400c101a96115fe8484cad57b6c5eb4f9ffba080a1d9be62ec9174bf67

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 86f173a584f72f6164801f31866d22a581f60c991572cf922aed9ab8eb422b77
MD5 9336b82d88d62ffd0989c9a41c2fa53f
BLAKE2b-256 1792d91a08a913a3bbafbede5b9dbf48e4e517f7d92510877b6b02730060ea85

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58ce37a4a54577115922385d37201d9a44d66d0167dfbbf4770a2e9bf8ea7ba3
MD5 0ae37183cfd1001ebc213c9825613622
BLAKE2b-256 3ff5ae93f85b063d744731cb285528210cd950333b167cacc7b2f96e1420a475

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4710d881d8fb047deed2485707409116722af2b992d3fefd73c7667c4e350839
MD5 873fa49393df141bfbd43ef7cd47b88d
BLAKE2b-256 931a77d32a60a80ee67016e77b13bec07e85f1929a92f046da044591c7eb01c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9b4cf3685a135666d27d0d7a73fece74e2fad01d9b508fded89e843512f0e90
MD5 70f055f5cc43cdcdfa572bc4e2b9c452
BLAKE2b-256 03f7a6bf145f7d3eb734b3d97fa295f8007a586799ef56b456c8b27bff62caac

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7afa5431f6f3487c584187ca6c8e2a34e9b106529893b3e720eabb068f6ac970
MD5 635707c2cb0c1b554c7dde8b4a8b77ab
BLAKE2b-256 c940181c8944b28f779ed0b2587d24cc0ccf1bc87248204105327140aa20d63d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.2-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.

Release history Release notifications | RSS feed

This release

1.2.2 This release

88 files

1.2.1

66 files

1.2.0

66 files

1.1.2

62 files

1.1.1

59 files

1.1.0

64 files

1.0.8

56 files

1.0.7

56 files

1.0.6

56 files

1.0.5

63 files

1.0.4

52 files

1.0.3

34 files

1.0.2

28 files

1.0.1

38 files

1.0.0

18 files

0.6.2

21 files

0.6.1

17 files

0.6.0

17 files

0.5.6

15 files

0.5.5

15 files

0.5.4

15 files

0.5.3

9 files

0.5.2

15 files

0.5.1

15 files

0.5.0

11 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page