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.10.0.tar.gz (163.3 kB view details)

Uploaded Source

Built Distributions

msgspec-0.10.0-cp311-cp311-win_amd64.whl (129.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

msgspec-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (148.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

msgspec-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl (145.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

msgspec-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

msgspec-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

msgspec-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (128.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

msgspec-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl (133.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

msgspec-0.10.0-cp310-cp310-win_amd64.whl (129.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

msgspec-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (147.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

msgspec-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl (145.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

msgspec-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (147.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

msgspec-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

msgspec-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (129.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

msgspec-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl (134.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

msgspec-0.10.0-cp39-cp39-win_amd64.whl (129.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

msgspec-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl (147.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

msgspec-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl (145.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

msgspec-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (147.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

msgspec-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

msgspec-0.10.0-cp39-cp39-macosx_11_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

msgspec-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (134.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

msgspec-0.10.0-cp38-cp38-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

msgspec-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl (149.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

msgspec-0.10.0-cp38-cp38-musllinux_1_1_aarch64.whl (147.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

msgspec-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (148.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

msgspec-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (145.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

msgspec-0.10.0-cp38-cp38-macosx_11_0_arm64.whl (129.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

msgspec-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl (134.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for msgspec-0.10.0.tar.gz
Algorithm Hash digest
SHA256 1ed9d7eb961af8ad8629ffcf63f781cc5afb0d674207ab9260ec5590ff359042
MD5 6012f576b678e6075589429559dc81b8
BLAKE2b-256 d1507c8b18a0a74265eddbaece6bf367055d163645a149c5bd18fe1d9d0bd0e4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f406b5c657794f7aba55f6d043316b37c6646294af329deb7efa4213a57b821
MD5 1f434c58dabfb1a43c242f9cd25f24e2
BLAKE2b-256 d26403c342ae5109f57dd3b82f1ef50f17e28da9a5cbb578c54404a2b996f538

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a63e3e711dbd7137f9b2b3c414debd2bb68eebf4b9b79a0601639cef9bfca19
MD5 a75fd6581562d80bb0dbe5d630d8c05f
BLAKE2b-256 eddfa68f61646ca5127df3869cdc170123b69e6ab41fcf5fd7e056785ed399af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 485c46de1230cfd3eb324dd38cd4e9fb8be6734abdc22d5b686be4b271387cbc
MD5 dfe59a78d529cf9155e1aa396817f15a
BLAKE2b-256 968a9a5c351d97b78197bf4a9c56d80b86e8edf33fe1f0e994f430856995caa3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5611a9c0966b2a8096c915d5e000eae99192257d2416d44eb28f6fe64880f207
MD5 0e361d1a12f068e7768e1c1a5c191515
BLAKE2b-256 6bea4311e84d64f5c8011a858da1bfab6327f46547ff599dcd35533fa01279e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fccf11e761580164b7c0b9279b56d36e9d2990c19451a319297ca29994d0a2df
MD5 9ea57752baa7fc5a790e6f75145a296f
BLAKE2b-256 98acbbddff73416d6b9e40609ea0bf94afe378894d1935c9058c2692e2f5e645

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55fd28a3c25eb21b73c5a98153e0c101334093dd7aa4d068856ce40eb624302f
MD5 223a7b661991d4d943db47250ed36c7c
BLAKE2b-256 b7774f8fb4e653e1913fb383f4c7989087f3ce125e741be97ff0871688397e82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65e176908314e998186840c4728db04a25a990fe7d7a5128885b0d1cdd0e08eb
MD5 ec0b5c2f0e4712797f797de517f8c759
BLAKE2b-256 f432e579cba39aa2bb0571fad3a19caf083d8ca5fb531159c5177d4687a1ba41

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9f35ceeb7f9c5f9f17b4652aab36a6af7598548c935dc4308b0776e9443b594
MD5 fbd72e1f282563cc0ce6701a37d0a092
BLAKE2b-256 b40d7cb1cbacc9b6e0d75291edba2d05111cc2f93edbb42105fcdbde9dbc67b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa16ba1df42525d5fb1d2b2c3641280738dc8b295c4ecbf1a07f48710d65f5b8
MD5 94993c6e39516d446690c90e6c57e511
BLAKE2b-256 e52c548cd3210d44aa498b95fd7a345069c2dff4ee037b63eb73992d228fa7ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 947b2a819ce2736f0590d5c487ed8c43f2fbc0d3972533adbd4436db53a4b5df
MD5 76888b54479a81363dec7dec5675aa72
BLAKE2b-256 7bbeb3c0bdab909c23e3c32c8f11cbb8da75669ea3e66d72a0866ec160a8e415

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 864589de3a47bc7b03f126b5551488db648565b91d28764f9127ad5a79f441e4
MD5 8227ae4fa5407d934a7ec33a963160b2
BLAKE2b-256 b20ff6f09b65f06ede15adcbd208c50106d9375a3130f0ffea3e2e52d8f45440

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba53296c4df71de60ffba11c2e5037da62e74097b782642626a17d8f2eba6821
MD5 cabf924ffa3ae46d881d12c29e527d5e
BLAKE2b-256 c67a7d62a747e641ecc0b5b25bbd81e0544d80374fe779b20ac44bd3606b4800

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 497948d0d25ee360f19340bef9935cebcb0fcb1106108cf81feed2d227581f52
MD5 30dcd5fe82b48d63ab28d4f6529d3336
BLAKE2b-256 5ad3d7d2cd1eaa9a845b8a100d933ca4fb0ec0ceac2ce303755f5339e54ab9d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbef302784ee46fd1910b2e2c516b3714fd2267502b84b960a5d17d5f7d20674
MD5 1a9b89400f564841e229ba3d27109d2a
BLAKE2b-256 6c1cb3438df9a1f2957e7ce47b1424d9cac0ca824c7d189cd647726024f2d684

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85c41fb57067a0926b138a43e20f832937659ffbe6ea3639c665339b71d7a7b6
MD5 773ed1bef08684b4166827383e0f3834
BLAKE2b-256 7de3600f3464e728cd7069a989004b8fded4f0cef1e07d4d4f0e9ddd370d63c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c1eda55de604a486eaffe38b795d6c15f6016101fc9e903c2e031047847e606
MD5 a249528f45a3f8747ced13cf0b3cb79e
BLAKE2b-256 b6abda02e1b918cf2bd756667b565cee2c3780712424d5e2719061ec6b785b1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52110d8fefb787622830dd7b00416fb157463048fdedebabd2e5e174bc9b7cfd
MD5 441f85d373b1f85f54b1ec302506bc4b
BLAKE2b-256 8ca146f2b9c4a7ed3d38e41c2a41dd1598be17df03580e6737f5358a26e28ef5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cefbf13f1a5f7a842c1671556d58f46bdcb01fb84138dd668dcb53fda9ff87f0
MD5 d9e860ad92d1ef68afb45901c51f21bf
BLAKE2b-256 009f9687c21234226c58862ef44c51355c1303eb9b7320ffb02559c9741e5793

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a462489a299bfec738efe2c342cce8f6efbf63be3355c9876236a920795e9f7
MD5 d7e11dee7a91f7cf0fabcc8c86e409e6
BLAKE2b-256 5f637bd87018941175f617da846b1062647704455d6a8a2ab40565ef10045e20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d4aca33cfe7e0380f84559fa961601eebc94ce50c0b349d8ff77f828bf089ce
MD5 d5bcddd6583977a0fa53b4a6c5fe8237
BLAKE2b-256 a51b2dc45ae54506e1716934a59fc06de9566160cca8d4cc4a2b796c810543e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2718d57973c7faf2271bec6a0263449b1dea3038ca2489dcd20dff6f460ad37
MD5 e0ff4703725db8bf143b9346f9a8ddca
BLAKE2b-256 0a17fa47d71a6e733ac1223ba2324b008a612ec77635c688aca4f4eed03a0410

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 85d707c3cf39e88d2ab1fda13b66476a21fe92747792ed480776bd7ee65bfddf
MD5 2c6f67bc21e21ab658f9914c38028b80
BLAKE2b-256 f5d4ce3b1aba048475373334b3056f52bd4382905d6e9b883ae25c8cb252b66c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 112b40c1a7ffcb7e8dd4f9e26776a8718155ac7dc88d7d8bd5aff5d0b6608999
MD5 06129586bdeb19cf392a692000f91406
BLAKE2b-256 2fe58ceacd84a1e63597af247af1ff9dbf3be1fc49f16cd7216c4b6b7b57fded

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 77b9b34ac871a36ec302ed1bdc7515a19700364b0c9081b9736901cbdf356582
MD5 3acf8472ce8b1ae2ebf90e399dda136c
BLAKE2b-256 eb906d87ca78016c71ed30fc11b2c784e097d18bd8bd32283f4c27194b8cd6df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db9b287977510cafae3c7d82c1dde6cb2a30eb87a926d0a5d3b23e9b3c64e541
MD5 62b676d530b042a0a04e61600cbdd3cd
BLAKE2b-256 aa1d2310de23e32b74332fac21efc7be3291be918658a3ed33c43af345536864

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d978a7934c0ed870525d82f12e3b387ecca7c91327aea434430d46f446a8095c
MD5 e1a240857f90f04b3e146ca5e5c7971e
BLAKE2b-256 606f561e45ac1f6800e86fc0a00df9e5527065bb32dd04838cece316c06824ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f58f5df2196a5744bfee1fd69a33b99af550eed03bb384322bc87ad35ebe661f
MD5 99cbd23186c5832cc7d64ce0feee87e2
BLAKE2b-256 81dbc8e2faf0404a76685a034da22752830e500e016ad83bdbd9f42acf77f645

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for msgspec-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 103e33f151737b94dc0cb21bb3ccf90e86fa10f5b07899328b3bba26db285457
MD5 daa82b9e63b7d89cca68326c6a96f861
BLAKE2b-256 40a0013337e34b6377235df3efeb339c944e9f7f6ec0db22afae46cdf512bce7

See more details on using hashes here.

Provenance

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