Skip to main content

Determine the end of MessagePack data quickly

Project description

msgpack-white

"MessagePack -- WHere Is The End?"

This package allows quickly determining the end of a MessagePack message.

Usage

After installation, a single module msgpack_white is available, itself containing a single class White. A White object maintains the state of a MessagePack stream:

>>> import msgpack_white
>>> w = msgpack_white.White()

Suppose we have three objects:

>>> o1 = bytes.fromhex("81A17801")
>>> o2 = bytes.fromhex("81A179A3616263")
>>> o3 = bytes.fromhex("C3")
>>> import msgpack
>>> msgpack.loads(o1)
{'x': 1}
>>> msgpack.loads(o2)
{'y': 'abc'}
>>> msgpack.loads(o3)
True

But we've packed them together into a stream:

>>> stream = o1 + o2 + o3

msgpack-white will let you split this back out into the separate components o1, o2, and o3, so that they can be decoded individually.

White objects have only a single method, feed. You provide a byte string (or other object supporting the buffer interface). There are three possible outcomes:

  • The byte string you provided includes the end of an object. In this case, feed will return the index into the byte string you provided at which the object ends. The White object is automatically reset at this point, so to extract further objects, you'll need to re-feed the portion of the string after this point.
  • The byte string you provided does not include the end of an object. In this case, feed returns None. The White object remembers everything that has been provided to it so far, so when you receive more data, you should only feed the new data you receive and not repeat any data that has already been provided to feed.
  • The byte string you provided does not represent valid MessagePack data. In this case, a ValueError is raised. Since msgpack-white only does a very minimal parse of the data, this is not guaranteed to catch all invalid MessagePack messages, but it can catch some.

Let's say that our stream was broken up into 4 pieces of 3 bytes each:

>>> p1 = stream[:3]
>>> p2 = stream[3:6]
>>> p3 = stream[6:9]
>>> p4 = stream[9:]

You feed data in piece-by-piece. (Note that pieces need not all be the same size; this is just an example.)

>>> w.feed(p1)

feed first returned None. This means that p1 contains the prefix of an object, not a complete object.

>>> w.feed(p2)
1

feed returned 1 for p2. This means that p1 + p2[:1] represents a valid object, and indeed it does:

>>> msgpack.loads(p1 + p2[:1])
{'x': 1}

To decode the next object, we need to start by feeding the remainder of p2 in:

>>> w.feed(p2[1:])

We get None, so there is no end of an object here. Same for p3, but not p4:

>>> w.feed(p3)
>>> w.feed(p4)
2

Hence, the next object is p2[1:] + p3 + p4[:2]:

>>> w.feed(p2[1:] + p3 + p4[:2])
{'y': 'abc'}

Then to extract the last object:

>>> w.feed(p4[2:])
1

Hence p4[2:][:1] is the last object:

>>> msgpack.decode(p4[2:][:1])
True

If there was an error in the stream, we'd get a ValueError:

>>> w.feed(b"\xC1")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Invalid MessagePack message

