Skip to main content

MessagePack (de)serializer.

Project description

MessagePack for Python

Build Status Documentation Status

What's this

MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. This package provides CPython bindings for reading and writing MessagePack data.

Very important notes for existing users

PyPI package name

TL;DR: When upgrading from msgpack-0.4 or earlier, don't do pip install -U msgpack-python. Do pip uninstall msgpack-python; pip install -U msgpack instead.

Package name on PyPI was changed to msgpack from 0.5. I upload transitional package (msgpack-python 0.5 which depending on msgpack) for smooth transition from msgpack-python to msgpack.

Sadly, this doesn't work for upgrade install. After pip install -U msgpack-python, msgpack is removed, and import msgpack fail.

Compatibility with the old format

You can use use_bin_type=False option to pack bytes object into raw type in the old msgpack spec, instead of bin type in new msgpack spec.

You can unpack old msgpack format using raw=True option. It unpacks str (raw) type in msgpack into Python bytes.

See note below for detail.

Major breaking changes in msgpack 1.0

  • Python 2

    • The extension module does not support Python 2 anymore. The pure Python implementation (msgpack.fallback) is used for Python 2.
  • Packer

    • use_bin_type=True by default. bytes are encoded in bin type in msgpack. If you are still using Python 2, you must use unicode for all string types. You can use use_bin_type=False to encode into old msgpack format.
    • encoding option is removed. UTF-8 is used always.
  • Unpacker

    • raw=False by default. It assumes str types are valid UTF-8 string and decode them to Python str (unicode) object.
    • encoding option is removed. You can use raw=True to support old format.
    • Default value of max_buffer_size is changed from 0 to 100 MiB.
    • Default value of strict_map_key is changed to True to avoid hashdos. You need to pass strict_map_key=False if you have data which contain map keys which type is not bytes or str.

Install

$ pip install msgpack

Pure Python implementation

The extension module in msgpack (msgpack._cmsgpack) does not support Python 2 and PyPy.

But msgpack provides a pure Python implementation (msgpack.fallback) for PyPy and Python 2.

Since the pip uses the pure Python implementation, Python 2 support will not be dropped in the foreseeable future.

Windows

When you can't use a binary distribution, you need to install Visual Studio or Windows SDK on Windows. Without extension, using pure Python implementation on CPython runs slowly.

How to use

NOTE: In examples below, I use raw=False and use_bin_type=True for users using msgpack < 1.0. These options are default from msgpack 1.0 so you can omit them.

One-shot pack & unpack

Use packb for packing and unpackb for unpacking. msgpack provides dumps and loads as an alias for compatibility with json and pickle.

pack and dump packs to a file-like object. unpack and load unpacks from a file-like object.

   >>> import msgpack
   >>> msgpack.packb([1, 2, 3], use_bin_type=True)
   '\x93\x01\x02\x03'
   >>> msgpack.unpackb(_, raw=False)
   [1, 2, 3]

unpack unpacks msgpack's array to Python's list, but can also unpack to tuple:

   >>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False, raw=False)
   (1, 2, 3)

You should always specify the use_list keyword argument for backward compatibility. See performance issues relating to use_list option_ below.

Read the docstring for other options.

Streaming unpacking

Unpacker is a "streaming unpacker". It unpacks multiple objects from one stream (or from bytes provided through its feed method).

   import msgpack
   from io import BytesIO

   buf = BytesIO()
   for i in range(100):
      buf.write(msgpack.packb(i, use_bin_type=True))

   buf.seek(0)

   unpacker = msgpack.Unpacker(buf, raw=False)
   for unpacked in unpacker:
       print(unpacked)

Packing/unpacking of custom data type

It is also possible to pack/unpack custom data types. Here is an example for datetime.datetime.

    import datetime
    import msgpack

    useful_dict = {
        "id": 1,
        "created": datetime.datetime.now(),
    }

    def decode_datetime(obj):
        if '__datetime__' in obj:
            obj = datetime.datetime.strptime(obj["as_str"], "%Y%m%dT%H:%M:%S.%f")
        return obj

    def encode_datetime(obj):
        if isinstance(obj, datetime.datetime):
            return {'__datetime__': True, 'as_str': obj.strftime("%Y%m%dT%H:%M:%S.%f")}
        return obj


    packed_dict = msgpack.packb(useful_dict, default=encode_datetime, use_bin_type=True)
    this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime, raw=False)

Unpacker's object_hook callback receives a dict; the object_pairs_hook callback may instead be used to receive a list of key-value pairs.

Extended types

