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)

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.0.tar.gz (183.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.0-cp314-cp314t-win_arm64.whl (71.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgpack-1.2.0-cp314-cp314t-win_amd64.whl (77.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgpack-1.2.0-cp314-cp314t-win32.whl (70.8 kB view details)

Uploaded CPython 3.14tWindows x86

msgpack-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl (376.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (410.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (378.4 kB view details)

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

msgpack-1.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.1 kB view details)

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

msgpack-1.2.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgpack-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (86.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgpack-1.2.0-cp314-cp314-win_arm64.whl (66.7 kB view details)

Uploaded CPython 3.14Windows ARM64

msgpack-1.2.0-cp314-cp314-win_amd64.whl (72.5 kB view details)

Uploaded CPython 3.14Windows x86-64

msgpack-1.2.0-cp314-cp314-win32.whl (65.8 kB view details)

Uploaded CPython 3.14Windows x86

msgpack-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (408.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp314-cp314-musllinux_1_2_riscv64.whl (370.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (394.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (373.3 kB view details)

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

msgpack-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (412.4 kB view details)

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

msgpack-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.3 kB view details)

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

msgpack-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (82.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgpack-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl (83.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgpack-1.2.0-cp313-cp313-win_arm64.whl (64.5 kB view details)

Uploaded CPython 3.13Windows ARM64

msgpack-1.2.0-cp313-cp313-win_amd64.whl (71.1 kB view details)

Uploaded CPython 3.13Windows x86-64

msgpack-1.2.0-cp313-cp313-win32.whl (64.4 kB view details)

Uploaded CPython 3.13Windows x86

msgpack-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp313-cp313-musllinux_1_2_riscv64.whl (371.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (395.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (374.5 kB view details)

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

msgpack-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (416.5 kB view details)

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

msgpack-1.2.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgpack-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgpack-1.2.0-cp312-cp312-win_arm64.whl (64.5 kB view details)

Uploaded CPython 3.12Windows ARM64

msgpack-1.2.0-cp312-cp312-win_amd64.whl (71.2 kB view details)

Uploaded CPython 3.12Windows x86-64

msgpack-1.2.0-cp312-cp312-win32.whl (64.4 kB view details)

Uploaded CPython 3.12Windows x86

msgpack-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp312-cp312-musllinux_1_2_riscv64.whl (374.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (399.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (378.5 kB view details)

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

msgpack-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (420.1 kB view details)

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

msgpack-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (409.7 kB view details)

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

msgpack-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgpack-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgpack-1.2.0-cp311-cp311-win_arm64.whl (64.8 kB view details)

Uploaded CPython 3.11Windows ARM64

msgpack-1.2.0-cp311-cp311-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.11Windows x86-64

msgpack-1.2.0-cp311-cp311-win32.whl (64.0 kB view details)

Uploaded CPython 3.11Windows x86

msgpack-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (420.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp311-cp311-musllinux_1_2_riscv64.whl (384.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (406.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (387.5 kB view details)

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

msgpack-1.2.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (413.8 kB view details)

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

msgpack-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (82.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgpack-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgpack-1.2.0-cp310-cp310-win_amd64.whl (69.9 kB view details)

Uploaded CPython 3.10Windows x86-64

msgpack-1.2.0-cp310-cp310-win32.whl (64.0 kB view details)

Uploaded CPython 3.10Windows x86

msgpack-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgpack-1.2.0-cp310-cp310-musllinux_1_2_riscv64.whl (374.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

msgpack-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (390.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgpack-1.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (372.7 kB view details)

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

msgpack-1.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (405.2 kB view details)

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

msgpack-1.2.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgpack-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: msgpack-1.2.0.tar.gz
  • Upload date:
  • Size: 183.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.0.tar.gz
Algorithm Hash digest
SHA256 8e17af38197bf58e7e819041678f6178f4491493f5b8c8580414f40f7c2c3c41
MD5 d13b7677ffbec29dc66140d7827d28c3
BLAKE2b-256 92236139781ca7aadf656fa8e384fa84693ffb13f299e6931b6526427fe5e297

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 71.0 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2825bb1da548d214ab8a810906b7dd69a10f3838b615a2cc46e5172d3cb44f6e
MD5 15a875230d9eb610117db85a165b0bad
BLAKE2b-256 5b043fa2dffb87bf598696b86bde7cd642d0a7590520c3fa24cd19611dfebeb7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 77.9 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 553b42598165c4dd3235994fd6e4b0dfb1ce5f3fd33d94ba9609442643015f38
MD5 c500aa069307c34254cb27fc88cc2052
BLAKE2b-256 57a89b8791ca96b1be6b9f659c718271e2cb7f99f73f58aad2dd0b30f750f6c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 70.8 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 378caf74c4c718dfc17590ce68a6d710ed398ff6fcf08237de23b77755730b55
MD5 5650ccfaf916dbfd2d0b34c8b2f07b1a
BLAKE2b-256 2dce011ffcd8b919f55196ec53f12ae162e21c879d95afba226894314ff62c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c0bd450f78d0d81722c80da6cdbf674a856967870a9db2f6c4debc4d8b3c67c
MD5 2a71b55d290fe3a48c0338fddf9111cf
BLAKE2b-256 459bbdd143fa79baec411dc658f5686fed680a18b36fcea5fccb6af1b8c7d832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 72bd844902cf0a5ac3af2ef742f253cd0b1e5bcd184f49b4fb9a6a1f7bf305e8
MD5 a64eab794e85554771fcfbcd149d3b7e
BLAKE2b-256 120a195e2c549fd4631eb7f157d016ff15a10c4c1cf82b6d0a9b1edaef5174b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6799f157bb63e79f11e2e590cfdb28423fc18dd60c270c3914b5b4586ae36f7e
MD5 511699a3b4bf1de0bd87c1dcada2d77b
BLAKE2b-256 5484eee4dd703d7a600cf46159d621c070b0b9468cf3dbade4ea8272bf5232a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 610154307b27267266368bc1d1c7bb8aeb71da7be9356d403cb2442d9e6399f5
MD5 bd66736194e42781409cf075770dfa6d
BLAKE2b-256 f900db88e9a08fcd6513decaad06cbd5c168142bc3e662fb2f1aca3a563b7aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 204bc9f5d6e59c1718c0a4a84fc8ff71b5b4562faac257c1a68bca611ecf9b72
MD5 4ac32127ea98d932d738e4da4c6105d7
BLAKE2b-256 176b4fd4aa739f131ded751ca7167c8ee87d2aab32506ebbeea893b60b51d343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf47e3cd11ce044965a9736a322afdd390b31ed602d1c1b10211d1a841f1d587
MD5 46f616e846de2ab42b2259853356ec36
BLAKE2b-256 94c957f8ab98a1b21808c27b6dd6029053e0a796ffbb9b371e460dbe997011a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 409550770632bb28daa70a11d0ed5763f7db38f40b06f7db9f11dd2794d01102
MD5 58a8d01b3e9930907ad5eb22a331538d
BLAKE2b-256 dd24f241bcfdd9e96b2246289357c5a5e5a496189fd41c5844bee802c116aac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afa4a65ab2097795e771a74a3a81ea49534aaeba874eaf426a3332268e045ae6
MD5 9e5166b141c52eac1b7cc3497ed80d38
BLAKE2b-256 39161674faa1b7bddc19e79b465fd8e88e2cf4e3f7cae90723740701e8541068

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 66.7 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 56a318f7df6bec7b40928d6b0519961f20a510d8baabf6baa393a70444588f0a
MD5 5a40400e710983e6e1534a924e9cd4c2
BLAKE2b-256 458c1d948420fdaa24de4efdb8012a6a5bebe09c82ee002b8c2ca745e9917f1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 72.5 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1a3effc392a57744e4681e55d05f97d5ee7b598747d718340a9b4b8a970c40e1
MD5 4c03b6028f0d09b6738bb9d17cea1bf8
BLAKE2b-256 4d136517bf966b841c7675ded30701a068ce141f3e698a27aaa35c702d8e078b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 65.8 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a3faa7edf2388337ae849239878e92f0298b4dab4488e4f1834062f9d0c410c9
MD5 d6164edfb40a2f225f1eedfdc41e0403
BLAKE2b-256 30b2f140ca450524dff4d8d0eb81eb9ed75f8f3e0b1f12e49c5b01617cfa0b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfc057248609742ebbabf6bcd27fea4fd99c4980584e613c168c9b002318298f
MD5 f7b99e25c11704afeb3a93ac91c339ac
BLAKE2b-256 9f3840af3d29232833705a43b0fce0d07425cc280a7b92ab2b29932425b40df4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b9204daeee8d91a7ae5acf2d2a8e3983be9a3025f38aa21bfaefbd7eea84a7dc
MD5 957d1527d5cad9d7b42d006b0a44990a
BLAKE2b-256 d44976f036720a602ea24428cfec5ec806f2487c0380b1bff0a2aa3094e15f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7685e23b0f51745a751629c31713fbefdef8896b31b2bb38299dfa4ae6c0740c
MD5 e7d540d879cef4ee0025b615288ce8ac
BLAKE2b-256 7da4c8b98f8191e985ed2003d87664ce3c95cca41db5d0cf6bf4f54327d32ec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a070147cc2cf6b8a891734e0f5c8fe8f70ed8739ab30ba140b058005a6e86af4
MD5 6437146eb681c2eb5232a304aa9fe464
BLAKE2b-256 374ddf5c575c274fedc68ac9c6c61d045161899efad2afcdc25138efa7edde69

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 544d972459c92aa32e63b800d07c2d9cf2734a3be29cee3a0b478a622850e9f5
MD5 166b74a8b1e1459a786f43b0cbb9ac93
BLAKE2b-256 1b60fb9a08e6ccba882dfd370a5837fe3a07572938fdfe954f0f17fdf3e574b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b276ed50d8ac75d1f134a433ae79af8557d0fa25ee5b4737da533dfc2ce382e8
MD5 eb69b8534919e4c6e9923a4555036478
BLAKE2b-256 59fde64c2c776e6dbad0af3c963fe0c0dd1ee1ba09efac478b233ab1db41868f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e90df581f80f53b372d5d9d9349078d729851a3a0d0bd74f53ccb598d01e45b8
MD5 7284b47973ab840da7ddaf6fc83d4868
BLAKE2b-256 caaa53ddfba0e347cc4b484e95f629c5850b9e800ca8390c91ffc604407acf87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f854fa1a8b55d75d82ef9a905d9cdbeffdf7897c088f6020bd221867da5e56a5
MD5 de6a7040b59927d705899235b2e60f35
BLAKE2b-256 353da7e3cdafa8c0cf36c81e2fa848ec4d30cf089459af45b390ad03f9ce6f49

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 64.5 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fcf8f76fa587c2395fd0057c7232dbf071241f9ad280b235adb7ab585289989e
MD5 67794de5bfd3c05448b547cd9ffdd307
BLAKE2b-256 c75273446b0141c94a856e22b787c56709c0815fc34f185326577e15b26d8cfe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 71.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c3c80949d79578f9dc85fd9fb91edfe6694e8a729cd5744634d59d8455fdde3
MD5 d47ec73c70e1a340857c1261b2a7edfa
BLAKE2b-256 50a5de06718460909aa965737fec4cfe8a15dedc6544a8c55feeb6956fa0d6e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 64.4 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1a1ac6ae1fe23298f79380e7b144c8a454e5d05616b0096584f353ba2d750114
MD5 3775e5d7c44c4b1da713db42fb117638
BLAKE2b-256 6d14c0c619571c02432208a5977a8dbdd3fc65fe1369f8226ca4b6d08cca87d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a804727188ab0ebb237fadb303b743f04925a69d8c3247292d1e33e679767c15
MD5 40a61246942bb8cdc1530f7b467a69b0
BLAKE2b-256 f2da7bade19d60b73e2ef73fb76aaf4504c112a70cb760951b7202a0c64b5111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4dcb9d12ab100ecacdfaaf37a3d72fe8392eacc7054afc1916b12d1b747c8446
MD5 f80a8fff87644cafc23c32dff102f2a3
BLAKE2b-256 b9119565b29b58ce3c33e177b490478b7aaeb8f726ecaaeda26d815893c1db5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50c220579b68a6085b95408b2eaa486b259520f55d8e363ddc9b5d7ba5a6ac6d
MD5 ec2f1f09a4081ddb3b987388cf1ecffb
BLAKE2b-256 0d300c2342fc9092e4498045f5f60bca6ccbe4f4d87789778c2300e6fd6efe82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a96142c14a11cf1a509e8b9aaf72858a3b742b7613e095ce646913e88ce7bd99
MD5 2a4be2605783862b5526c399e4ff012a
BLAKE2b-256 7358567dddf5c5a2790f673bcd7d80c83466d68e5ee9a9674ebca3db8101c0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a186027e4279efa4c8bf06ce30605498d7d0d3af0fba0b9799dce85a3fd4a93c
MD5 fce7ad1e9b1c13b666dc40dcc12c5db6
BLAKE2b-256 fb6368f5d0ea81e167db5f59ddb94dc6f837667062113feff1c73fabf8907061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6827d12eacc16873eba62408a1b7bbe8ecfb4a8f7ed78a631ae9bae6ad43cf2
MD5 04a5c17bba8097989fbea223fbf34ed9
BLAKE2b-256 31138c291196e60aafdbae38f482205d79432297749ac5d412fe638154fb6f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 581e317112260d8ca488d490cad9290a5682276f309c41c7de237a85ed8799c8
MD5 6bc301462389019d1794a6c67d5e9b21
BLAKE2b-256 c9597e6b812629d2f919e586041bffc130e1af32079f71bb20699eed54ed6d92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3a1d30df1f302f2b7a7404afbac2ab76d510036c34cf34dffb01f704a7288e45
MD5 4ec755396e90afdacca943d4eddfe021
BLAKE2b-256 7d262902c6946ab5c8fe1e46e40842dfc32b8824464ad5cd4725364fd83f7a58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 64.5 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6eeb771571f63f68045433b1a35c0256b946f31ed62f006997e40b8ad8b735af
MD5 8cea4793a5a3ee711bc52135c8d83c19
BLAKE2b-256 ba089cc94be1fc1fe3d1379d439326259aef0344274f64623a8138feb54dff68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 71.2 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c23e33cee28dcffa112ae205661da4636fd7b06bd9ad1559a890623b92d060b
MD5 4afcef0b1f80fcee0d85d85ee6fbdf52
BLAKE2b-256 90af8aafce6e5544b43b84cb670aca40c8bea7eb5ae8f42bfcbdc7098739987a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 64.4 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 967e0c891f5f23ab65762f2e5dc95922759c79f1ef99ef4c7e1fdd863e0d0af9
MD5 3f6bb17b39bb74c4f971b60ffecd8c47
BLAKE2b-256 32fbf5c153f614037aaf802d291a4653ba1bb731f56feacba886f7c21c109e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e87c7a21654d18111eb1a89bd5c42baba42e61887365d9e89585e112b4203f9e
MD5 ede9b11f925465da234af39973ae0f8c
BLAKE2b-256 27232d62cf0e971678e96f8a3cfa9bd77fb719ddb98da73790f63c53fd847ad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 717d0b166dd176a5f786aeafff081f6439680acf5af193eb63e6266c12b04d3d
MD5 41a937b3cfdd8d16c569d1c1eb0ddc4f
BLAKE2b-256 daf97abcef683a0ad2e5ab3a4940344aad9f20cdf1f42057ecb0982cf55085d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9cb2e700e85f1e27bbb5c9de6cc1c9a4bc5ac64d5404bdcbcb37a0dc7a947a3
MD5 ad40e1dbed959088e82ccdbbb62f6d89
BLAKE2b-256 802d126e59332a439c94ffd682c38ca0102b23480e2784b3dac48d8959b0bbac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d16e1f2db4a9eebc07b7cc91898d71e710f2eed8358711a605fee802caff8923
MD5 c1bc3ad7fe68407da8b0cc113bbb3dfd
BLAKE2b-256 3ff75ea755a89868c04f9cdf6d96d2d99da4b3d198af10e76a6082dd0fceccc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0d94420d9d52c56568159a69200af7e45eadb29615fa9d09fada140de1c38c7
MD5 66ed13edb768298a692a0fc755dbd27e
BLAKE2b-256 38edb7728573156d70b6b094233b0f38d876fc37340826cf852347ec2c7ca8ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25552ff1f2ff3dc8333e27eabb94f702da5929ed0e07969688194a3e9f12e151
MD5 198a9f81923492686e45cbbbb0525b7e
BLAKE2b-256 2cc89e1668b9897358e5ab39a18142e38be3cf15807e643757782da9f4a53cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0347e3ac0dfee99086d3b68fe959da3f5f657c0019ddbaeaaa259a85f8603422
MD5 93ac5d15e6654225f9efced363553dea
BLAKE2b-256 845f6643b2a6a36ca4bc73c7674831be1d4d581cceecc7eb019dba1915951739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e2d6047ccd11a12c96a69f2bfe026471abef67334c3d0494a93e5310e45140a2
MD5 4a2e450b0d4e938dbfcc62bdd0513e78
BLAKE2b-256 4407dcb13f37e670257c8d0e944f116c799c34ac6968ecb48c83619f7e91d8b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 64.8 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7a260aea1e5e7d6c7f1d9284c7360d29021627b61dc4dd7df144b81210810537
MD5 8516a922d5ba36a75b47d1e5b51f124b
BLAKE2b-256 54d1ffd02e54c064aa73b6b53aa08171f92dc406727077ff275d7050c6aca28a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 70.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 653373c4614c31463ba486a67776e4bb396af289921bd5353e209534b71467fa
MD5 6de09880bcaa4ca306f01db272e2d9f1
BLAKE2b-256 18fadf47f83115375e7717c985265a30f3ba096c5331518e28fb647b55c46d31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 64.0 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cbfd54018d386da0951c7a2be13de0f58559d251313e613b2155e52ed1cbd8f1
MD5 ca66dc25a7a70b4341b19e432cd1adfb
BLAKE2b-256 f75dc4a3fde69a292eecb202caaa87c29df7728644a65118614b821bcaddc05a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd7140f7b09dbe1984a0dff3189375d840247e3e4cf4ac45c5a499b3b599c8d2
MD5 e931405a13d5d87fc978a4c829a4004d
BLAKE2b-256 5dd4de94b3dbc266229f4c2ce84485eeb221220351b7f1931029e875995bb232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ec5851160a3c2c0f77d68ddec620318cd8e7d88d94f9c058190e8ce0dfa1d31
MD5 85b5e83068b630ef2d2e2d11630a9bdc
BLAKE2b-256 39ee3041564f0cc4c2fe7c53315aec0edf3d84807fc9b9ea714e6ac07dbdb1db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ceec7f8e633d5a4b4a32b0416bef90ee3cd1017ea36247f705e523072e576119
MD5 9122191d9d5712f6868e69a764c203a3
BLAKE2b-256 7d125aadd08ff068bfd42e2ac0be6a20aa9819965df8622e87c1f0c6119c1c22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 67055a611e871cb1bd0acb732f2e9f64ca8155ca0bba1d0a5bb362e7209e5541
MD5 c79788b47533647254da2830c154e960
BLAKE2b-256 04e79582f2bd4d7546139fe297740de49bd1f7ef2d195eb0bb9fa5efeee88158

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 106c6d333ff3d4eda075b7d4b9695d1752c5bcc635e40d0dbaf4e276c9ed80e1
MD5 f55dafb9bd7eea6d219df5b6ec1e4a3c
BLAKE2b-256 82311141cbbf7118d525834f20dcd614d1b85f1f2ffd33bc2a5ce710e6dd2516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50fe6434de89073273026dd032a62e8b63f8857a261d7a2df5b07c9e72f3a8f7
MD5 b7579711641486545ab681bb77ec3af0
BLAKE2b-256 d2e1b5accbc1354edbcee107fb35ec247db0547e91c3f90e4fabdeaee500a5a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 317eb298297121bfad9173d748124a04a36af27b6ac39c2bbc1db1ce57608dcf
MD5 966a93498c4606111b2e429ca042bf9f
BLAKE2b-256 aa798d9bfdab933b1c7a02aba9518605a81aa30d38e9efd4915ec1a6b2d55778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec35cd3f127f50806aa10c3f74bf27b749f13ddf1d2217964ada8f38042d1653
MD5 560b6ea44583c7fb04accb03e26c2e61
BLAKE2b-256 ee2335de3182a647fcc84ab304160169edfa5dac7bbd8913fbed0a505ddc0d55

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 69.9 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6371edb47788fbfd8a22016f9a97b5616dd9849bc50abcbb8e82d38f71efa096
MD5 61dafadb42134e4e18916b6f74155e19
BLAKE2b-256 e7e355b14ae13ed056ed35364ff71144c6a12af25227c20093045a945d08273a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 64.0 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7df87173b0e13ddd134919731f13525dbbf75204145597decf1cb86887ebb492
MD5 7501ab241572cca5b015b95f1e3df185
BLAKE2b-256 2c0e9eca2961be302a6fc77a3fcb15faec749e325c9f0a8fe9c4c4576fc2cad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0268c67a74f5f913f545a0fdbbfaa3f6ebcf23b4c3209bb99704a2ea87e13f90
MD5 8422b7cc57bdb19863fa74275ca5da49
BLAKE2b-256 40d7b51b11e58277e6b678ba5a2f6608f88fdb0778973391a39d7f1a385f5bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 82487709d4c597d252311a65370220675fb1cc859e7da9269a3060c03ac02cf6
MD5 14259f6555f7bb29de4d94b47560756e
BLAKE2b-256 9605c4cb5fb30569cff4b4c7be4574adddb0faf7faaf3049bbab000b6f07da5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1feb100651fbe4b39826207cb20af065dfbfbfa43b1bafd7eaa2252abf7acfd
MD5 1c1a96b7767cf5127aecbfe7c3be36de
BLAKE2b-256 133c8c607e10db2225af52107ffa918280483248363819fecb4437a35a1f4ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7e2032dacb0a973fcbf7bd088415a369dae31c5af40e199d234806be22e86765
MD5 b6372da9ee92113a9075c0be50a24409
BLAKE2b-256 63344653bc7f426bd6ce9803f75133aa362232639e5adb8c6b99550107c71ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9004c5a02acd3eca4e15e1ae7b461c32e3711105a28b1ad78be2f6facff4c523
MD5 cf91daec71b31056ed664cf7826eba30
BLAKE2b-256 d81bf4bad0e9dea608b14d36065c44e347e4b10c0392f92cca441496cc0598ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63b35e8e65f04ff7ad5c9c70885da587c74f51e4b4eb3db624eac6d250e8cf59
MD5 e7486cc6dc9e6581411430d618e5d827
BLAKE2b-256 44bac6310a6f37e9bf9279b492640ec425e6f6e68a94e4cac4782ab518b05d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7384859c90b45a28a4b31aa50b49cca84504c9f27df459cea6e072627650dcb
MD5 de9b9f21aaae1a7dfd99581910296775
BLAKE2b-256 3b090b54d386024a9fa2073135212c11d1e83b059d98459d943d5a82ba9dcdc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed8c9495a0f12d17a2b4b69e23f895b88f26aabe40911c86594d3fbddecfff08
MD5 14b767407e6991c9d54b2428874757cf
BLAKE2b-256 0f52fed22bca455ff3ed28c0ee0d1117398b7cb3ce440270050e85b09240fa8d

See more details on using hashes here.

Provenance

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