Skip to main content

A fast and friendly JSON/MessagePack library, with optional schema validation

Project description

github pypi conda codecov

msgspec is a fast and friendly serialization library for Python, supporting both JSON and MessagePack. It integrates well with Python’s type annotations, providing ergonomic (and performant!) schema validation.

Define your message schemas using standard Python type annotations.

>>> from typing import Optional, Set

>>> import msgspec

>>> class User(msgspec.Struct):
...     """A new type describing a User"""
...     name: str
...     groups: Set[str] = set()
...     email: Optional[str] = None

Encode messages as JSON or MessagePack.

>>> alice = User("alice", groups={"admin", "engineering"})

>>> alice
User(name='alice', groups={"admin", "engineering"}, email=None)

>>> msg = msgspec.json.encode(alice)

>>> msg
b'{"name":"alice","groups":["admin","engineering"],"email":null}'

Decode messages back into Python types (with optional schema validation).

>>> msgspec.json.decode(msg, type=User)
User(name='alice', groups={"admin", "engineering"}, email=None)

>>> msgspec.json.decode(b'{"name":"bob","groups":[123]}', type=User)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
msgspec.ValidationError: Expected `str`, got `int` - at `$.groups[0]`

msgspec is designed to be as performant as possible, while retaining some of the nicities of validation libraries like pydantic. For supported types, encoding/decoding a message with msgspec can be ~2-40x faster than alternative libraries.

https://github.com/jcrist/msgspec/raw/main/docs/source/_static/bench-1.svg

See the documentation for more information.

LICENSE

New BSD. See the License File.

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

msgspec-0.11.0.tar.gz (165.8 kB view details)

Uploaded Source

Built Distributions