It is also possible to pack/unpack custom data types using the ext type.

    >>> import msgpack
    >>> import array
    >>> def default(obj):
    ...     if isinstance(obj, array.array) and obj.typecode == 'd':
    ...         return msgpack.ExtType(42, obj.tostring())
    ...     raise TypeError("Unknown type: %r" % (obj,))
    ...
    >>> def ext_hook(code, data):
    ...     if code == 42:
    ...         a = array.array('d')
    ...         a.fromstring(data)
    ...         return a
    ...     return ExtType(code, data)
    ...
    >>> data = array.array('d', [1.2, 3.4])
    >>> packed = msgpack.packb(data, default=default, use_bin_type=True)
    >>> unpacked = msgpack.unpackb(packed, ext_hook=ext_hook, raw=False)
    >>> data == unpacked
    True

Advanced unpacking control

As an alternative to iteration, Unpacker objects provide unpack, skip, read_array_header and read_map_header methods. The former two read an entire message from the stream, respectively de-serialising and returning the result, or ignoring it. The latter two methods return the number of elements in the upcoming container, so that each element in an array, or key-value pair in a map, can be unpacked or skipped individually.

Notes

string and binary type

Early versions of msgpack didn't distinguish string and binary types. The type for representing both string and binary types was named raw.

You can pack into and unpack from this old spec using use_bin_type=False and raw=True options.

    >>> import msgpack
    >>> msgpack.unpackb(msgpack.packb([b'spam', u'eggs'], use_bin_type=False), raw=True)
    [b'spam', b'eggs']
    >>> msgpack.unpackb(msgpack.packb([b'spam', u'eggs'], use_bin_type=True), raw=False)
    [b'spam', 'eggs']

ext type

To use the ext type, pass msgpack.ExtType object to packer.

    >>> import msgpack
    >>> packed = msgpack.packb(msgpack.ExtType(42, b'xyzzy'))
    >>> msgpack.unpackb(packed)
    ExtType(code=42, data='xyzzy')

You can use it with default and ext_hook. See below.

Security

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

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

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

Performance tips

CPython's GC starts when growing allocated object. This means unpacking may cause useless GC. You can use gc.disable() when unpacking large message.

List is the default sequence type of Python. But tuple is lighter than list. You can use use_list=False while unpacking when performance is important.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

msgpack-1.0.1.tar.gz (123.2 kB view details)

Uploaded Source

Built Distributions