msgpack-white is completely agnostic to whichever library you use to eventually decode your MessagePack data. You can use it with the official msgpack Python library, the MessagePack implementation inside msgspec, or no library at all if you simply care about splitting valid MessagePack messages out of a stream.

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_white-1.0.0.tar.gz (7.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_white-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (10.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (10.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (10.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

msgpack_white-1.0.0-cp314-cp314td-win_arm64.whl (11.1 kB view details)

Uploaded CPython 3.14tdWindows ARM64

msgpack_white-1.0.0-cp314-cp314td-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.14tdWindows x86-64

msgpack_white-1.0.0-cp314-cp314td-win32.whl (12.0 kB view details)

Uploaded CPython 3.14tdWindows x86

msgpack_white-1.0.0-cp314-cp314t-win_arm64.whl (11.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgpack_white-1.0.0-cp314-cp314t-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgpack_white-1.0.0-cp314-cp314t-win32.whl (12.0 kB view details)

Uploaded CPython 3.14tWindows x86

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl (18.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl (18.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (19.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl (19.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (18.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (19.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl (18.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (19.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (22.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (19.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (19.0 kB view details)

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

msgpack_white-1.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (18.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

msgpack_white-1.0.0-cp314-cp314t-macosx_10_15_universal2.whl (11.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp314-cp314d-win_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14dWindows ARM64

msgpack_white-1.0.0-cp314-cp314d-win_amd64.whl (12.5 kB view details)

Uploaded CPython 3.14dWindows x86-64

msgpack_white-1.0.0-cp314-cp314d-win32.whl (11.9 kB view details)

Uploaded CPython 3.14dWindows x86

msgpack_white-1.0.0-cp314-cp314-win_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14Windows ARM64

msgpack_white-1.0.0-cp314-cp314-win_amd64.whl (12.5 kB view details)

Uploaded CPython 3.14Windows x86-64

msgpack_white-1.0.0-cp314-cp314-win32.whl (11.9 kB view details)

Uploaded CPython 3.14Windows x86

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (18.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl (17.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (17.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl (18.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_i686.whl (18.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (17.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (18.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (21.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (18.0 kB view details)

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

msgpack_white-1.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (17.9 kB view details)

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

msgpack_white-1.0.0-cp314-cp314-macosx_10_15_universal2.whl (10.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp313-cp313td-win_arm64.whl (11.0 kB view details)

Uploaded CPython 3.13tdWindows ARM64

msgpack_white-1.0.0-cp313-cp313td-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.13tdWindows x86-64

msgpack_white-1.0.0-cp313-cp313td-win32.whl (11.8 kB view details)

Uploaded CPython 3.13tdWindows x86

msgpack_white-1.0.0-cp313-cp313t-win_arm64.whl (10.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

msgpack_white-1.0.0-cp313-cp313t-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

msgpack_white-1.0.0-cp313-cp313t-win32.whl (11.8 kB view details)

Uploaded CPython 3.13tWindows x86

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl (18.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl (18.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (19.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl (19.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl (18.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (19.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl (18.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (19.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (22.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (19.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (19.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

msgpack_white-1.0.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (18.9 kB view details)

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

msgpack_white-1.0.0-cp313-cp313t-macosx_10_13_universal2.whl (11.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp313-cp313d-win_arm64.whl (10.9 kB view details)

Uploaded CPython 3.13dWindows ARM64

msgpack_white-1.0.0-cp313-cp313d-win_amd64.whl (12.3 kB view details)

Uploaded CPython 3.13dWindows x86-64

msgpack_white-1.0.0-cp313-cp313d-win32.whl (11.7 kB view details)

Uploaded CPython 3.13dWindows x86

msgpack_white-1.0.0-cp313-cp313-win_arm64.whl (10.8 kB view details)

Uploaded CPython 3.13Windows ARM64

msgpack_white-1.0.0-cp313-cp313-win_amd64.whl (12.3 kB view details)

Uploaded CPython 3.13Windows x86-64

msgpack_white-1.0.0-cp313-cp313-win32.whl (11.7 kB view details)

Uploaded CPython 3.13Windows x86

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (18.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl (17.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (17.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (18.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (18.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (17.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (18.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (21.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (18.0 kB view details)

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

msgpack_white-1.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (17.9 kB view details)

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

msgpack_white-1.0.0-cp313-cp313-macosx_10_13_universal2.whl (10.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp312-cp312-win_arm64.whl (10.8 kB view details)

Uploaded CPython 3.12Windows ARM64

msgpack_white-1.0.0-cp312-cp312-win_amd64.whl (12.3 kB view details)

Uploaded CPython 3.12Windows x86-64

msgpack_white-1.0.0-cp312-cp312-win32.whl (11.7 kB view details)

Uploaded CPython 3.12Windows x86

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (18.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl (17.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (17.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (18.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (18.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (17.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (18.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (23.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (18.0 kB view details)

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

msgpack_white-1.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (18.0 kB view details)

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

msgpack_white-1.0.0-cp312-cp312-macosx_10_13_universal2.whl (10.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp311-cp311-win_arm64.whl (10.8 kB view details)

Uploaded CPython 3.11Windows ARM64

msgpack_white-1.0.0-cp311-cp311-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.11Windows x86-64

msgpack_white-1.0.0-cp311-cp311-win32.whl (11.7 kB view details)

Uploaded CPython 3.11Windows x86

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (17.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl (17.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (17.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (18.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (18.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (17.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (18.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (23.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (17.8 kB view details)

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

msgpack_white-1.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (17.8 kB view details)

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

msgpack_white-1.0.0-cp311-cp311-macosx_10_9_universal2.whl (10.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp310-cp310-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.10Windows x86-64

msgpack_white-1.0.0-cp310-cp310-win32.whl (11.7 kB view details)

Uploaded CPython 3.10Windows x86

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (17.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl (17.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (17.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (18.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (18.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (17.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (18.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (22.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (17.8 kB view details)

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

msgpack_white-1.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (17.8 kB view details)

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

msgpack_white-1.0.0-cp310-cp310-macosx_10_9_universal2.whl (10.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

msgpack_white-1.0.0-cp39-cp39-win_amd64.whl (12.3 kB view details)

Uploaded CPython 3.9Windows x86-64

msgpack_white-1.0.0-cp39-cp39-win32.whl (11.7 kB view details)

Uploaded CPython 3.9Windows x86

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (17.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl (17.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl (16.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (18.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (17.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (17.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (18.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

msgpack_white-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl (17.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

msgpack_white-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (18.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

msgpack_white-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (22.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

msgpack_white-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (18.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

msgpack_white-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (17.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

msgpack_white-1.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (17.6 kB view details)

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

msgpack_white-1.0.0-cp39-cp39-macosx_10_9_universal2.whl (10.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file msgpack_white-1.0.0.tar.gz.

File metadata

  • Download URL: msgpack_white-1.0.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3c6431a567eda360e66b4a581d55ffc557eea374f130a3ef7da38f8bbdb74b81
MD5 e284f31383dc20ec0e1fa0b122fae089
BLAKE2b-256 ad6f7a7d028074ba2cf55d9ff1360bbc695947f839ec30d1ea9b70d5b25b30e5

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c141d1856d63583d6b65c81a5f7c2399921a1c372003ded29212a39b1d409dcd
MD5 df32a73a25276c0968080595fd8fdbdc
BLAKE2b-256 413c91bbff30f431ae53c9e9160d9fd2defa32ba863f0adc5a7cfe36a5cdf5a8

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 228f747142a0ecf849141b8eb0be622e9fe29fc3f6fe0d094af1a7ce4a18549a
MD5 19605c68dc217b9b3497eb0d96d7cee5
BLAKE2b-256 0a86bcbdf6c41a922921cd2af62aa4380bd2dc9ad10115a4c41870c10ad2cc6b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6520ced11fa07c0680ebe1a7aa46d3baf4d0e8e9e7003c9c5a47183211463510
MD5 f13af2744f264ad7ff04a000aa27257d
BLAKE2b-256 a92802ed1eddcb654ff4f53b86fa803e539b3370364943e5d7166f925cf3fd0a

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314td-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314td-win_arm64.whl
Algorithm Hash digest
SHA256 cd6baa996cf594799dc04c79f5c89a1557e224d896409a79419aa1b586eb1b2b
MD5 1430602419791f038f3d878212747732
BLAKE2b-256 125828a12ab8d152600940de69e7cfe4170030ded69b751907028f4d4e85e52d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314td-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314td-win_amd64.whl
Algorithm Hash digest
SHA256 8a89458740c216a6962620d99631e3002755aa1eda9826e1f1b0f54d64206d2b
MD5 36361c2aa646f7539ba4afd6e89998b5
BLAKE2b-256 c107ba511ee226a310fb949d14e66717542108bfebb7918b007c6820dc227602

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314td-win32.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314td-win32.whl
Algorithm Hash digest
SHA256 920a4b07322fceb141226e300bba5b4fe20e97923f0dbf3e3918a827456d9d23
MD5 8588ae3962c69c64d01ff8612d0d82bb
BLAKE2b-256 9aca8aa45a26041fb0d716ce56d94df5ed96f7c3d1a79a94c816a1284b086f94

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f6167af0bce1fc7e94b7c3a961ec4f5b56c3e81307f775a55c91e8d9c64020be
MD5 bd1e716d00e808d6090322180033f8af
BLAKE2b-256 f131517dd23d91423e2a226d9bc8d7f2ad8312b9d4315981e0bc433aaa0edd10

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 11cd1614ede3437564d4a4c108d13049a42c5e6c804273c0335c6fede48e59cf
MD5 32aafb8d228a65bcdd40204559554e94
BLAKE2b-256 8cf34761baac9c82bbf42958b7253d8b88fa3bd8c080e083640a3d0c9e0a12e2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 056ac08d9d77a47b75516aa5b91e3ceb607721788c09510c09c719661aa44f4c
MD5 bdc18be7619a4614428e502236afc504
BLAKE2b-256 340c84a984214a9743423d797264549f40a6b2a85902981398e90852461cf7dd

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6844e5df926e7eda819965d4a2b9ca60c777895a2f0f71d9c56fb73e20aa5226
MD5 30d4d82d264d1d09a7d554ba4f2e54a7
BLAKE2b-256 450b8bad6706191497148dc435f849ad3798222d944b4c9a65d057a48d98a0a2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7d355d99de5a1554179d33cb430fb0c7dd72393b657e6dfd14cb4a8bf38bc8d9
MD5 bd0437c6db862b08597d12d0ce31f52c
BLAKE2b-256 fe784413d37c6edffad20a43d6f326a834aca3035e47fba04b5b035f16071290

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e1cccf21973fc7884e257bed7ecbca0e7f1eeb9bb054721b83bc52ce126a3a0
MD5 145f330e73a3bf51c1928912a065225e
BLAKE2b-256 5dd51ee7783420932995844a68961991033ae8470a8d965fed0c1f930cf96f19

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a6ce7976058058eb004978fd2809dcd59431c370df9aed7885eb5561f768dbf0
MD5 68b0e371386a15d41be442ef1c915bb2
BLAKE2b-256 b85354dbc89d5b5fa226f946e991507bebbbb94b533b0a7bbf5544a7a373892d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03cc68f99da1f249ef07b6409d4f41d7b905ad06a9e7b0834ddd0335f36c3f09
MD5 770529aa9a57804d05b313cea71ddfaf
BLAKE2b-256 32e34c05ca94b5c8de5906a232b8b650d1fb3b06a7dada98ac79c22eff83a811

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 303dc0cd23df0c50311b3fde92233f22e2681d80835ff9f15f9ef95633aa05cc
MD5 1a753e8baaccc598f85dda23ace64060
BLAKE2b-256 e12ad4078b84c072378ee3c5f7de8b38ce75291823c731b937746cb7df91e743

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2398136bdee1689c0ca8cb2a1d01b01c1434042526ea3bb1dc927fc2e2908a89
MD5 b826ce625a70e7896bc5bc57753492bb
BLAKE2b-256 b51c5e82b556ff39c9b26c63968747bcbb4d90b70bc83dc7222e81378b609f2c

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 194a3c06ac4295ec76d310f62582f2d44935d1f38fee3c3dea3b1306371900b8
MD5 53388a9cf4753c4734dc71a8d5550c03
BLAKE2b-256 c88adab8c4f5116719cc9668470467c3e7a4217fa3f0911f46d378b64d0999c2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 fbdbce0f6eaa1b7ba3e6eb34894fdcdbb4eda8e2544c592787451599bae774fb
MD5 e9df44a80df11fd872cae79c8c6b0ec5
BLAKE2b-256 9fc75aba33459a4eac9aae22b16978d1de4b6c7f9a3c1c390192b8f43119cf7f

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d95e7a9df783c2fa2cfa70305ce4eb01267633c3bbfb6121ae1c35f8bf5bbad4
MD5 3fedd76f3a7c7b38d444662f76ad9944
BLAKE2b-256 b57b7046e964434fe4270fc9eaafd95e08fb72d36043ab242232a4d28f765772

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 531b82b963c11f4737e62fe0f7e8b577a0be85712e6de8f13e97313383cc2551
MD5 a441cc2f5a26ae856a36021c10fd1b2c
BLAKE2b-256 59972bdcc1195bc9257f167a47ed8854007f4ff53e0c52310dcbb2ecef721277

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0e4a9b44fa77d4bfc9cfbf6ff9b6394943c741645e1871f64e34ade195557488
MD5 f201ea4a13a426dde31945a183b837ad
BLAKE2b-256 994ad2b7409ca3e7fff47433641c043ecd4212b9f9d32173652d77fe027d940b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5db79f24f582f5654831c7681d25f780893c517dcaf2d55a4605a4ecdf6b5c55
MD5 cb210dd681f9f1eca5f2f403b6f27c6d
BLAKE2b-256 ea714851b78caf2bbf10f14d8677b3edcf39f3edaffdb6a7c33eae79a0183129

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 69ab4324230210ebca2352f5af366afad25e784dfc17dc1a45c5d6c639f4da21
MD5 54b066599d213937d3175bca8a0520f6
BLAKE2b-256 b83eafad999e95907ad4339b93b760621c1fc18172719337e92c12347fb683e5

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314d-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314d-win_arm64.whl
Algorithm Hash digest
SHA256 ec91672d904238a043acdd2b66886dcd4f302fd3dc3ab3d05f7dd3470796f377
MD5 f624bfc81a12b7b65735a1716a2be0f6
BLAKE2b-256 02178bed7a31e6f535b1591292e800e2fde26b4b164a4f0217880a72ff75c03e

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314d-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314d-win_amd64.whl
Algorithm Hash digest
SHA256 a53375c2d994aba335ff5ed9fe49e60af90bc4c1485f9cfe52f76301463eb35b
MD5 d5207ce315b922c0339d347a1043c712
BLAKE2b-256 536454966768b91b01b30a126b88a740b6a888b85c326cd24e0b5eba59bd4718

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314d-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp314-cp314d-win32.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: CPython 3.14d, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314d-win32.whl
Algorithm Hash digest
SHA256 6a33e8b2e5348e0492498c35c90d966b70cdb008256a73f7beff3069573cc9e7
MD5 c953cd00d5d236162cf5260f8da5240c
BLAKE2b-256 39de94d700c20bff10eca10a3cefce30509af5abf5b54f09e0acf143fba1141b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f793415fe7dccf9a014e264e9d3fc90e702364901f441cefa6d776bf4abeece3
MD5 65a84b9dfb4e8e5cae2942834c282b50
BLAKE2b-256 a626e45306b8016c68b4471efa97b8b247cb48afef9cbe63405b9cc18b53ff3c

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52de1af18e4f0ec6f7c5f85860230e1ea8aca4226198866d6e5c989a0ebff22a
MD5 7311dcef488b279294d9910206202ad4
BLAKE2b-256 bfebc544f0201d33dcd4652d142418256ccc4cf0820c59045ec404664105cb17

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a085426504b0a31023d75297ba6e87dd6815075bc7461608e1ac0cda3ac61b89
MD5 5609d6e5da2f0de5c17d00c7c6bbeb02
BLAKE2b-256 aebec2e17e64bdb628362475eee885d0052e1a02b7ea75f56f3b45acca55cbd2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2460be2dc7ade6ab3bf7684fc6067a9086bb94d95bd2675732ae8be3ff60414
MD5 66b5cbf038755009375836842b0cbc3d
BLAKE2b-256 757836230903e04ed2c6c80bf996e4d1aa30e0d21fd92d1409517959c4171685

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 431a1fd2383ec38ebc9c7e0c791f0857843bf216df60a0425d653b5e66f6ec79
MD5 0e2cb4a1c675410c611e6e4b0364ce2f
BLAKE2b-256 1f9b80211222f438fb1f184afd72fecc365db8f5f8e11310a051ce0e55a79f9d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fbfeeb59ea1e94fd93e6292fc61987e871693d64e009869537bccfc6a0ee8e28
MD5 233e67b97583776b56f59090b0a99099
BLAKE2b-256 6289eb96409890f216c9ab9a9784389c7835e4ae5e522a8621185bb671034baf

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a40d5df6d44cf28d425061b13fc1e55a9943b7d76d334373eb16ae764430a9d1
MD5 12d6a87b7562c04543de9ad9646ca2f4
BLAKE2b-256 d16e35fcf359269939b493dc586939240834c053574bb6149a0795edc2d92554

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f071ebc6360ba7f754d9e53e2e39cc21d226e3eb6729a92f4c94b92b7011e0c4
MD5 43cc62dc554428d9fab6a9ff72eaf58e
BLAKE2b-256 191e5beebaffa716e51b204592bcd2bf3a7fc0d31fec692e1733482839d7226c

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee11f348615e5576f48b34504b212e69930cf6bd400387afab02db9aa9934924
MD5 fe24e6999c3af37c64c9d6346e6f40db
BLAKE2b-256 03a3968f28930cba35ff8602d7f54269feec9027ca0d60e6877f9675b53411f1

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef89b6a869daea619c19e075e33f9317fe852b7f7cefcd2efe703c4d60140182
MD5 ca78212c5d4bbef21a9f9de5e3970617
BLAKE2b-256 56ebce1612e15cd8369776c685dcd4cb66140c4c07be21a566769a228864dcaf

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 1cc6fe49cb925a374ab5c15e68f9447b764b52a0e6f31b6072c23eff10e59333
MD5 4412449e058d63f24c265eb8b4399581
BLAKE2b-256 fb024b18bd2c65a9e74e09e91e06702fa4e9e2218a469f204be60bc65f39b9f8

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 252a193623fd394544615a5210941d1a06fa75a55649743d83cdbcee7cbe1c5f
MD5 da825815d3e87ae86fec9ff3cf35dc82
BLAKE2b-256 a3ccfac7d360a7967c7d268c81633883fb5f5304ea6caaa0d0364c2441deab9b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 946b0389ed08b7b25b78642fcfd7ad34608c01f97017b7b967b2fec6c7d3b13c
MD5 3cd0612275adcde0fa589a250a2d90cb
BLAKE2b-256 c49321d29dd59b82be7b9e670698d7b62ec4d8680629d887f4fcfae3a6a8e824

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c6b74442c30ee6ab9cecb3d1c747e945c0b28c0f0cc3518900d1e234962673b4
MD5 d5049e588592c280941eff0c83b1be7b
BLAKE2b-256 902214c332e7b04709dd9e5b607705b5a875559cd065ae00072b45ac74e75e74

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6f0c246d21dd0c55d30d0fdd2f5fa616b7d15134fc6c6a0c97d31855501ab40
MD5 64f40ba1350bc5746d290e83612a52a7
BLAKE2b-256 dba114b0d8b59a6a4805947bbab6a86422c5db7395ae572075d13a81c83c3498

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6f8c80e597f1412aab579c9035f3215a9bd171946106094fa89556653068abbb
MD5 370c2e606ad058624c5d06221235716c
BLAKE2b-256 40be264d5a07bb44d80237fc6e1d85304cfff246ede5ac59cd1945ee97b38ab6

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 56ad3202275cc717509afc79e0c20ce07b677fab0a21443ee365dd732af52753
MD5 8701b05e7d6d8e9761ae38f38d7b77d0
BLAKE2b-256 610b1082f48122aa9b941e2e70a0c7e8aa4c807caa527dab2450d8a4d6e40ae8

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313td-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313td-win_arm64.whl
Algorithm Hash digest
SHA256 3ee56a84dc0b14fd4bcd2f5242499b3bf00ab9b2844c7952bab139f7cf2142b1
MD5 2598ab985e794ccb21f74aeea20e85ba
BLAKE2b-256 9fb0f95bd20d742769bd80348a9285fa37b6d0b94f6d1376704721c4e27df103

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313td-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313td-win_amd64.whl
Algorithm Hash digest
SHA256 b533a9ef0f3633814176b1bd2649f8defd7ebe65716f5eaa54560ce58c24f3a2
MD5 66d1d60a9f5f05fa00e06d95317fddec
BLAKE2b-256 d7569d7c1d18798f6767796b6130acde811d24764cbab5af72b1af8686d51b7b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313td-win32.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313td-win32.whl
Algorithm Hash digest
SHA256 c382a2daf5c17b1742c15620f663175e3f3afabc5b26395a35f479e55570966c
MD5 46d27ff7ad320179f55e09f7928b3a1c
BLAKE2b-256 b4019cb66d4c1f5110606de2092513b53e1092058917d5fc897a6d9db647d9d9

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 04b53f48bd52811c2ede0fed6fa0d426cf7ac301223febdc7950511fb0f04c82
MD5 c653473a57c59b9ddc790ed34439a75f
BLAKE2b-256 95137e2ad56fb692aa75323329526d5509be96a8f6710e898bf72fad24dc7e5c

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2ebf93e4e1ce36db58d0ed8dc3fb4ebe02383455fe1895af1e4762239ca2521b
MD5 35a8614b97bc155576e1f5ce46d9d8e5
BLAKE2b-256 1ec57140f2a3cdb2fe919029957048c5ae950dc41df9d49cd6b8abff634b0f3b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9f6a1fea2f64269bd7dcb9371fcabd3c771322ded03ab4247cdb34d4bc6760a1
MD5 edb284c4d2477d08dde9b0627dcc2bf2
BLAKE2b-256 b16222799d15917d843b271e133f2de07c448f9c8e2f56bc9ad9fea534ef27f2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed936bcc8a0640076ddfef087c268b8c2f75c9028e9dcd476c8c41c46dea4b92
MD5 3b6947da7ba4d1122cdb49e7373bd8a7
BLAKE2b-256 812e01fb3d1e6940b179774dd760460ff5718e9d776650f5f8c9e1ad2e69075e

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1b2f7a08d058cd48da080c367130a0036cb90aeff99c35f6ee29f3c8b3b0f029
MD5 73293f8efd309a9698a0ddce6b38fcad
BLAKE2b-256 b7224d3b620f6adbbd99fb5be36e41a0e33b3d741807e1a6f9ebb0a53cc97b16

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ca81ecaeb6e4502a54d41aa0639cff51c800a6dda37ed47eabedf6ca4cca33b6
MD5 5bdbf302c074121d146ffe336a0bcdff
BLAKE2b-256 cd716e702f962f333c867a44347753fba48d39ad46a84f68f5c4b3543d690b35

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 868c7a5c3834b9a69083a111aa1f414d46e75ca637e59b78869b36fd7c6a71eb
MD5 66ade694e9d00878f78c3f6bd83316bd
BLAKE2b-256 80540eb411f5c19e1c97529262abfbed5b002a275d57eedda880d93fff997b6e

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0fe1be1ac02f0ae40b52766d0fef0d3a3887f594ec56732d7d3f8eb1513b155
MD5 19a96abde99c2883c0b642613b861620
BLAKE2b-256 b6d7f22162d7696775362627c8620050040504d1251e8b232b46a682dc34dcf5

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2edb3a87a1ce45412d5e3870afe78f4f889c8169343071c0ac8452b431ea5cfe
MD5 08655a5b371d566cf8d8cd5fd35844cd
BLAKE2b-256 3de4827bcf73e666d8e59f971c5ae87db5728b5dbdcf24b97b170b651ad6ddde

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca821549b250d4f9b0f3af1e04a780f6233ef2d317ed006260b58bf0ab2e0c50
MD5 bc1b07bf47f2eaf11a38c1d6c556db5d
BLAKE2b-256 3c32e4ae7a7658413b98477077dad0f2ee4b2035aa0826b2a6280747d8e10441

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 12ccd8730b8a19565fdb6d30365a4f7bc4dab70fe94dc11ef058a9c83736b72a
MD5 b01d7ad16ac5a04d2c9881c86b3b755a
BLAKE2b-256 c4c8df9e75e9943c5598bfb3275b29c20b3cf89aa4e51b50d482861057647a64

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 95713d9a938cc9beab3bfbb1d612a8156c451e98694996588fbc606dc3dc5658
MD5 8bed10bd3508084f4304577f9ffe50a7
BLAKE2b-256 a4e57518adf5527e8f3f7996f2f585c93dfc960f1f070c9990ca9b7117fb2810

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 73a61223fdb55cf9ff42f8f16856ee4998d1506d146a57d07f75c1b87dcbed18
MD5 5c48121d5bda8672094f4ca52dd21575
BLAKE2b-256 38782be84d2051b2b2f1800c8f965995fb7e6301bc26cd9438aee1f7cd1195b8

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8f9212147253ea95615dfd54db1e97a4f3992bd093ff20e120f649409fadf376
MD5 a1793c2426c6acc39bbbc26ea9c733d3
BLAKE2b-256 10675eabe187be558a6163255b71e3dd293ea75050a91305f200d49f11cf0585

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ec0b50967b65dce3cf55666538f5f693ee564b6eadf7c7a61e96e8bdf671932b
MD5 04e7e73fd5dc0302a0b4850d3a0a899b
BLAKE2b-256 dc44e8ddf4a544c64720709fd31c6eea66a31d9ea8cda6e0972f97cb629b752d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6e547c38fd0e2af09658149ffb8271080ad676d38c19e3352aeea40726f6a61d
MD5 53df9887008d715e0f7c852d76340d4e
BLAKE2b-256 68e130917661c5d4703132cc8eec79c0bc2a2992aec6029c5ca172a653ff0007

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2b878a2a5a4eec926a749abe1b9be7c7b80c55e234ebaa3da86389852fdf1d69
MD5 5a0a41909f1d28e969f7786991a28c15
BLAKE2b-256 f46189b77c4c17a6bdaa960f72a6e1520e61893d0783cc80eebdf7323fca6d6f

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313d-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313d-win_arm64.whl
Algorithm Hash digest
SHA256 2f341313eb17692c8a58236e03818ed084aa6f818393a65e090e2fa03577ba48
MD5 c47477712be7ff5f15a1406a0d72d7e5
BLAKE2b-256 3b36c8575a327bd8d5ea8817a559bc3b64ae3744c5d09c1e28b8b3c7b51d8411

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313d-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313d-win_amd64.whl
Algorithm Hash digest
SHA256 4a81b464b0c85e48edea749131828ed145dbf366bad494cbaad87d28ca37c0c8
MD5 159d7c04797ce1801789a6ba6995bd4c
BLAKE2b-256 3edbbfdbf22f3c425f87722d0d45e6ea49f9f17aabf86b444e599b23cc13fd92

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313d-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp313-cp313d-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.13d, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313d-win32.whl
Algorithm Hash digest
SHA256 ae80662e7a989ebdd1ec0ceefb87a66591cd8a926e176f65e05fe9adb26aed3a
MD5 b2f96c1946d55310d3e4bc105482db64
BLAKE2b-256 63deb682a53c8ff1da69da2e723291354955efd87a2da4b375f397be04afe02a

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 baed9993522ce03fbbc9b824263ada7a89d28d18249d64c6df768b1a0bd23a89
MD5 4c2fe2dbd6e0b0a4fa9339aea80752a6
BLAKE2b-256 ca53847e74bc252fcc937792c1ce541c0b62c35e52afa422fdbb71c1dcbd6c60

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 913b1d79011003bb7c33886f0dd42da39c8af2ec8d3094e7cb0687430884d3d4
MD5 65113c7165934cd76bbbd30a3571299b
BLAKE2b-256 feb05ca18cba4f3f60ee71afae1cc5e9c3543eed1f9306f04cc8fc1da1d3651b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 59b897150010e6a43fce794618a7cf1c352b14d39c28d6d2ef1fe1dfc7634ac3
MD5 ae82d2a25f091a3476176d1c50866839
BLAKE2b-256 e0993eb762ed7cbc1ee8b9d87e4c3ec1ca6242bc558ebb2e7c9b48dfecd7550a

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f86d8f18c2d67c7c6dc69439aca598dad749c80040692c9ea6b73301cf4b465
MD5 f11b91941b41ca83e08926a6b7bbfe33
BLAKE2b-256 e8714c7cb897493cc709e0b0ce9c5bf9ed3fb1d82a5081f1caa85f3efd7aea14

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8a87f8aaca6fae983bfaea55e10050e22f4a3c84df21b7471a2f52e727c7eb39
MD5 1ef0ce4e9bab0cb0a0f74fb832dba92c
BLAKE2b-256 cbed9e65308fcd3449ae3ea88ece412e7309c92574b6002335ed5fae3629b43f

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1888b27cafeb8aa4184cdf01e59f6e1a93db0a068d5e316e90d836ff52d0a1b9
MD5 76a14342b4b41aa1956f4473aecf64bf
BLAKE2b-256 1c4e60b240b8ef1c3f5e01b33c76c4f7715d25463ac577fe733fdda38e420b62

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2ce93f3a4383980f5d21f761b4939a2054b1ca2e7c96896ec72cdfe779aa7493
MD5 b548bdb7d352e6968ccd36aa33bd2d87
BLAKE2b-256 939e7a620637a806e1444c4f2a2ece353b66685633b333125815d6ceb8cd3724

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03652e2cb9a298fc2a30a2e2b7b05b41844797240de86c208dede9f4011e1204
MD5 c460013879ba118fff99f63d53c4e440
BLAKE2b-256 540b2d740790b711da914ed063e43a98b4aa24e882c0a2ff5b2cd745f5a9d549

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27acad0474802f6e0cb992b51e9ff4fc8ef2566ff552e637cb37535d9f82492d
MD5 7ba5babc7f7487f74504efaed8accf4c
BLAKE2b-256 0f76c14cb1485d37969ccd16cc4500ad2c5befe7d815d4d53013d459c56c4a14

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 409c36432153d47235a1dd7b3edef0db9ba3809e94d3e0c9e478afb251fb9e69
MD5 56a1156e31a234a22cb3ed6b2b8d6481
BLAKE2b-256 44109baaf27784c5522e5191fba2ba494638ef1206fc587ec8b3a444e14ad5cc

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 2d87443be9219996bf81d42c781dacddf65ef1871509b8d50f490d8e5b657f8c
MD5 691074bc9fce459789f898b89ea004a3
BLAKE2b-256 e1664b362e5006460b2f1e464542cb9748019f8e53d2d1d70560eb1188b982f6

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 e7d3e29bbff211e7547fe8e0e7c707b77857c1324cf454b563eba30e651aa5cc
MD5 bf992dd7f21c05cb9c9eab82666784bc
BLAKE2b-256 1c3a22cc697306027125ffa10c39be11184ffdb7c8ed6b31eaa943ccf743aadf

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 180974b7a292718ec2e92b6d7e839164c84fb626ae9b9737193cc71d0e526aba
MD5 bed0524df43a475fe97d1388cc8103ec
BLAKE2b-256 59ef64c2c06df3dc3ee6d764c3e664a0bbe5d241d3932453b23ee7b6d2d6d719

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5f1c06c4ae9fc0abe58a847c4d4aa7d440ea31196f5353b518abab9bfe4c6aa5
MD5 5d797d13474dc08aa9fad0e642ce8a8b
BLAKE2b-256 299b404b24441dfb206f1b505debbecd4f11a9c77b68f6fe557f855d8944ff8b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 44b9988b8249b105f5d44a66c0422a0de54d5b1d933ef50d274d35d84ca5d53a
MD5 116ae2d0845ff6181c511cb2333dd1e6
BLAKE2b-256 f405901bb806ffb39bbc6828d917442a496ecc69c1804a04a437842d94525732

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 accefb54086a1235e9af32ba98713e38bc9f012b7039ff31cca744a4526b5fff
MD5 ac476855fb355bff4096f0c8813c86eb
BLAKE2b-256 fc28e27829c8b56ab28ef5127c5be739467fdf4054cbb9acd5d1076e26ddf79b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d34bb6000282dce57289e54d02a4fec0f799be3a8957fd22b48b7cd6f455f538
MD5 a884133b191da961617113d5b844db1b
BLAKE2b-256 e3ee73f35792898367494b489753cb575ce45333353a1742941c0b9cf8c801a7

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 de75c8a3486a5b3c8775e1e7e8f1ba298733e016ea171ecbf30d35157ad61f23
MD5 3f48a9ade921a925ca9da0217c51daa0
BLAKE2b-256 f32e6b32dc5cfc58ebc949c38a797a7f2b61cc3fd5c26b2dd535d7d52f91ba47

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 559917dc0753296a67e0f6ba607d4161ca6c0406d35418154b932386f5a8cde4
MD5 4f9589daa4e34ac8700a8bd35b97da39
BLAKE2b-256 973ba241ea130d9691400acfe13a59fb8a09cb66c9f2ac19195ea0500795fc50

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e99f21b7dbadb15f0189abb8676edc306d37d339277c13ed7a85341a08317a82
MD5 132aac1f2e3f81b9b6594171e9a40e3f
BLAKE2b-256 7a6465726c9f9599a28eaec80de63337babae4eba4d8c5966e7277abf79e135d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49f38d3cba986bbab3b46cd89e90dd539e53f8627d48433c50016e67e1470800
MD5 114ef97a52d22be7c5da4b1a5fe821b3
BLAKE2b-256 20c54133aabc242cf29d9307cf58a0d2ef07da7cf96361e31d9d0a6b1c580be7

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b4f785b074b0903c422ed91f6c0646a19e1c92c0630b955e6c80961aba0bf072
MD5 28d4631f7fd16be594ba149aaba497e9
BLAKE2b-256 3c647ec3f4d8fcc86420f49404862bc87a7a0d5b08efdddac90488778b7c41a4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 10d58b1389c3784c5ca1a2953d679101458853e1d2b1298799b3387b0cedee3d
MD5 97bda43010f5924e5602550cd7034537
BLAKE2b-256 e8e8930fd5874271ac23d8cd4d6be9dac1f54c08e21ccf38491a08921cf082ff

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 962fb81934485e999257094dfe42dbe50e454920a886062e8c135d0e6a55e883
MD5 1d5a7a762b8d74b152a21c08edde621f
BLAKE2b-256 427d0e0468aba09f5ba771da00a9d5b7bca6dc009cad55d9bf53cf91e8942217

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf0612a69798c212321ef5dea1b202e9dba8f034cdbc2f2f263bcf029b51aeff
MD5 1a04b7b85c91fadd3113b08de57631f1
BLAKE2b-256 6b054707e7ec1f2cddf67ccd7edc7eefab1eff4a12a9dba8469274de7f44ad8f

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f416fee2bc36b069f69bcc82ed05a8a28d651ac3f7d9054c19121eda8353853
MD5 052c9d98eb36174f3f4a916d750b3083
BLAKE2b-256 463a85c30a0edfffb6d9bb60f4c19f37f3262ae63cbe7451427602d58b04f455

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93b896b1c8e520e85094a303531dafe34a2887aca215883b9cfa805b30e97f4d
MD5 02b9b3dc11e2948542dd3c70debc695f
BLAKE2b-256 200102603fb02f0443b89253c63d728b61c0490599a00bccfa87decf911df177

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 725450ee748e327fece3dcd96c959728801339455db2c9ab54a2ded8c3758948
MD5 4593eadcbf3fe19e8fba59457f7eedff
BLAKE2b-256 27c7b9b179d1f3581fd473f454c5f47e8e7b31e72799c5e3d162475aca4e35e4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 8e94e9dfdfcb71a74be5cd62f713920bdd887165e63b6e39a46e67513e5ba2e4
MD5 b00f0e6beff9a19fb7a670ab13f70ad3
BLAKE2b-256 ff80e30b0ba76363120978c0259de52b38429dfeae3123f380c6d2836ed44c42

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 906967eec38e1c850acd34830eaac33ffe74055cec7afee01571f985bd376af1
MD5 76a4ede2a7fd301a0efd106af4116ada
BLAKE2b-256 cbbeba5633872e3c0b59aaadbbc88812697d61122dd075b25bf01de7a3677568

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ba9d573c41afdac874be9edc81fd8e236bfda95e032cde52fc7e4353d6611cd0
MD5 f9966ae6e4275b34a054b887f79112d9
BLAKE2b-256 3062cd0e23dbb4b66cf029c4a9abff8d78cc7f613e1c81cb93e58b9c2a4bec3a

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3799fd4b4b887aa44b343893935a76407fe760184c2d42ea0e717fb1c730d341
MD5 b690281ac0855f1fc14e44eafbdbd379
BLAKE2b-256 491514c5025d948ae25b480e21326d89d858046f6a4a7acba53931edd1ad208d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 148e2e7c66e81921e8885b05ade86039a2a50570a54e6ff64f20bdd6ec94925e
MD5 810dab78ddf11b50d546de51b65b4369
BLAKE2b-256 3de795783d3d46c00672a988e896aefac98d5a5f300faa1d47d38b0974af27b3

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4ae9110b3b260b6cd2b9fd976aaa5804a4fef4ed80a5ac28f3e2b723aa96394c
MD5 7ef32a23f9ec48e4000b863d0e25ef55
BLAKE2b-256 79701ae0c00037565ae727c849c3e35e31db9f1e0e90403562533a9083139ffd

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 21097107793c57b024405ef0c8a9b8038f383979051cf6b603f89f640fbfa16a
MD5 8b064c0bd5375f68841c68a0561bd3e8
BLAKE2b-256 eef1219c715241cb78c56fd5f885796cad8d1b3ea3ef731cac4118373a7d6496

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 21ae1268fdb1ed24889459b9dd4a51241e4e67a757d1ea8aae7ccc89a1273184
MD5 f9de267b6dce62f55eb12c0442ffd7a4
BLAKE2b-256 3a4af8833c7276e479f473dc8b236aefa19544566faf92509bf9f9f32efe4a43

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 28f2cda5df92ef5c3cb68e6398d07a60ca19dbf3463637e69d7f33c64d9e2dcd
MD5 a0d50feb8a4e7cb786b71f04591c1ddf
BLAKE2b-256 7eb1220d72386d2557b724b9a8c64b7cddf12d02f9114cf7e318f40644c80696

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e87c553be8cd4b33d395637eadeb60f540cf62157dbefa30fea916e15e5a99ff
MD5 187c87a0d05239a291fa946c51ee0a5d
BLAKE2b-256 01c0f860751b9fd01e00deb4c19acf03481d9e56cb8ad4a4767ab7e9d5e19ce0

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6983759ca2f671bf9d47d51fd33e1eb7f8a46cccacd44ee9f4a1134fe4331549
MD5 180286185184b3057dd99b2af1d033bc
BLAKE2b-256 7c5a7020dbc7fee0dc25cf66d51a1aff0c8938111403fdb53a26d35b53d81cb4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9b45205513fc285c6cfde5bbdc5ec46c0f981e62ce4c9dddb13566001ae252f9
MD5 da50c0f2087cfaeb5ae883018f1670e6
BLAKE2b-256 b160a7bc0dc63ae80c4a302c30b5d6a0c90fac0897bdba5ff33555fd9789eb68

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bfb970e45358ac72838d8ba3b76d24e16d2cfa27413c180437e98bc2a4903251
MD5 133cd599f695d4b0439e4e5ad5aa43a4
BLAKE2b-256 b0c6a88617533dfbc3a96bfbfaacfd38b47b4c876f0510e064606bbecc8581f1

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a979c1bdff3c59a2e0cad19db56569febbe0dc36ba0affc6b1aeb3e7830de66
MD5 9492a3c8749b63e832e03fab6cf5ccd8
BLAKE2b-256 e87b9842994a7b8506cdaa03aea5066036c98f7037bbee8e8bc24a2eafe76dab

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580fadfb493e0bac4a871ec7a59efe46c9cc46ecd21b96657823c6636e20f4da
MD5 dd4b5d27b8203ee7b732f3d1e3cc1ff3
BLAKE2b-256 bf1db3c4171bf6673528c3ef9ec08ddba33313d8e0ca9f970529ccbda7c6a200

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62c4d14cd0dfbcf714dd476c1ae264cf38fbf4aeb043e73c557d77c3d4a48fcd
MD5 4453ba4d8a00a32edd9ce4e26c79f3d1
BLAKE2b-256 bb5ac74019ce194c3c38db3876c6e587ed1084df7aaf9d426e132b7ab4bf6a26

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 adbbd0a4cf3dcc7427ad2369be5ab8a906e2854d313d239a509ff03994602d5d
MD5 c4f8755d96923f050bb8166beafb884d
BLAKE2b-256 32e4552ef496b0a617717807c61a6918242efc9e5aa60ddcda5d5dd086c271d3

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 c8cf9c8e3d5458cf8ca20533946a6eeab097c2bc4daeb8ae204d8e7f0d674022
MD5 9d89339e7a05c7bfd0898bbc9045d895
BLAKE2b-256 7c1bc4a7a6ee7f3e602af6a3842137537fdb842138a2e2b732732afb283d619b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 57682a4070a598246838a25db92afde8fcd8fe3f0d2b353382907e49f58f228f
MD5 c59345153bc6c2debaaf7d0a67a32512
BLAKE2b-256 acbe904356b7e92758d2eb3427ce83a9f9104c705e9fca2c5dabb73cb52da698

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8ec97f1f5c596feaedb718b33df5d01be86a8cc31aa76efb5d803703fb91db41
MD5 528804aff69050fb9571eebfcc67a05b
BLAKE2b-256 4d9334f4a2964cbf11b0674d6225014cf915602caad80ff189c2bdc71d944070

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fb947216df206a6f876aa3bba7d47e4b496fe954b097764d63503eef1e0a3c2e
MD5 7fee10f34381a8325ef13c3676b9c7b5
BLAKE2b-256 dbf8d3e28d378ab89ac17257e993d35a7f6b395a676499b96222f57c5555b252

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 80cf57076e126457ecfc746a5014d73c46d2fd00ea29dba39c912a2c0b87d3b9
MD5 f8689807ca92860b7b4d6e289b2f04fa
BLAKE2b-256 e705d7a93df0a90293f437f29b29bfadf31f43664e08997635fba516f317fec4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 199d77ee1df1ac8cb2d06f47c8b0c001b10048c2f5dfa710408ef573268d0e23
MD5 2d84bdf73b03adb7e27ecb5a3915c660
BLAKE2b-256 c8dbc02accb43ac209d40c86789a2ff4c19eb7e040580ab55fab7ea2a4310a69

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbb56e028646a0247797701a5f6830107b223c65deb277c667e0a4e12602b698
MD5 7a889a666429a853cf20dc79b6a38d34
BLAKE2b-256 c6f6c7ecdb325a8f682eb437df77b458670691182b711679359ee5676ef08e62

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f9c47dffc7b56345a30e975aa6f35fb79eefc8c9f7fc8fe9ea195c166c80b7db
MD5 dbb74ad712a05b5edb4d38c6e361225b
BLAKE2b-256 03f741930296f7dc24797f3a3a951d789026d2b70c6c6be9d9b143d32f15876b

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 273ca1961d293f5c4541f4c08f74c1f8d6aaa1e623bae1767ad25d10183ca00e
MD5 eb200a0d07ed4bbcba103d36e9ff069b
BLAKE2b-256 41996787e970abbafa83fc8397d38d53f3a067296d38bdcf005a4a229fb346b4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b1d45b8c43f7dfcd3fea8b3ee0340aee1a1250e7576ce6b28cac2fd2893925c0
MD5 1e0473d20b0db37fd1f113076bd643fc
BLAKE2b-256 e7041f3737f0fe440e779772bee50d8b49e087c816d25ea4f1837c83384f1ce4

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cc45b81aa6a693dd0ead78ad7a2660e13b0c4589d1498494019f12852ce9270b
MD5 29ee2196b8a6fdd47aa97e134a9b887b
BLAKE2b-256 a2364a5079aa2a7da306f5332ff157d731c08b7e7afabd3427736f9041ac045d

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f403674a28d6f5c13688dcf1d151f569afd3df42abbf68d1ea3115c006d75a18
MD5 4c0c3483a02be2c29ba568c14325b470
BLAKE2b-256 2a0c188c97f18b53d09c2a81463aa2e242637316d2689eb5d08ee84f9c0aaf59

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f34d29fdf579aa66140e8e71b6960b6152857d6613b426e369d986ecbde0784
MD5 0c99b659ed86b0fcb0ef16e9f7fe6e35
BLAKE2b-256 f0455bcf3b77f74aa8f31885d6b24d69cd0c5ca5548ff265ac6a56f2e342cec6

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d79fcbdb31fea3dfae24baa80066897288dc07b4b14e181cd4f5982a5b06677
MD5 0f510aed822d4b54a3a33386c9f58866
BLAKE2b-256 7f082217e8dbe7f453d1a2fb719f689cbf3542d7ac5b5bbb995425bae47aa9fe

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0157d99b5e990e53f043e00391affdbc725797e2cbe3e9b1a8b6a90d193422a
MD5 c43fd6834bbc9fb6e81fe2e704015765
BLAKE2b-256 3ee05d94d0afc675b7eb839a928354f74592c79a9f178743b0277bd0797bf538

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 a9ea95f46c2547915bece6def2a4f570579dff923b0959272ed018528d6e3c29
MD5 5c0679174bde3907abf4f602baa339a3
BLAKE2b-256 8091dd97de5b46781795d56871b2149d17d5ddb29a66dc0d2056b57e080cdaee

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 1d3c04c183a61d7c32c88fb72035981f4f5cfa98e73d9e9eca007bcd7a31aed1
MD5 5dc89af38afa9637242ee01ba7438b0a
BLAKE2b-256 0849a2a132fbf7d7c036960d5492a290c7fc39ae6125cb07a9b25722b9095935

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ae4d74530d809a77c92822fe17852239f2ec3c175cba19604af6ed2e59953130
MD5 60536247944ca823d488b51784c76d31
BLAKE2b-256 c6c77575c93b31cc9e79dbb079e55180b024a6515483144c75196a989828b202

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 60c7dcceb1b9b9d8fb5a2299718736ee0248f035a3cdade07f8a1e646dd24b60
MD5 5bc6ad91fca1ed0d7a813253e4e18eb4
BLAKE2b-256 582bcb7b41c8253807d33c80d0be26fdbe6a38201fda5a575c5dcb2cb918b4e2

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7cada29d2cd1ac9e15ddd753370a016484a441724134b43d91370471e16e7500
MD5 95800fdbd440d11cf6ed82b3c5c9d1a5
BLAKE2b-256 06f0b1d95624897302735b7349639435603b7827a22091992bc982c1e9d8caf7

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ee2123847e1ea0129cf35a43d0cd570210bf16d676f270ddf083abba342f9732
MD5 b3611edf104830b3f332b1eb0d19b8b5
BLAKE2b-256 ade627a5e51a21d7df6d1728b2215b80ddc60c0626d6e2bfd3dcf9c3de41f4f6

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 879e07549a4fdbadbdb73f550d6c9a57d33bfe8852da2a734006fce1e1c755c9
MD5 0a158d74a06352827fdad08e62fa563c
BLAKE2b-256 dc359ed6e2bc95bbb19d0818c8d74dce6c33afc8b4cf6be01981a34d63e601e7

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a2dad8edff64386b79b69d1e2fcaf4264af1d8bf7a5c7abfa6ebcd058fdd07b
MD5 5ebf580c955dfc8b3aca89282f5d8000
BLAKE2b-256 8d0802d901482e7a18ce377fcb022a66b6a3e2090c93608013bd65eee1477209

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: msgpack_white-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8873320ec4856e1abb777eb1126cf25e8ba925af7c7ea1c8530763303b161db2
MD5 6b3b555a5d245a4492435199159a6e41
BLAKE2b-256 f0981d5c1da97a49bed1c1c0b780c6b8e03fe8aa5eece34f7b9077890cd18925

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe26220349b1071ae5727afa9738a1164e78139d8bbf9355fb63aa4682381386
MD5 a5a7580271f92b94de9c8e4aad669122
BLAKE2b-256 f32a38f89e46f2be89a5f5c1631329f926dbaf42320617d559b91df51c428426

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cff703199ab92810168be7c9862eeb9f5673210276b1277d93578aa7d064829b
MD5 5d033b3da1a54332643afbe6a1db1b25
BLAKE2b-256 f6353f579bb9011f8c08eefc1dc472e1171c45a9c18dcded4d84d0d3c155c9ad

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 06ad9e171c9843fc2cfe6870a039f640f7de0204e06f4f762478f5fb2b5c004a
MD5 a8d0f5b293f0b746ab605789a4341967
BLAKE2b-256 41263f3057dba8229a845defe857976f8bc16a9b2f537ee7546ee8e0d304b725

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f520c3aa193c0fd5f685746965232af132ac773ba78dbc123ae894369c230a22
MD5 4ef8ab7598f73f845a78013e6b2ec492
BLAKE2b-256 7910b1e33002039b9c872b7efe2b38e2722619f926b72ae1271986f60a1e217f

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ab98310168cd2302cb9646d54319420672d135f56891ae5a1dc1c0587e7cff1
MD5 ea8f9a40836fdc0ec72b5b27a4259538
BLAKE2b-256 e2579bd855f2adeadc4d981d07c0620687dcafb4f24e5e196db48b1f2a82188a

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a8d916ef50e9a350e7a12e27d4a62fc5112388524d36f9ed7f7e42b771e1b3e
MD5 8beb662c47829a5e49d04a0dfb097a94
BLAKE2b-256 8c85148f82ba0ff1460df59834247b099dc8f4c325bfe1cfcdcfa796cba45990

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ece1dff6f0df159041488ccbe2fe25c705d827922261e4615857f95892f1a7ce
MD5 ea8fa92701a6466ba2b32540eb21c238
BLAKE2b-256 bf2929847ac788069f20947707a010aee1c03cd5f78a139587506c16da44d004

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 bbd522a7b795c7b4b750e8dd32f732a71f30141399469962670e79c76ad837c7
MD5 b21e2fcaa31c7443c35e4272678f0e16
BLAKE2b-256 da4e47f144d7ce73a3e84e96367cd83f2d74fe764a526991ed44358269574324

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 ce509b398124304b7134e5f39057b5698292d670f5262c1ed302616fe07f241e
MD5 bb46b3645bee1b06bef604c98e8e52a1
BLAKE2b-256 c5699f1b0b4d84129cc3b8f0fcef10d1268e31f3b5bd623d2d326e625df30e70

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9f71d08d0760f0288778d8454f8fb66f9261dc1aa0c338f33a58f29a349ce5ec
MD5 cfdd6f6c397947c300d8e9c120ca66e9
BLAKE2b-256 5c1512c09b8315135c00d037d7c90805039890759b6c245775e85c7e86592fec

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dd5845dfd067e5692ccdaf35bdbf7c6db5dd8a153e5e2f970fd2a4937f565be9
MD5 81a6039540dd98e9a2aedb5aaff0d7cf
BLAKE2b-256 9d0c4d0b4a9f9531daea59944ead4ab11a32230326a96f0225cc0c012604a006

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ac86d3fbff62f90e8255e7dfd5943dda6e762f6e1135c0d5ed92311250bbd92a
MD5 65e43bee9e5712571ab339f4a5457589
BLAKE2b-256 d02b26f46382cfe44971c1822950b2bb769da641885b93956d7ef278ac650969

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 08eb208c45e4a72e2cdf9169d2f9d28195a6c7f4ce77e65d9f0504240ef8f2d2
MD5 b785f7a475f1c108d54f84d697eaf021
BLAKE2b-256 0355f81c9d2ed768955a3fb9f7d9b09e4c23d26df8d240426207908d6696deda

See more details on using hashes here.

File details

Details for the file msgpack_white-1.0.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for msgpack_white-1.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 74dcf292cafb5b3ee95dba98e78d81361d9ca535a55c601d5de20d077090dc13
MD5 f258d2a143c4f3428adfa3ca69266f96
BLAKE2b-256 873dcb1329025315a2f22d3e4d31b5146874129820f9bf24fbd43ee419bcbbad

See more details on using hashes here.

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