Anonymous View
Skip to main content

MessagePack serializer

Project description

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.

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.2.1.tar.gz (184.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.1-cp314-cp314t-win_arm64.whl (71.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgpack-1.2.1-cp314-cp314t-win_amd64.whl (78.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgpack-1.2.1-cp314-cp314t-win32.whl (70.9 kB view details)

Uploaded CPython 3.14tWindows x86

msgpack-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (419.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl (378.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (410.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (380.5 kB view details)

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

msgpack-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.4 kB view details)

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

msgpack-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (427.7 kB view details)

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

msgpack-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (86.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgpack-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (86.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgpack-1.2.1-cp314-cp314-win_arm64.whl (66.9 kB view details)

Uploaded CPython 3.14Windows ARM64

msgpack-1.2.1-cp314-cp314-win_amd64.whl (72.6 kB view details)

Uploaded CPython 3.14Windows x86-64

msgpack-1.2.1-cp314-cp314-win32.whl (65.9 kB view details)

Uploaded CPython 3.14Windows x86

msgpack-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (408.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp314-cp314-musllinux_1_2_riscv64.whl (372.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (396.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (374.9 kB view details)

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

msgpack-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (412.1 kB view details)

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

msgpack-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (406.1 kB view details)

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

msgpack-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (83.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgpack-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl (83.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgpack-1.2.1-cp313-cp313-win_arm64.whl (64.8 kB view details)

Uploaded CPython 3.13Windows ARM64

msgpack-1.2.1-cp313-cp313-win_amd64.whl (71.3 kB view details)

Uploaded CPython 3.13Windows x86-64

msgpack-1.2.1-cp313-cp313-win32.whl (64.5 kB view details)

Uploaded CPython 3.13Windows x86

msgpack-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (411.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp313-cp313-musllinux_1_2_riscv64.whl (372.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (397.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (376.3 kB view details)

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

msgpack-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (416.4 kB view details)

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

msgpack-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (407.5 kB view details)

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

msgpack-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (82.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgpack-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgpack-1.2.1-cp312-cp312-win_arm64.whl (64.8 kB view details)

Uploaded CPython 3.12Windows ARM64

msgpack-1.2.1-cp312-cp312-win_amd64.whl (71.4 kB view details)

Uploaded CPython 3.12Windows x86-64

msgpack-1.2.1-cp312-cp312-win32.whl (64.5 kB view details)

Uploaded CPython 3.12Windows x86

msgpack-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (414.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp312-cp312-musllinux_1_2_riscv64.whl (374.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (400.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (377.5 kB view details)

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

msgpack-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (420.0 kB view details)

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

msgpack-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (410.6 kB view details)

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

msgpack-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgpack-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgpack-1.2.1-cp311-cp311-win_arm64.whl (65.1 kB view details)

Uploaded CPython 3.11Windows ARM64

msgpack-1.2.1-cp311-cp311-win_amd64.whl (70.5 kB view details)

Uploaded CPython 3.11Windows x86-64

msgpack-1.2.1-cp311-cp311-win32.whl (64.1 kB view details)

Uploaded CPython 3.11Windows x86

msgpack-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp311-cp311-musllinux_1_2_riscv64.whl (387.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (409.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (390.8 kB view details)

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

msgpack-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (423.8 kB view details)

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

msgpack-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (414.2 kB view details)

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

msgpack-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgpack-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl (82.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgpack-1.2.1-cp310-cp310-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.10Windows x86-64

msgpack-1.2.1-cp310-cp310-win32.whl (64.1 kB view details)

Uploaded CPython 3.10Windows x86

msgpack-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (405.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgpack-1.2.1-cp310-cp310-musllinux_1_2_riscv64.whl (374.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

msgpack-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (392.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgpack-1.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (377.9 kB view details)

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

msgpack-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.6 kB view details)

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

msgpack-1.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (400.7 kB view details)

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

msgpack-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgpack-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1.tar.gz
Algorithm Hash digest
SHA256 04c721c2c7448767e9e3f2520a475663d8ee0f09c31890f6d2bd70fd636a9647
MD5 e0a9c82423574f99314ccd1ed77b8c67
BLAKE2b-256 31f9c0a1c127f9049db9155afc316952ea571720dd01833ff5e4d7e8e6352dbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 71.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0adcf06ffde0777c0e1a9b771a2b1c4226ba1bbf748c8efcc02fcdeca3299107
MD5 ff0462c0542ba3457b74b78839a070f4
BLAKE2b-256 d28a27e2e57055176e366a46b85d02d68e7a5bcfbdd8474c9706375d965f24d3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f12038a35fabd52e56a3547bab42401af49a45caa6dd00b34c44de235bc93ee2
MD5 3ec4161e4c3df82b50202e6ea10bb1da
BLAKE2b-256 130ae608956488a2af014cfe6e3d665e090b8ee42aa14b07f8f95b8880d66b09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 70.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c1c79a604a2969a868a78b6ebd27a887e00c624f14f66b3038e0590cb23332d1
MD5 ef57d7a46ac22241c4eec75fbbb788fa
BLAKE2b-256 2fe1aab6c946570496b78e67804721f3d5e2d62a93081b9b37df77764ef56347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9389552ecf4784886345ead0647e4edc96bee37cbab05b75540f542f766c48c
MD5 e1598af58e2abdf8d4efde5b180393d4
BLAKE2b-256 f54dfa006060ffa1011d32bfae826fe766fe73e02982183601633b7121058ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5f6277e5f783c36786a145e0247fc189a03f35f84b251646e53592d2bc12b355
MD5 d0c62030117f1b50a9de4268aa5ea161
BLAKE2b-256 daea1479f72d200313a76fc2f823a79d1e07ed052ab7b8a0280640aa7b95de42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2ed1e48cc0f460bf3c7780e7137ff21a4e18433451916f2442c1b21036cd7d
MD5 d1eddca420ee340e64c61cd4e9bef5a3
BLAKE2b-256 3e2b92f86956a0c13e8662f7e2ad630c4eb4db07497b967589bd5245e018b2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 575957e79cd51903a4e8495a242442949641e08f1efd5197b43bebd3ea7682b4
MD5 7d41176f2dd5d2a134cf0c6158c0f8fc
BLAKE2b-256 23c71693111db9944ba4ad4b67a1e788400d78a0b6af7a6523dc7e4e58f8274b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 196300e7e5d6e74d50f1607ab9c06c4a1484c383cd22defd727902591f7e8dde
MD5 6d4384a11d6250078b5406112b0a19d7
BLAKE2b-256 b2f93243191dc9937e00756c8bc1b0272fed8f23758e43df2a3b46f533e5090f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20466cca18c49c7292a8984bc15d65857b171e7264bdcb5f96baf8be238791fc
MD5 1d54d55d03ce48d2496f878f20267ba2
BLAKE2b-256 a9b4b774d7eb95561739907fec675582f83203cf41c597a418c2589b4bfb8e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bb9c386f0a329c035ddbab4b72d1028bf9627add8dda41070288563d57ed1b1
MD5 a623951fabe3f51d6b92c28035b6ce1c
BLAKE2b-256 54740b797484013128837f3b1cbb6cea019277c4de4e377dc512b4d9a0f92940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d00f177ca88a77c1cf848d204a38f249751650b601cb6532acc68805d8a8273
MD5 3b904ba27b4075590aae84493d9e681d
BLAKE2b-256 1b02ad2afb678b4de94496cd432b581759b756a92c1192d8c767edd6b132efdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 66.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b50b727bd652bdc37d950336c848ef20ec54a4cafc38dce19b1cd86ad625d0f7
MD5 a650ad886b82e56a8580825c663c6ea7
BLAKE2b-256 a71d5d8c4c89985feb6acefb82a09e501c60392261856d2408d20bfe4f0360b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 72.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 74847557e28ce71bd3c438a447ca90e4b507e997ddbdef8a12a7b283b86c156b
MD5 3833f16763afcf252ad7cb58a85f5036
BLAKE2b-256 16f1467b81e98b24dd3885d7b1857728797b4ffc76a7a7483af4fb321a07de3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 65.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 98b58bdb89c46190e4609bb36abe17c6d4105ad13f9c5f8f6f64d320f8ced3fb
MD5 bb142167715e78ac91dbd13cd97c3244
BLAKE2b-256 82908b630fef07d8c5ab457b71ff2c217910c83d333c7a68472c186e87cc504a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ad5467fc3f68b5468e06c5f788d712e9f8ffc8b0cd1bcb160c105c1ee92dae7
MD5 7b7553168c222fe78be789d59fdcae3d
BLAKE2b-256 59861edc67270099a528fa2093ea60fe191233cd238e4bd30cfacf7db79fc959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dd3bfe82d53edfe4b7fc9a7ec9761e23a7a5b1dac22264505af428253c29ed24
MD5 4aae3caf906c66575ef4182dee0067e4
BLAKE2b-256 102ab4410f906c2ec0008f1608d3ab5143afc3ad3f4e6da0fed3ea2231d0bef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec0e675d59150a6269ddc9139087c722292664a37d071a849c05c473350f1f2d
MD5 5544ef09ccff08c44d6329833ae10627
BLAKE2b-256 9848deaf2326262a8d5ea3295ce9649912ecd3f551ba7ec8e33c665d2ba583f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aa6c4be5d1c02a42b066ca6ddb71adf36432868fdcdb6ee87e634e86e0674190
MD5 9d2386f9bb5857497a4267d0deb8a375
BLAKE2b-256 63d2155d9e71b40e41fd934bc0c48b9b2770f22263e1ac20aad8e29fdca7be3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e2bf9280bceb5efca998435904b5d3e9fdbcc11d90dc9df30aec7973252b720
MD5 006d332c8a9a1885fc00e1421cbf69dd
BLAKE2b-256 19038c63e8cf52958534ef688625965ab04c269a6cadd8caef16758b380a821a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca0dacff965c47afdc3749a8469d7302a8f801d6a28758d55120d75e66ce6889
MD5 d992ba32e69af26eb441de1735167cd0
BLAKE2b-256 b8a699e58722feaffc5f2fbcc0c8c0d1451ab9f84097f7af87291b46af2390f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810b916696c86ef0deb3b74588480224df4c1b071136c34183e4a2a4284d7ac7
MD5 21930844f1d4b2d27fd659ec1577a2e3
BLAKE2b-256 605c15b4c7a0182f75ffa90751958ba36a9c01cafee367d49a3edc10ed140b01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 05f340e47e7e47d2da8db9b53e1bb1d294369e9ef45a747441309f6650b8351d
MD5 f111fd8530911aee49751a44c4f380ab
BLAKE2b-256 7758cce442852c6b9e1639c7c8ac8fd9143121cb32dab0f308df4d1426a8eb9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: msgpack-1.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 afc5febcd4c99effbc02b528e49d6fd0760b2b7d48c05239e345a5fa6e743d9a
MD5 04a628ba77a69ad0b8f3a2b2366c5006
BLAKE2b-256 baee0c0048e7cfbef23c6a94791b8959ab28155232e7956de8a305b5ff588f05

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 33f14fba63278b714efe6ad07e50ea5f03d91537aa6a1c5f1ceca4cf44013ca9
MD5 33302811bd1be3b6c4a7c339c2b4b376
BLAKE2b-256 e298577e10b055096a7dd40732358cabaf7180a20c79ed1dcdbb618e4b9deac7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d09badf350af2be9d189184e04e64cf54ad93569ab3d96fca58bd3e84aad707
MD5 70a96f30940c100c4e4812e104fe8588
BLAKE2b-256 efc5133f4512a56e983a93445c836c9d94d88f3bc2e0980ff4b9e577bd8416ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3dc2feb0876209d9c38aa56cb1de169bd6c4348f1aa48271f241226590993e6
MD5 e398f85163623cd4d4d59a35407d97c8
BLAKE2b-256 e139e2ef7dbf0473bcb8dc7c50bf782a892d67414877b63e47fc88eb189ef5e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1233ee2dd0cefba127583de50ea654677277047d238303521db35def3d7b2e7c
MD5 54172534e3a19822bb174d2f1e269126
BLAKE2b-256 cabe6d5952df75a7f24f35833af764c3a6860780364cb3a0030beb8099e1b2b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85f57e960d877f2977f6430896191b04a21f8901b3b4baf2e4604329f4db5402
MD5 f5a566fbec487742af769d8d5494aacc
BLAKE2b-256 4016738fe6d875ad7e2a9429c165322a4ec088f4f273cdfae63d96a89c467961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dc871b997a9370d855b7394465f2f350e847a5b806dd38dcc9c989e7d87da155
MD5 fa83a81b34e392444343edabe5502d37
BLAKE2b-256 f984e8e9598b557c0ba6ddae901a73780a4c75ac667dddf59414b1e56a42fb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 787c9bebb5833e8f6fc8abca3c0597683d8d87f56a8842b6b89c75a5f3176e2d
MD5 82e2fd31e8311b4fe8c1f36ee5ef6f0c
BLAKE2b-256 79d336a46a8ed992b781acbc05928bd5bee3c810cb0c3563bf81a7b0c04a1a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f310233ef7fb9c14e201c93639fe5f5260b005f56f0b29048e999c30935596cc
MD5 2ede2b7ee814b84a0d2bbc7da0df676e
BLAKE2b-256 e310ddf7b06db879e8792d13934ddda09ff20bd2a583fd84c9b59aae9b0e650b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 491cc39455ca765fad51fb451bf2915eb2cf41192ab5801ce8d67c1d614fe056
MD5 152fff5bc2aa2335388e4f93871262df
BLAKE2b-256 6471fbcfa83a1d6a9c6091942d1cfd070962244664b87427a9a49a6897b1b219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0a70e3cf2804a300d921bb0940426e35f4e489a23adfb77a808892241db0a064
MD5 3d04ef38c9a14be87319014bbc6f1606
BLAKE2b-256 b0acdcddcab6f6c20ecb387ca5e980371cdb3f87ff69aeca388be97eebc4c074

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4227224aaec8f7fbcbfbd4272319347b2bb4030366502600f8c45588c5187b07
MD5 d40a3396129ab57d3572e50672e71d5a
BLAKE2b-256 8f32ebfe84c9929f08f188d56c7a2fd913406a9ddad76a634697c1c43b8112e6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5c24aa15d5963051e1a5c62b12c50cd705992502b5ec1f3bece6046f33c9fc24
MD5 ad91ca3731a6c7c277ec5c9e5a29360d
BLAKE2b-256 577fce1e377df7e62461fefd9eb23bfb93a4a523f40a517b377b8f844d836828

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c0d9802354507bcba62af19c17918e3eb437cc25e6f50657d511b5856a77aac
MD5 568d62276d19859b48e89f4fb592ac28
BLAKE2b-256 2eb98377a5ad8953fc0437c70cc98d9ae29f27fe5ac5109fbec0812085865735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f02cf17a6ca1abe29b5f980644f7551f94d71f2011509b26d8625ce038f0df64
MD5 f5268b6602dd6a98e0a1e9f411c6cbe5
BLAKE2b-256 17ddfa8bd265110dfa51c20cb529f9e6d240a16fafe7e645004c6af2d01353ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e4f1d0f8f98ade9634e01fb704a408f9336c0a8f1117b369f5db83dc7551d8b1
MD5 6dd542f08f4e42409048512dfb611799
BLAKE2b-256 a6df8e2ac970c8f99264cd9997d1c73df5466bc19da3301d7dc5500862a9b089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b267ce94efb76fbd1b3373511420074ee3187f0f7811bf394531de13294735a
MD5 8324c0996f7d6c5f2c27a0389d3c3229
BLAKE2b-256 edbf35963899493b32030c85fc513b723ae66144ac70c11ebc52e889e16e3d99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4202c74688ca06591f78cb18988228bd4cca2cc75d57b60008372892d2f1e6e6
MD5 f8e6bf1c3da838d55327b4d15ed6e7cf
BLAKE2b-256 5acc85039b7b0eb168aaad7383a23c97e291a11f08351cb45a606ce865e4e3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 020e881a764b20d8d7ca1a54fc01b8175519d108e3c3f194fddc200bda95951a
MD5 8a86658ba329dc956daa5fa45c768db3
BLAKE2b-256 6afd6adabd4f6d5e686f97dd02ce7fce3fe4cf672cbac36b8f67ff4040e8ad8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60926b75d00c8e816ef98f3034f484a8bc64242d66839cef4cf7e503142316a0
MD5 7baaeb7d1009d7de935569247e2de5e1
BLAKE2b-256 26aa753ad8b007b464e1d8aa0c8e650b9c5f4f725e658fc5ac8a7635c55b7f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3567748a5107cb40cdf66a275430c2f87c07777698f4bfd25c35f44d533258c
MD5 165256e20a6d0627d4f34352077f95ca
BLAKE2b-256 502eebdb85a8da151397a2790363676b7ed7c125924fe618e4c6d8befb0cc62c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2ef59c659f289eddf8aa6623823f19fa2f40a4029266889eac7a2505dd210c35
MD5 eed25b3a2979afc80cd61cf2717c47d6
BLAKE2b-256 bcdd9e8cbd8f5582ca4b590336f2b91ee5662f6a6ca562b565abaf696a0f81ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 65.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6ee967f7c7e1df2890c671ff2ee51a28ded0efc95da3e507176dee881ce36c66
MD5 b0c9550288ab81523ff1026b76fe775e
BLAKE2b-256 6dbe6798347b425e26f35db82e69dd83c09716c856a3714e7bffc4c0860fd830

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2eda0b7ebb1283a98d3e4492ac933c8af6aff59fd3df1c3ed024f536af4b1dc8
MD5 5dc816d57986811617c597494a00a10a
BLAKE2b-256 3f07ca212739d179f9083bff2c7c08c24101c3555a334fadc2b876b18768a3ae

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 91054a783328e0ea7954b8771095705c8d2243b814743fbaadf14552c9c52c5d
MD5 211fde91bc6522205764bb89b220df28
BLAKE2b-256 57cfe673683c4c6c90c1022b24c65af4b03eda72b182a1176ef6449069d66acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67f6dd22fa72a93752643f07889796d62739a13415ee630169a8ce764f86cf9f
MD5 524ba899e914566fbcfa74809211bb37
BLAKE2b-256 0911f8563e471093420cf6478cb3271a0175d8402b82d879783d4035d2d03360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 779197a6513bab3c3632265e3d0f7cb3227e62510841a6f34f1eaa37efbb345e
MD5 fe31dbf77bd78ca355aeadc07ce81e30
BLAKE2b-256 70ff59aa3887b860bbf43532835e192b1c388a17590d6068ae4f8b2bc74c906e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ff92d7feeaf5bc26c51495b69e2f99ed97ab79346fb6555f44be7dd2ac6503b
MD5 e282ebc494994774ece315fa0a44988f
BLAKE2b-256 a84662ed8c2e87d7021eab19921594d961ef3aa3794eec76c716dc30f3bfd433

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7d31c0ac0c640f877804c67cb2bc9f4e23dc2db97e96c2e67fa27d38283b41f8
MD5 3e7f182822be57f99d95cc40049c65d5
BLAKE2b-256 d2b6e5c737515ed1f166664b87601b532f58cbb73d8aa6a90b99f7c2c5037e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a28d076ca7c82b9c8728ad90b7147489449557038bed50e4241eb832395169b4
MD5 96b553edf7dcaa08bd1cf3837f4575b1
BLAKE2b-256 038d671d81534ea0e2b0e8a121be100020da09eb78861fe3aa8f3ef7dcd3bed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 146ee4e9ce80b365c6d4c47073da9da7bcec473e58194ceee5dd7620ace77e06
MD5 c70f8606afd08971b065e0a03b283300
BLAKE2b-256 70e07ba9e1542bf0771a27b8b37c1316e3f95ae9d748fd765284655c476ad4ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aded5bdf32609dc7987a49bbbd15a8ef096193f96dd8bbeb791de729e650acf5
MD5 33e70639781fb6b0939eaa33cd022632
BLAKE2b-256 0c3add518a1bf78ed1e9ad8afe57307c079a00eafe4b3068932a27ca1ea56b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29a3f6e9667868429d8240dfd063ea5ffdc1321c13d783aa23827a38de0dcb22
MD5 63327519796646721127556218f023d7
BLAKE2b-256 f46be9b1cdc042c4458801d2545ed782a95f3d6ba8e270cce8745b8603c7f748

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ff164c1b0bcb740b073b99e945234d0212852fa378e44a208c425379140dbeb
MD5 263d58f61daf84485d1a0ab2c2c8d0d4
BLAKE2b-256 ba9389976c696fb0224662239d952c47b4d1661b34d79a332ef5584facaa8579

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 298872ecf9e61950f1c6af4ca969b859ee91783bb920ef6e6172697d0c8aad74
MD5 b096c94e38d38b91c7191513ae657c79
BLAKE2b-256 43b6f10117be7ca7a51e8feed699a907b8e663a8cd66e115ae6b4fb30cc7945c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 633727297ed063441fd1cda2288865487f33ad14eeb8831afb5f0c396a62cfce
MD5 e7326373f8d39a65f4487680aae234a7
BLAKE2b-256 a22e9ee200cde32fd1a0101b4006202fde554c1860adfb9bf7bff31ea4c08df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ee1d9ed27d0497b848923746cf762ed2e7db24f4be7eec8e5cbe8c766aa707b7
MD5 172d2a9243cfd48e399ecf6f132526ec
BLAKE2b-256 42ebb67cf64218a2fa25e1c671fe1d3dbb06cbeb973e71bc4b822da079862d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 350cb813d0af6e65d2f7ef0d729f7ff5be5a8bce03665892f43e5883d4ecc1b8
MD5 56426a693dbd3a31719ac3324625e7d4
BLAKE2b-256 3ddc9ebe654a73c3aed2e40aa6b52e3c2a02b5f53ef0085fa235a45d5b367f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 01e2dd6c9b19d333a00282330cc8a73d38d8dabc306dc5b42cd668c3ac82e833
MD5 92abde7da396876b8e4ebb560a594461
BLAKE2b-256 7970fb7668ce0386819303047057aef6fc1da73b584291d9cff82b821744e2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83efa1c898e0fc5380fc0cabbf75164c52e3b5cbb45973710d75821928380c73
MD5 08bc5485d4d1f33d9649cb363a01418c
BLAKE2b-256 fa7f5ce020168cf0439041526e95aa068c722c016aee21624e331aeabeee2e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dabedcd0f23559f3596428c6589c1cd8c6eaed3a0d720795b07b0225d769203
MD5 d97fdf2ed280deb368385356f1c6c420
BLAKE2b-256 199fa70c9cb1a04ecc134005149367dcfe35d167284e8f65035a1e4156ad17b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1548006a91aa93c5da81f3bdcebc1a0d10cea2d25969754fbe848da622b2b895
MD5 fb1e3c8c01acb7475f9c08fe37304454
BLAKE2b-256 e43c08ecd5cdfe4e2de43aec79062028ad0f7b2d9b1fea5430068c198ba570da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c7b398c56ff125feae96c2737abfec5595f1fa0aa186df60c56040b8accb95c
MD5 f89d494b15742cc641efa64d876ceab7
BLAKE2b-256 5b16f70100614b69feb3ade7285f08c9c52d6cda0a5c03f3f5e2facd63acb211

See more details on using hashes here.

Provenance

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

Supported by

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