msgpack-1.0.1-cp39-cp39-win_amd64.whl (69.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgpack-1.0.1-cp39-cp39-win32.whl (62.0 kB view details)

Uploaded CPython 3.9 Windows x86

msgpack-1.0.1-cp39-cp39-manylinux2014_aarch64.whl (320.0 kB view details)

Uploaded CPython 3.9

msgpack-1.0.1-cp39-cp39-manylinux2010_x86_64.whl (294.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

msgpack-1.0.1-cp39-cp39-manylinux2010_i686.whl (285.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

msgpack-1.0.1-cp39-cp39-manylinux1_x86_64.whl (294.2 kB view details)

Uploaded CPython 3.9

msgpack-1.0.1-cp39-cp39-manylinux1_i686.whl (285.3 kB view details)

Uploaded CPython 3.9

msgpack-1.0.1-cp39-cp39-macosx_10_14_x86_64.whl (16.0 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

msgpack-1.0.1-cp38-cp38-win_amd64.whl (69.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgpack-1.0.1-cp38-cp38-win32.whl (62.2 kB view details)

Uploaded CPython 3.8 Windows x86

msgpack-1.0.1-cp38-cp38-manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.8

msgpack-1.0.1-cp38-cp38-manylinux2010_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

msgpack-1.0.1-cp38-cp38-manylinux2010_i686.whl (292.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

msgpack-1.0.1-cp38-cp38-manylinux1_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.8

msgpack-1.0.1-cp38-cp38-manylinux1_i686.whl (292.5 kB view details)

Uploaded CPython 3.8

msgpack-1.0.1-cp38-cp38-macosx_10_14_x86_64.whl (73.1 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

msgpack-1.0.1-cp37-cp37m-win_amd64.whl (68.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

msgpack-1.0.1-cp37-cp37m-win32.whl (61.2 kB view details)

Uploaded CPython 3.7m Windows x86

msgpack-1.0.1-cp37-cp37m-manylinux2014_aarch64.whl (296.2 kB view details)

Uploaded CPython 3.7m

msgpack-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

msgpack-1.0.1-cp37-cp37m-manylinux2010_i686.whl (267.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

msgpack-1.0.1-cp37-cp37m-manylinux1_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.7m

msgpack-1.0.1-cp37-cp37m-manylinux1_i686.whl (267.5 kB view details)

Uploaded CPython 3.7m

msgpack-1.0.1-cp37-cp37m-macosx_10_14_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

msgpack-1.0.1-cp36-cp36m-win_amd64.whl (68.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

msgpack-1.0.1-cp36-cp36m-win32.whl (61.1 kB view details)

Uploaded CPython 3.6m Windows x86

msgpack-1.0.1-cp36-cp36m-manylinux2014_aarch64.whl (295.4 kB view details)

Uploaded CPython 3.6m

msgpack-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl (272.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

msgpack-1.0.1-cp36-cp36m-manylinux2010_i686.whl (267.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

msgpack-1.0.1-cp36-cp36m-manylinux1_x86_64.whl (272.5 kB view details)

Uploaded CPython 3.6m

msgpack-1.0.1-cp36-cp36m-manylinux1_i686.whl (267.1 kB view details)

Uploaded CPython 3.6m

msgpack-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl (73.3 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

msgpack-1.0.1-cp35-cp35m-manylinux2014_aarch64.whl (290.0 kB view details)

Uploaded CPython 3.5m

msgpack-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

msgpack-1.0.1-cp35-cp35m-manylinux2010_i686.whl (261.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

msgpack-1.0.1-cp35-cp35m-manylinux1_x86_64.whl (267.8 kB view details)

Uploaded CPython 3.5m

msgpack-1.0.1-cp35-cp35m-manylinux1_i686.whl (261.7 kB view details)

Uploaded CPython 3.5m

File details

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

File metadata

  • Download URL: msgpack-1.0.1.tar.gz
  • Upload date:
  • Size: 123.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1.tar.gz
Algorithm Hash digest
SHA256 7033215267a0e9f60f4a5e4fb2228a932c404f237817caff8dc3115d9e7cd975
MD5 aff671980111f396c8588fbc6ad2b4d2
BLAKE2b-256 1e929a38750369d8f323d4ef31927119bfbc3d8bcce5b01f52950d873318b26b

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 69.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c144ff4954a6ea40aa603600c8be175349588fc68696092889fa34ab6e055060
MD5 617219116b6782126cc29c1a52803f30
BLAKE2b-256 d75727a7533352cbbb3dddc6098b1ef71fee7e2e9bc74a58437e9d3cc8fd547c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 62.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f08d9dd3ce0c5e972dc4653f0fb66d2703941e65356388c13032b578dd718261
MD5 5698ff74e90a213ae2481d5eb4131bc3
BLAKE2b-256 392a39a4bb92a726034a7d24e54011a5d9b8a4d74777689a3bbe93b9bc2c8221

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 320.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01835e300967e5ad6fdbfc36eafe74df67ff47e16e0d6dee8766630550315903
MD5 45b81974c0fa1755eeb9a707e800df3e
BLAKE2b-256 6ee431183fa959bd093d05d0b204c65d3143889892d734d10d8990bbcc9069d8

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 294.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66d47e952856bfcde46d8351380d0b5b928a73112b66bc06d5367dfcc077c06a
MD5 ab8f9aebf94ef24eabf220300397681d
BLAKE2b-256 46fdb059e6733bf2825bdfd0a310970739f0a935a5f9ce9d04f8d6dd931f2170

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 285.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40dd1ac7420f071e96b3e4a4a7b8e69546a6f8065ff5995dbacf53f86207eb98
MD5 848ce05859503f6c878a731997ba9a70
BLAKE2b-256 134f7725e981a07f4a5541ef340ae4d862bb4e832ecef2f9275ebbc7703a1669

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 294.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1fc9f21da9fd77088ebfd3c9941b044ca3f4a048e85f7ff5727f26bcdbffed61
MD5 822a87fba7dad9385c44e6f60427fe46
BLAKE2b-256 306e6e2b51fac7c3b6f9ebb1716b4eb096f9299b08c0cd742d0f81c18b442346

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 285.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e58b9f4a99bc3a90859bb006ec4422448a5ce39e5cd6e7498c56de5dcec9c34
MD5 6341bcc98e32689bfaa8a67d849d88e2
BLAKE2b-256 f13629db23d028c35ff1124263a512238aec8856ea1c193b8c8d290debec227b

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 abcc62303ac4d789878d4aac4cdba1bbe2adb478d67be99cd4a6d56ac3a4028f
MD5 606bdb43337543d9a6198ce9a2f0d25d
BLAKE2b-256 dc48ce463af213d70f9f9da2fc877663b631310af0389fceff633c2abc3128e7

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 69.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e234ff83628ca3ab345bf97fb36ccbf6d2f1700f5e08868643bf4489edc960f8
MD5 13780bfa0632a7517822b1d23fb82910
BLAKE2b-256 3377002726c15356f82a9875289aaaa6f20da2e51f465fd52b31031decc56500

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b107f9b36665bf7d7c6176a938a361a7aba16aa179d833919448f77287866484
MD5 bfef3ae601fabab904c24c36e10643b8
BLAKE2b-256 fa81cd00bc3e2449f533ce4848ea6a76d8078fe75d6c1d9e6e93dcdbf342dc49

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 327.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f20d7d4f1f0728560408ba6933154abccf0c20f24642a2404b43d5c23e4119ab
MD5 5999b6cd8249239ea53a3b4e6b047cd1
BLAKE2b-256 4d52a6d72f68ebe6ecf82d6fe2deb1c09f8974da8e47c0a5d7a2d24022a81b9f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 302.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2933443313289725f16bd7b99a8c3aa6a2cca1549e661d7407f056a0af80bf7b
MD5 d30584ed254eff7dfdfc2110887e9dde
BLAKE2b-256 b68922ae5a51b740d319f4471b0793b3c66058e48ccb7cda323b245e01c973a9

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 292.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35cbefa7d7bddfb4b0770a1b9ff721cd8dfe9a680947a68457974d5e3e6acc2f
MD5 96aa275b30d822f7eed907e30ec597fe
BLAKE2b-256 a82117f303b1d579919f14c9ce6e65a90ec6dee8d0aefdd077c98490f2e0c656

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 302.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e8d27bac821f8aa909904a704a67e5e8bc2e42b153415fc3621b7afbc06702b
MD5 7a3eaaa507e0fef2ab30adec3609765c
BLAKE2b-256 c63f568e22b88e0aaf2a3f1b8c3444267639558e7a842a654df4edd5c6c970c8

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 292.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3cea07ad16919a44e8d1ea67efa5244855cdce807d672f41694acc24d08834e
MD5 d8b0e46c4b615f781a5b0d488c9cd518
BLAKE2b-256 f68f745284f5a1574ad261c11f9d62a1f29dbe2f776ac16c733cb0afb5ad73d3

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 73.1 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e13b9007af66a3f62574bc0a13843df0e4402f5ee4b00a02aa1803f01d26b9fb
MD5 07138da32d2c7af4700bf7b8579c2670
BLAKE2b-256 57dd2d453a241a40d1f6f9d226b3e76deb44586c3fbaf2ee675819bb6bfe849d

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 29a6fb3729215b6fcab786ef4f460a5406a5c056f7021191f70ff7712a3f6ba4
MD5 bcd11919e176eeed8191ba37a1b5168a
BLAKE2b-256 b5f17416fecb8e5d1cc0e1b4aeb910d681049996fa3b9f80d6e088feea28d41a

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c60e8b2bf754b8dcc1075c5bee0b177ed9193e7cbd2377faaf507120a948e697
MD5 f95575a836ee5e33c8b075f21ad7f57a
BLAKE2b-256 f91e5345c32d971220416ec7b9e3229f89678c4c62db5e57687fbb35ab66103f

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 296.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20196229acc193939223118c7420838749d5b0cece49cd397739a3a6ffcfe2d1
MD5 641af692fb29a732ca7966cae1f9dcaf
BLAKE2b-256 b2e0dfd17da64baad25b0d8a724ebdcf168bfcb31ba166c9e576e5e8534c3b4e

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 273.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b5b27923b6c98a2616b7e906a29e4e10e1b4424aea87a0e0d5636327dc6ea315
MD5 0bd474190b0d0c38b88c621ef4495d96
BLAKE2b-256 8ee8a4b64266a1fb99190a3a03c999395108ef2fde5d912343b2a6cf435d59af

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 267.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d76672602db16e3f44bc1a85c7ee5f15d79e02fcf5bc9d133c2954753be6eddc
MD5 66be951a2c1b63f421e99fdbecb331d0
BLAKE2b-256 3f2876ba8a559bb314c9e99f60acd6359f1a0881400ec70a41bc343e98d9eef7

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 273.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ce4ebe2c79411cd5671b20862831880e7850a2de699cff6626f48853fde61ae6
MD5 a4e964c1254785fc663f589463294bc2
BLAKE2b-256 7bd9573eb0af28ed8a281e4b454c66e078ae3bf4049e044c7d557223ee050ddd

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 267.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 69f6aa503378548ea1e760c11aeb6fc91952bf3634fd806a38a0e47edb507fcd
MD5 3764ce3b756a4c05c7d299c3590a1da6
BLAKE2b-256 d836b73437e24309fe4333bdf3c99e1809bf7030acdfe3b0ca64be0dc33f78fe

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 72.3 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d113c6b1239c62669ef3063693842605a3edbfebc39a333cf91ba60d314afe6d
MD5 78e6b62d3fcdbfe45c30b588469db0f8
BLAKE2b-256 79c84ffd67950a9f73ffb5cf15dc4a10d3dc8aad2363e97b56790510760d5e74

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c4e5f96a1d0d916ce7a16decb7499e8923ddef007cf7d68412fb68767766648a
MD5 19cba945e3b66691edd985f3006bdab6
BLAKE2b-256 9491ad3e64929e3f0b49a986cad80e27c911765207eca4cbb1d2b2b54e1241e1

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 61.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 decf2091b75987ca2564e3b742f9614eb7d57e39ff04eaa68af7a3fc5648f7ed
MD5 ba5ce5820a2561f45e507d36ecd97b59
BLAKE2b-256 b1d737f2c53fe539a7e4f55516f156267033250ce1d7d9366550d4e38b9f9dce

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 295.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0968b368a9a9081435bfcb7a57a1e8b75c7bf038ef911b369acd2e038c7f873a
MD5 6ac8651cbd47eec3286026164012472c
BLAKE2b-256 1e0e970a4b50e0df00a3237f326ab840f213b1ae5c10e4c1cb6ad70f50c604a2

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 272.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99ea9e65876546743b2b8bb5bc7adefbb03b9da78a899827467da197a48f790b
MD5 c74ae67f37e7e45e96266969412a5d1b
BLAKE2b-256 c2b084d6848976d3f4b1970656f1b8e123c0da741b60b019b9816b445bc4f42b

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 267.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b50afd767cc053ad92fad39947c3670db27305fd1c49acded44d9d9ac8b56fd
MD5 dbeebb5589885f82365a1a43fafe6133
BLAKE2b-256 c65801addc9e1c4ef89fe68bcdcae514b43806a2eaf1e0ea3d658219c0207b64

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 272.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d7ab166401f7789bf11262439336c0a01b878f0d602e48f35c35d2e3a555820
MD5 9fde220fdf682338d59bd9ba220de14f
BLAKE2b-256 4b32f73565d9336f67f3f9e4a1499f03767d4e900936a56448027196d2ea7d8d

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 267.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 03c5554315317d76c25a15569dd52ac6047b105df71e861f24faf9675672b72d
MD5 05bdd874eaf1a296aa9be82e8cb03850
BLAKE2b-256 81293996bb7898345a63bff13c5aff8bafa65ee3bf5968dc5f17400eeaf4a19c

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 73.3 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bf8eedc7bfbf63cbc9abe58287c32d78780a347835e82c23033c68f11f80bb05
MD5 e2dbe5ad125ba624d148ca22ea1bac5a
BLAKE2b-256 21704fef0e6dffbc35de0cd89a0d2a27430ed817590492da111594329903f5e2

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 290.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35ff1ac162a77fb78be360d9f771d36cbf1202e94fc6d70e284ad5db6ab72608
MD5 031296a61c11a99526c6a98d5731dadf
BLAKE2b-256 fd216675868cd2886b20206f96da5685bcd759c60fb354a3bb5be07266defea3

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 267.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e157edf4213dacafb0f862e0b7a3a18448250cec91aa1334f432f49028acc650
MD5 1ef2852f3490d7ed4907e0a8eea56584
BLAKE2b-256 66a1a558ee0bb5b670b2e1c02bbe1681cd3efb04efbd141d9ac2be3d67db77dc

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c82fc6cdba5737eb6ed0c926a30a5d56e7b050297375a16d6c5ad89b576fd979
MD5 a2e6c7041692a28dab6498121cd0e82d
BLAKE2b-256 82f1d24a1814971182cc0c784397b1eeac73577729f5c8100fccadb4ae4a4f50

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 267.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2966b155356fd231fa441131d7301e1596ee38974ad56dc57fd752fdbe2bb63f
MD5 6fa8c057b9f13bf43d22cc586e52faff
BLAKE2b-256 ecec21f1392cc956436d8b17d39dfc345b90427fdebef3a09825e7874074b6be

See more details on using hashes here.

File details

Details for the file msgpack-1.0.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: msgpack-1.0.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for msgpack-1.0.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bea1938e484c9caca9585105f447d6807c496c153b7244fa726b3cc4a68ec9e
MD5 ed4948023f435694e62051664423da0f
BLAKE2b-256 541bfd313c13f6b471a1f4a6bc143d3dcf5cb4002ffcaaa08280fc254b9fbef7

See more details on using hashes here.

Supported by

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