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.0rc1.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.0rc1-cp314-cp314t-win_arm64.whl (71.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgpack-1.2.0rc1-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.0rc1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.2 kB view details)

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

msgpack-1.2.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.3 kB view details)

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

msgpack-1.2.0rc1-cp314-cp314t-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

msgpack-1.2.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl (374.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp312-cp312-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

msgpack-1.2.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl (384.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

msgpack-1.2.0rc1-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.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl (374.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

msgpack-1.2.0rc1-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.0rc1.tar.gz.

File metadata

  • Download URL: msgpack-1.2.0rc1.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 849f89207974443eab7b9fb5504e0c2dfff1f0cbefd3d2cdeb05140f0d70b97e
MD5 52fdbb73019a7b63c6e1ba56ee252ac8
BLAKE2b-256 74da44cc218890c9ee7c82375051971b21d8099935d6b60b4aea2448f1dd21fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5fa8e09c87a43b2233379544b89ed1905da32c4684cd2d1ca32d37b13e20cc14
MD5 b73206650a0157234b50e04f97db937b
BLAKE2b-256 01f4f2f4eb3c975e92d38f3622f8e6cf64f8547892fc97d7b97c32d44c63c7e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0e10c814399e551e2d31e436d97044469fbff46a0fd8298ead427c82ab45a197
MD5 1764223de3b25b9ba3ac8712b52d8f89
BLAKE2b-256 fe2cc6ef845bfb9914dfa2a374493c531568347bde545d34286bc744c6ccfbe6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cd794367d1dd4c5dfafab95ab44193ad44649ad60a32a388121d7f99ecd496e5
MD5 e09677e5887c7dd69de4f842b0ac9cb5
BLAKE2b-256 7656102c04714368f14958259deaf6c18362d319bc1f2e626be720b5e67dabea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3383cd6bbf60520802dd27311554cb536ba80b2edb9eb82f4ee7718951291a4e
MD5 d1ba84c3f7e7f6be84f3e9090512ccba
BLAKE2b-256 9190130f380e104e73f865cc82e23dca3bb0257ea70bf32cb84769872943a887

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 29214cf82a261fdebac15f292b881cf392facc2007216f6d6cd62dc5cd8c12a1
MD5 59ff6169e8948b3a160a1af429be04a2
BLAKE2b-256 41262e7ec7402f8bdf573515d1585920b770be4510f8d4545ffdf5afafb2fffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dd0c7e6372f6279702a07f76992fed4426ced39ddcccdfaea03caa7580220b0
MD5 85981b54a3421e8b5a46eea38066407f
BLAKE2b-256 afc5a978aee668ea1d2225f973a1fa60ea38f7ead8fec2a2483b49af81249a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2f8c8260a181a2cb609ea236a12117de8e3ac0d47cc406b1c3e83a42fdeb5460
MD5 fe06e8be645f84395a8930fc60d540a2
BLAKE2b-256 d8e312bf6012d56b7921784a711bface0313ca223cb0d0b8efbc19465f831f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92e23fd0113a8b9407fb6ac310ac41ba01e1498ef9fc45793e2e2333e2bc105b
MD5 d2dd785779565316bf0cbe4e223cf6e3
BLAKE2b-256 a92634407e40e03a6a1b05bee4af9ebe31ecdac64612c8899f763a407e56e419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 524ccc4b1434bc81d2746917d98f998743a4f9d0fb3722828bb2ad54b79d764f
MD5 5852e2e4ea666ed1f3d05c13ef47a827
BLAKE2b-256 65c2aa2adcc8d81a96d35ef31c42469ad5d757aad4cee23d2b66d1ae2c16e062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f92bdc70a478e0c3becfde76d06548ac429b9fd01d6e02e9a4e8c6bd4482e2b5
MD5 18ee7fbcf2d90aaac2c3efdc415bb05e
BLAKE2b-256 7775c971adb1291542dd9bbd0f3718f6167dd03744525878cd2de7cf1a49585d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc7fdbf9f303b819dc1cb8ead3e1541526777f016ec26096e470e83236ad3ba8
MD5 694489d572a1dc97da9f59e3ca87f2b9
BLAKE2b-256 600ea662e4fad00e32a63bd4b1ad1ea4f072f679b6875c21749805d63968301c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fdb91f47e455edeaa2bee1d16d4b8368fe58a56155495a69b434cf21f617006e
MD5 809100cfcbe2ca117ef2d5f829a403bc
BLAKE2b-256 b41a6690a7e73faefbb4124da45d40a9a5742b192f920c4eacce940b999abb73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af5a3fb8df4b10638d9087f91185d330b87d5617b23de05820df58bd2de94eb2
MD5 d9b829fc7a3bcba751499e26cbe2e7c9
BLAKE2b-256 f9ff11f8bf378df961c3cde1c4efd2e4e192cf7fd85e403b2adc0f5fe8b4a88f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 09f4f4e192086eeac112886ecc83a847dbe7592b926c877e1875fc34cc7fb14e
MD5 072fad5b7172096046ac3b1852f295e9
BLAKE2b-256 fef0b2f7c79ad791b3e89da14408dd85591de8b1e7c3e4ac1ea396159d7ec0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 422eb464bec556854bd83c91f7627241f10a48a0cf6fe89276caae4a6c7275a8
MD5 29c821b2580554711a9cfafff2d390da
BLAKE2b-256 160cfbea1f23dc06b17c47decf4a063b9ed2e73bbca5811b392769bd173691cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 67ff968a9846a21624620f7ed262d4513483bbd37726bf2b9e5ade4223295738
MD5 4e800668d1839b70fd709b17bc6b67b7
BLAKE2b-256 8e4945ca3cb47a4a4e37401c0fb5b0b1427bf73dd0128beefbcae6e0999bff9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bce84a3bf80e770025044b5733d2973fd0693aa1e929483505c8be1f9b3c8d80
MD5 7b7ccc1d07db962c5dc8a6ed473b6887
BLAKE2b-256 1f37bd46dd0982aace6b2c16ee465a48187908fb7d92cf76da5588eebe4d1e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 746ae454c93dfeff705c3213d6c1d502a41d3c96646ad465aab825636da8c8be
MD5 4aeb4c0a77907f77627b3037b5104f11
BLAKE2b-256 2b29b487119dc5bd667e1b869de7fbf4a8a31b911d779c1b9acbb1f9bc49d482

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67516e82572507873a79ecaefb43d7a68468bac539df81d676775a892d635338
MD5 82333bd518256a46ad2161e8d406a6fb
BLAKE2b-256 245433862b34a62d5179f107ff0aacb19af8e360e56fdc55dbe62f3ac05fbfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 821200df69230b343d612f6a42ce73bb7845e1ffa96dbdc33cb61951c31365b2
MD5 5839b8f1da7d296cd53863bec2a5a832
BLAKE2b-256 ffb2eb575bb44b6d6dc2fce204f96aa9046cfcfbe35ddc1e5a7074637532420a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6508014653e34bbb3b79cf4a688242a3532ce092532bf3e5f1a70708af5fd9d
MD5 9a777f7b327b507e55829cd65cc655ae
BLAKE2b-256 12105df06e47c2ccde86d1916553096e47b9f7071ed3a842a118d77f6db66e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93758ac3dc5fb550646232ed8efa81c0c7d8a3e34edfe1b1be84d25a7682c821
MD5 9e83c073e3cf00e2fcbe2037f97060a8
BLAKE2b-256 f081c67daf986fdf55e8f17e4fe16916692248383614d5d5f89457dfb4d5f62e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e70c5067af60916ad5ac154ac0cd95fe10debba253608be52b61747d07d05059
MD5 21e176aa2c7f5a8e2f06cab96ea989e3
BLAKE2b-256 6f1433dcb5339587fe2d0ae6edc25ff93d6a6e14c8af7c8b6bc61aa6113d5ef2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52c7182fc5b690f75721a286379cb1b8a0b1bfd2f26f134cbd4225eaa061eef0
MD5 92e40462e13eb699b9b9df622fad65d2
BLAKE2b-256 a0a6b30b81e16f9d302f7d3aa6376c803dac99111f855cc051301dbd2e65c89c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b6c3fd8c1c1225e01fa05303c70360953efe3e1cd907fe808035242a118122c7
MD5 416778dd583af5b58ca1eb3ec773c12a
BLAKE2b-256 aed3dcac5f6f89bd04036b2f494910e60e0adfa37c2563edddc8be4a6ac7a019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5e728ea67f232ad8eb4003afad02303edf8af405eca5a8129eafe85c82c6294
MD5 9b37bf501186e95f799b1ccdd209afaf
BLAKE2b-256 497d82043c49c4a48436f6644dcbb2ac9f51889d1fc5135eebd855214bff08a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d6923c02ebb62292d235f3705f36040396be0fbb6e2f893fa704f46f906ef25f
MD5 4f924eaf44e656f9692a8cb6317a393d
BLAKE2b-256 1b07875a454428a5f39906f111e022d73ec5d86e9f3f4c4eb2e38b16055d436a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a673f6db2632b8f83da57c6032d26657f8bba5452860a74208960f11670a57c
MD5 e9ebdd124ff03d77c150b53190b98efc
BLAKE2b-256 b44dc0c11e24a987af75ce50b55e204bfad4b26b11385713b932c1826763893e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f0847ee4c8708288b9b574d8d0dd11473d5d74150cee234ae1ac03bf9e9d4228
MD5 59ba2e01181318dd7573bd9763a567ff
BLAKE2b-256 7d64cfd6fb7cb2b7511b08273bb0bff5d6a2b9f6036c29327da3095ae427df42

See more details on using hashes here.

Provenance

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

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f3d2883545ee3084c569ce95872f501f27fb3e61315e03b3d9d4101e35b2a37
MD5 3140a2475fa31ab5788e70ee36ca55f5
BLAKE2b-256 13275cf395eab8eb58f918ece18bf9492682acbf44dfa6347901a45250ce97c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf7cbe8a0aee2b89a4d39aad90ba6288e84cd25a472e70ce5f9c4c0410085abc
MD5 df8d3aaf0d66199fd1fcc38cbede8645
BLAKE2b-256 321f0eea797012a7066262c567f8872de09fda5387961e624cf0b5fd293558fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 064abba1ee32b3e06c1cb93e8c25f52a0345c5c7abf1a8b56663790c3e301769
MD5 f5345502304d40244c04cec2554e688a
BLAKE2b-256 74dd41ba301a466e31419ef57f2c3865ed81f54b2431eed54c3386d2815bdc29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bf184563ef2df10b1fe94337c2c79065eace9bca369921fea98f39af3fbf4afd
MD5 2c4c9be29d2ca051df2799c412da0b95
BLAKE2b-256 53acc166f49c1c3ce40c3d7f68485bc147bf01d9c574ecaa5e23e58f4d642d79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5c9cc073411a59f6d112f9f2b87a67632751d183b03cacc64a67ae6c6b3e1f9
MD5 5b10ca4ba98519c87554b3ac8255d75b
BLAKE2b-256 de89bc845dbc8cff264792a9347b06c9f3fd9a12c815295f979f462994c7b78a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f0b32400fe37db898d374c04d6f977982cdce8160f3ed95192b32e223c9d29d4
MD5 69b1f7d64d58954ed539aa8d8e619f22
BLAKE2b-256 1e1e5c81ba49879101e62ff24f86e91a84b96ad340eabbf5b895aceb694914d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e6d7ff7eb675c5c023c1d08b032c6d988ff81c09215db53d62c9918a4b81ec7
MD5 76cf81bd13dc8db0280993aa4af1cada
BLAKE2b-256 b434898d3615fc58931ae828fe6a88c9a977358ad4a5e891b02e50d95c37035f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 01eeb712c5385be44cefd43a9567383cd3b361bf0501a6de35f1156d5d5c22de
MD5 10c03c17f160f8929735ee28a1ba4c91
BLAKE2b-256 3c81cfc7367555fefedec967f542bdf442a91815ae4ec3b907d18b024538b7e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cab14671f5fff32b6f89e7402f394d574d78f66f579fe13bed68402c2edb0bd
MD5 ff4cb70bd2871cc5c2113272f56a178a
BLAKE2b-256 36815260b56acfbbc564c495f3f5fc6e4572e277b4b33533a337d3af3ca866b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9ae3c8e4adfebaf63373b1baeb0aed3583c986fee92172686df432c9ff0766ec
MD5 be5ab75be293f9e3202971fb0ad808df
BLAKE2b-256 40cf5d5e4feabec5c0f043d8b9f086d162ca9f26efc2471ff0403b9aaaea7999

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cfb20183681e8e10b945582c2d01c3c211c5ac2f134d0e0ee58d58df0404f29
MD5 9c402b8160476e59eb1645f79dddfa46
BLAKE2b-256 233d948b986fc732bde88fe7724b4c3d5f31ab3f9934556ca9766f5cb0923aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e828a16bb98c92b2aa6958d16347e3c8a5c8403edff1c30c07a157f731379e7d
MD5 3bc18b28bb457ae840f845eb39a50447
BLAKE2b-256 0abcaaff5d899d31392ccd5ce4599d61821a4c32b53a6b4433b898ed9c710ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53f3a578c1e7fa9936246c1dd02396c1488eb11e6e05f322bbf9ba4f21005bec
MD5 040e4f4d9e7460ffc99b8f5da8ca3a0c
BLAKE2b-256 dea7885508f4aa6131375c8d78f3e19f7690975986f51b85d59cb90b312f96bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e63fcec32768bc7128ea05302564dcf13636a5dda96f69d9c2bda6e8f1f22797
MD5 e209d2a469b57804085ceff028fd088c
BLAKE2b-256 d5a0d349fb0fdb9365cfa1e0e5536381c4abae88f74680e2c4c092d4164bb085

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e258f18b57f7ee9b4104aae11a1efcbcc4782cccea5cc777df714ce38faf20c4
MD5 4df3060a4a7d12244e224ef3eb7e6ac5
BLAKE2b-256 c8f85c6956282858c977f23d7224e0be9a70a4c97eebb972da9bcd24d2cda46b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84f340f43b48a5c5c23a333a2172a39968165e5d5e5e0ec89ac24ec2216d0297
MD5 5cb4298bcb7fc1f3723948ef051586d9
BLAKE2b-256 0f5a907db4943aa3c8d1d27ca1baedd3766b252d442145c5c94149614329afdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9b8e6b55031de6a89b08e3cb09002dbf17c7f7f1b83af70417df68ad00d87bca
MD5 8dd24b52f9eed1b395125898c2923fdd
BLAKE2b-256 09ed37b61e70e092a7b7959c357c82ea6f0fa83b8c8af9848d40fd523c0c338c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a20652a79621ee9bdde0ca679b5db714ac7fde82370f35e1ff4729c117da6a0
MD5 5612379919ea9501a6a0b967e950a05b
BLAKE2b-256 b92b44a36d809e49a771b690f8641c43f9e7656778856bf849da4daece584a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8096339a747c4cf7a1a8ed06bd571743fd0e73f1ba0a19513f920601d718e63c
MD5 1e8fe04206220ba7054d376dd1eba179
BLAKE2b-256 fccf021ffd09d437bd99a6265b0e986e882e846dda01af43a1ca6bad360981a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1633ef369be1a1029387630d0cdde9856f8025e7d17abfeadc040c0696d42fdb
MD5 7d8989cc73b831acf6a716132f7bc468
BLAKE2b-256 6f2c2746dd54b17e137c417e237c5295101ed5f301b0f206261a46b698814dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4b325ea4a12561b6d2fccb9666526ee940731dfc8f1fe8f89ad2db1a713812d3
MD5 d9ea2f4eafe1c68ccd3f0d0540328d8a
BLAKE2b-256 64969214b129f78de2a65aa0497b0128b1bf3812f188a648f890c99c49538c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fe89815b8c54965cec1f11ed888a8be0935b70b1752a27fa9bc6c746ad9cc1f
MD5 4e117581f7ef29c2385c3f1e1b043612
BLAKE2b-256 ab248ea968589ad0c80d5954505a64b5348aabeb093342930f7a9041f4b1acbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fdbf39425adf288fe0204c00be4084b29fdfa62398bfe81d162c9269f5bf24d
MD5 c1ae8aa5f05355a0d45890464a4e63a8
BLAKE2b-256 f99cf49c1025b623dc95056b80162339514392e9a93a26b34abf3c583b615ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4964bf90849d8805df8c16d00767e06e4331f2a4687172e8d6215ca901d0896c
MD5 2ef626251cd8e6b032ec73f567ce7f50
BLAKE2b-256 99ccec07c320b5a1e61e5027caf8b5712b17f8fdd549081d11744bcdbdea2efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 505f39fb00109709e3051cecfaf66087dda8e8cc986351016ca86d956bfec2c5
MD5 e8ef1cf6e8e2d4e23b8101fedddcdcd2
BLAKE2b-256 40182339cfd1e0ee438890c5897418682c204b9e8ff5874acd39ae766c4b9e7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 576d959b0900847ee128c730e4bf81a201f4deb86784d5aa7e8779d310966303
MD5 1fc516ba4a8de9824c80f1fc5d269dea
BLAKE2b-256 b13b2663dd470d783a955abfb492c26a4a031337aaea78dddcbe0c6038424926

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgpack-1.2.0rc1-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.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 035feb27d612e559c8c5e175683b14d2ccf64c49c432fdc8177dd6c3e9aa5b25
MD5 6f3eeb6d1d4b5128dc14e5a46be3a9df
BLAKE2b-256 fd7eb0dfd3909f2153510efb572e49f751dc9064acb82cf838c43f4034ab2bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 957f7154496f10b1f29ef8960bd2027783c998883fc75aa98935fcd32ea6ba03
MD5 ca68afe61bcd1a13a76893b89560a508
BLAKE2b-256 5fb8718b2e56a3e07ad308fd8c6a1a0cbb7a79648d8e8c008218be1dbd2df1c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a9c71b4d5c536c87c178d44b7dba95e98a831d15d62c79395bebda676a50f1e8
MD5 0ba6fb955f15caec05597ad50bc6da16
BLAKE2b-256 6636ceb549653a28de8b018fdab286408f28acb5b93805e773b9a396b0b0e229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8805d73dad95ff3bf1ffa58e7569014a18988ce79776706843916bbafca3b32c
MD5 74c9554b9c50750ae9f7bbd8ef7288c2
BLAKE2b-256 488ad005a14c6f3b8e486966acd3035246eec072e488a473fbe33b8ed2922f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9ef16d6fae757d50c059700806d18e119aee7ade463c1be3da443e213298b3ca
MD5 f1b0d188f6e819dc938482b74c85655e
BLAKE2b-256 86853981b2228d6b49dd9f8d1abaea76d57c5ec162203337fbec131d6af8d059

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgpack-1.2.0rc1-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.0rc1-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.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ea36adf7630ebbbc84ee8f5bcf77caf4ad6e876279b194db37dbf266585a8b8
MD5 4f04f3e70c818011f02ccd3e5377cd8f
BLAKE2b-256 0976963fb25779560928cab4504875d2c772aedb2c81e61228f0d452cd69b636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e381a479d9c61df19dd5c4516cd48f6c8447b2a726649012cb11bee8f1c06ff5
MD5 da708ad71a19dafe17f557c50ac10575
BLAKE2b-256 e523f7a65895777bb480071957ea36f60480afa10c61b78b2697776351990f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13221651389597f97d8f6f54646051f841c128d0adef3c9851f654e237744192
MD5 0203f3bd8ae75af66bfc73ab7b14b5ed
BLAKE2b-256 63bfaa1f28cb076b67b24fc468940c86fc190cb695f4df4edcd91e97b1e18efc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgpack-1.2.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4106397c2d88b5ebac0bca9f3262192657aad7b1485c07db3672e172f30c1f77
MD5 c6c706b3a6e9c3c03252cee3a02d8a34
BLAKE2b-256 4736ac94ffdb7dc4451a8351a05c2ac7ba69291fbf7c18fbc8cbe476d0f4a3c6

See more details on using hashes here.

Provenance

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