msgspec-0.11.0-cp311-cp311-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgspec-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl (150.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgspec-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl (147.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgspec-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgspec-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (146.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgspec-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (129.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgspec-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl (135.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgspec-0.11.0-cp310-cp310-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgspec-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl (149.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgspec-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl (147.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgspec-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgspec-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (146.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgspec-0.11.0-cp310-cp310-macosx_11_0_arm64.whl (130.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgspec-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl (136.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgspec-0.11.0-cp39-cp39-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgspec-0.11.0-cp39-cp39-musllinux_1_1_x86_64.whl (149.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgspec-0.11.0-cp39-cp39-musllinux_1_1_aarch64.whl (147.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgspec-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgspec-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (146.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgspec-0.11.0-cp39-cp39-macosx_11_0_arm64.whl (130.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgspec-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl (136.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgspec-0.11.0-cp38-cp38-win_amd64.whl (132.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgspec-0.11.0-cp38-cp38-musllinux_1_1_x86_64.whl (151.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgspec-0.11.0-cp38-cp38-musllinux_1_1_aarch64.whl (150.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgspec-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (150.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgspec-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (148.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgspec-0.11.0-cp38-cp38-macosx_11_0_arm64.whl (131.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgspec-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl (136.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file msgspec-0.11.0.tar.gz.

File metadata

  • Download URL: msgspec-0.11.0.tar.gz
  • Upload date:
  • Size: 165.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for msgspec-0.11.0.tar.gz
Algorithm Hash digest
SHA256 b8738afc333d5499dfb349021d89f8d2569b52cd21f729a20e105568136aa52b
MD5 fb402d581515dc62e606407d5df0c885
BLAKE2b-256 328f599976efece20fb6a1ff445ad394c1191d4fe29b8e63222c0e02cab43394

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f7b657890e67d7ad41ae4d3ea2e03653ef184c987bf2497f20d083f9c01ddfc7
MD5 3d53174dfd0f28ebb666fbeb32a28e3e
BLAKE2b-256 e51c7dc99f1ef5544909e329dc4f288c64bef95d76475f494388d04ffb84cf00

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e3e233454cdf7cc85321cf41d4cee427065cb7d42de362242d4e98b34d04df5c
MD5 4cabe1f02889f083444b4c83d9e37eda
BLAKE2b-256 7a2f222109f61db7cebf7bcf7b1215977468f8b9613bba7c5ec404d01174be5a

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9bb71d224524e900c2f5aac10143f830b98300bc693c38aa7e3f21040efa8f9a
MD5 fdbc7bf6d6bc038ba85dfb2663303c17
BLAKE2b-256 04126253877da16ca526fc89b0bed8f0d0ced09759438fa00007902c180f7376

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 743e7d70d69b2e67c9dd560522105250800efa33bb0a18f7ef6724bc8ed9bd9e
MD5 e77338eab36dce5bd76f791925ce4d64
BLAKE2b-256 f1bb9d7c89c8198a5a52ee3cc40fd73d0cd3cc346fcf4d2828422c3f53a73a95

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9557e0b4d82a7d7e01ed8ecfaec33c83f1b77cda5f528c844048b8a997db0d15
MD5 fb06a4dd4cf4fe035e02ce2ac41d3b48
BLAKE2b-256 590a42d46ebff0c13773188d00e455b4e5cabab1e20f98ec29d362a5e310ea63

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a28aa62a97bc9255e92151b8e2edc1b27a4ee1e74172e88b09329136814bb83
MD5 a5c29c1399d80928e91e0225c3185b13
BLAKE2b-256 dd95b6ff7e543e84480f559be7877c67b181d18f2c320f3f439c48c0d172d1a1

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e117549b7594ffcdf4941f24a96611471f6425c0ab872285e3b8a9dd448c747
MD5 06717fa8ffea716e96721a8de3c2bc00
BLAKE2b-256 f461df0d9bb591a76cf09768d4b2339125ccc6ee5de093be9e9aec521018acfb

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 131.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a19bca76bff8f7ce557504fd5146ad32393202e8f15a084974428caa19d82851
MD5 977253cf02ab52bc92a102ce2e3819cf
BLAKE2b-256 4e7fd8f5543772cdbaaece328a25001e254389617e13a8a380a51a5959157a0b

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aeef1d2b1a5fca4fb2d0a645c9d9f0ca842829b71e41b7c7f9bae1ce41e7215d
MD5 30d2afff56e31b1f1091cc1cda43c217
BLAKE2b-256 b26747ad2991c09d884ae57f6bac5be3fde76799bde80420d8972fb395429a8a

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 103b5b459a17e3dd9d402e4fa55fda74d6b3ee1d3d83517daf8321961c20c31d
MD5 4ca04312363ca68981fab0c3404fe52d
BLAKE2b-256 9fdb95fba2d16d530e6091bc19e54e21845a234f767916fb791bcbc6aa65ef80

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 661f5098d59ab0695efe9e7abaa5b6988d8d232adacdfd2a2efa5f0a16b4a2e2
MD5 7ee4221ca1dd4c7b73f518fb3f77b4f2
BLAKE2b-256 903ab8eef0600c5635ce05d569493da68ddd984f0be0177d2550874d1308143b

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ede34b53a203b1569a44f20afb285cf9e1e36165d4f60c8ecd56a1c64294fc0
MD5 59afb467851bd2931c32e9b0c5afc7ac
BLAKE2b-256 d7d2151f706fd78efc120eb703000ff48a772e98eb40a09cda316c882d3ba71c

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a22d2bbbc3826c8c3aa6a67b97cbf3586a77f32f39fe4ab4c723b6a81e95f58
MD5 e67ec5c3fbb068ddeae3345825518f83
BLAKE2b-256 51d2b9a55aedfdae4df6da719220c9ce5970e962ea270c5bec84fcefabf8bdcf

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf1dace9e633243e092ff9c8c204d8ffd3e66dfdb5efa02bb4baa4ca66c92093
MD5 e750b926a35a8ada7b476242a0149e5d
BLAKE2b-256 d474e7bfd479d7950b222e70290e872fd69c178d96ab2aeaa5aae3e9b79304dc

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 131.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ff82e35aad8cb97b86216351b15c49f2a08ae6233973dfe87112036eeaa47bee
MD5 cef75631c02fd24159a5cf3198cd0220
BLAKE2b-256 52d192010084c674e56c7e4c987dc22e996721039665ad35fddc5339bfd93ad5

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd661d4df122a956309dc14f6bb638756c7a975bd286f2d1d1acaef0b05be67d
MD5 b906ea0686e0167c25b62591367a6a3e
BLAKE2b-256 dce69458a32073684d85b13525adadbfc6507face626fbe42a1aa815d8bdf93c

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72b281e75b79f1357282f26ba0e4239328253b124f2fd056edec917a067f5a07
MD5 1d652adf5a888aeda2c14a3e407e69e0
BLAKE2b-256 5fc27d6deb57e9ecb767dab4fac643c4f22040898da383443f57fb9d636a826b

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd0834d45a6823987af89c7aeca52df993ce84068f1031b010506fa1dbd865d9
MD5 eef4a508e43c318dc2fbb34d43b09587
BLAKE2b-256 cd5c8ad99a408ad3111d480f85bdfaef510c215cadd384f44ccec3f94a5c45e6

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5daca9321daaebce548f1283369c93ad3c66c5441720ef6ba5371e51367c504
MD5 317848c0d94043355faec7a73932ffeb
BLAKE2b-256 4f971726768f00c9e5e0cdc229ae0879287efbbdc863eae007055463225f373c

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d8c64c31c825b44d60679b781b903caa82f8cf85ac6a2a491146823663161a
MD5 bc48ef16ad94a0e047ed4ff274bfd794
BLAKE2b-256 c95d6c625fa69f3b13d684d04694d94acbb8c11ba04ceef9f2dbc96c9e7a2c6b

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de50ccf78b8354278390d87527a84cb56a27235d3dac94293413ac82d297bc2d
MD5 1a9aaf97c25363cac49d8106d74358bc
BLAKE2b-256 4990d5903ea31c2f6383a1bae2ef88f646ddb48078315c70689be8f41295501b

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa9b3dfde864876144e4b1222a22c46bffcf05c767174a9b8228eee28082b35c
MD5 72a2c01bcdcebb52b3a9697bdfe7a2db
BLAKE2b-256 43b3dc1a1b278da815f49f49a416d0a006712cbdbf6ab3f7618d06ba79b275a1

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc8390e58808f137390ab39be33caeead2c0cfa7cba97855e35df63accebb686
MD5 7847ac2b64c37926e372ce135f4be2a7
BLAKE2b-256 0cfc7614f623a3963de1cb26799769f4c3f0a525503daf2ec2202f4f8d87718f

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49a25dcf6f257010b2bb980d9f3e8b8e3fa4883b6e7af639e45623e100c3b241
MD5 7faac02d3cd4c376afc4b96adc845cdc
BLAKE2b-256 1541dc535192c8baf73e0f662cde85790cf2446cd5442acc280096e0900ee4a2

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17d394272484e269597052eb9b8a4ff0f8f3aa545347de01054eb87faa0e26cb
MD5 47387ca81b3dd3da8c65c940b810a581
BLAKE2b-256 64ec199a2896ff171b15411955349da3f03298e0b32663ddddc30fa5dbdd3b6e

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d7aeae531397ba07869ccb1bcd03db8253322904c0dd311280da588482c7f3a
MD5 710ca0e134a95990bbc1f66efc30ae9b
BLAKE2b-256 a33b6cc8b496065198526d2e8f55437677473617cd022c385604ebdac623f621

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 772a9965a8760022b75e4c6aa3328377405c382347c3d5365bca7c8bdbbfcfab
MD5 6cfad4f69174bf8f2c08aae061f96896
BLAKE2b-256 20965b1cf1836adf7ca9d966b78946f95d517a8b99dc291c24a6c01b3f29d693

See more details on using hashes here.

File details

Details for the file msgspec-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92d22a93c9da4190927d4841c8eb0113ed471af2e7beeba68c77c452932e2710
MD5 df8e9193785d95f25ce9c6337b36eef8
BLAKE2b-256 eddc3a401e03c439888e4eb00fac3597a73eadbd374efcda9a3ee2a9441857cb

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