Skip to main content

A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML.

Project description

msgspec

CI Documentation License PyPI Version Conda Version Code Coverage

msgspec is a fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML. It features:

  • 🚀 High performance encoders/decoders for common protocols. The JSON and MessagePack implementations regularly benchmark as the fastest options for Python.

  • 🎉 Support for a wide variety of Python types. Additional types may be supported through extensions.

  • 🔍 Zero-cost schema validation using familiar Python type annotations. In benchmarks msgspec decodes and validates JSON faster than orjson can decode it alone.

  • A speedy Struct type for representing structured data. If you already use dataclasses or attrs, structs should feel familiar. However, they're 5-60x faster for common operations.

All of this is included in a lightweight library with no required dependencies.


msgspec may be used for serialization alone, as a faster JSON or MessagePack library. For the greatest benefit though, we recommend using msgspec to handle the full serialization & validation workflow:

Define your message schemas using standard Python type annotations.

>>> import msgspec

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

Encode messages as JSON, or one of the many other supported protocols.

>>> 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 objects, 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 ~10-80x faster than alternative libraries.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

msgspec-0.21.1-cp314-cp314t-win_arm64.whl (183.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgspec-0.21.1-cp314-cp314t-win_amd64.whl (206.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgspec-0.21.1-cp314-cp314t-musllinux_1_2_x86_64.whl (231.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp314-cp314t-musllinux_1_2_aarch64.whl (230.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (229.9 kB view details)

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

msgspec-0.21.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.3 kB view details)

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

msgspec-0.21.1-cp314-cp314t-macosx_11_0_arm64.whl (192.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgspec-0.21.1-cp314-cp314t-macosx_10_15_x86_64.whl (200.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgspec-0.21.1-cp314-cp314-win_arm64.whl (179.1 kB view details)

Uploaded CPython 3.14Windows ARM64

msgspec-0.21.1-cp314-cp314-win_amd64.whl (193.8 kB view details)

Uploaded CPython 3.14Windows x86-64

msgspec-0.21.1-cp314-cp314-musllinux_1_2_x86_64.whl (227.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp314-cp314-musllinux_1_2_aarch64.whl (223.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (225.0 kB view details)

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

msgspec-0.21.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.9 kB view details)

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

msgspec-0.21.1-cp314-cp314-macosx_11_0_arm64.whl (188.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgspec-0.21.1-cp314-cp314-macosx_10_15_x86_64.whl (196.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgspec-0.21.1-cp313-cp313-win_arm64.whl (175.4 kB view details)

Uploaded CPython 3.13Windows ARM64

msgspec-0.21.1-cp313-cp313-win_amd64.whl (189.9 kB view details)

Uploaded CPython 3.13Windows x86-64

msgspec-0.21.1-cp313-cp313-musllinux_1_2_x86_64.whl (227.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp313-cp313-musllinux_1_2_aarch64.whl (222.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (225.1 kB view details)

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

msgspec-0.21.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (218.9 kB view details)

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

msgspec-0.21.1-cp313-cp313-macosx_11_0_arm64.whl (188.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgspec-0.21.1-cp313-cp313-macosx_10_13_x86_64.whl (196.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgspec-0.21.1-cp312-cp312-win_arm64.whl (175.3 kB view details)

Uploaded CPython 3.12Windows ARM64

msgspec-0.21.1-cp312-cp312-win_amd64.whl (190.0 kB view details)

Uploaded CPython 3.12Windows x86-64

msgspec-0.21.1-cp312-cp312-musllinux_1_2_x86_64.whl (227.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp312-cp312-musllinux_1_2_aarch64.whl (222.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (225.0 kB view details)

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

msgspec-0.21.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (218.9 kB view details)

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

msgspec-0.21.1-cp312-cp312-macosx_11_0_arm64.whl (188.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgspec-0.21.1-cp312-cp312-macosx_10_13_x86_64.whl (196.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgspec-0.21.1-cp311-cp311-win_arm64.whl (174.5 kB view details)

Uploaded CPython 3.11Windows ARM64

msgspec-0.21.1-cp311-cp311-win_amd64.whl (188.6 kB view details)

Uploaded CPython 3.11Windows x86-64

msgspec-0.21.1-cp311-cp311-musllinux_1_2_x86_64.whl (223.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp311-cp311-musllinux_1_2_aarch64.whl (220.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (219.9 kB view details)

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

msgspec-0.21.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.2 kB view details)

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

msgspec-0.21.1-cp311-cp311-macosx_11_0_arm64.whl (186.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgspec-0.21.1-cp311-cp311-macosx_10_9_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgspec-0.21.1-cp310-cp310-win_arm64.whl (174.2 kB view details)

Uploaded CPython 3.10Windows ARM64

msgspec-0.21.1-cp310-cp310-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.10Windows x86-64

msgspec-0.21.1-cp310-cp310-musllinux_1_2_x86_64.whl (225.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgspec-0.21.1-cp310-cp310-musllinux_1_2_aarch64.whl (222.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgspec-0.21.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (222.7 kB view details)

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

msgspec-0.21.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

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

msgspec-0.21.1-cp310-cp310-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgspec-0.21.1-cp310-cp310-macosx_10_9_x86_64.whl (195.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: msgspec-0.21.1.tar.gz
  • Upload date:
  • Size: 319.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1.tar.gz
Algorithm Hash digest
SHA256 2313508e394b0d208f8f56892ca9b2799e2561329de9763b19619595a6c0f72c
MD5 3bcc6ca6ffc4fc0c10bef38b630296b1
BLAKE2b-256 e360f79b9b013a16fa3a58350c9295ddc6789f2e335f36ea61ed10a21b215364

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1.tar.gz:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 183.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0d2cc73df6058d811a126ac3a8ad63a4dfa210c82f9cf5a004802eaf4712de90
MD5 576c390f6c7e8879efed68f994533e31
BLAKE2b-256 909156c5d560f20e6c20e9e4f55bd0e458f7f162aa689ee350346c04c48eac0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 206.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 740fbf1c9d59992ca3537d6fbe9ebbf9eaf726a65fbf31448e0ecbc710697a63
MD5 e9425c6a50dd90ff06d5d68c643650c8
BLAKE2b-256 ea1d0d85cc79d0ccf5508e9c846cc66552a6a16bf92abd1dbd8362617f7b35cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d03867786e5d7ba25d666df4b11320c27170f4aeafcb8e3a8b0a50a4fb742ca
MD5 71893f915d64aec60374ffa07d56e39e
BLAKE2b-256 42b4c0f54632103846b658a10930025f4de41c8724b5e4805a5f3b395586cb7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92d89dfad13bd1ea640dc3e37e724ed380da1030b272bdf5ecafb983c3ad7c75
MD5 29eafff0ad799db3093e91f84b9435b8
BLAKE2b-256 2c62e7c9367cd08d590559faacd711edbae36840342843e669440363f33c7d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f8e9dfcd98419cf7568808470c4317a3fb30bef0e3715b568730a2b272a20d7
MD5 07bc0e169353d397c76fc1c8101452c2
BLAKE2b-256 7d4586508cf57283e9070b3c447e3ab25b792a7a0855a3ea4e0c6d111ac34c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f60800e6299b798142dc40b0644da77ceac5ea0568be58228417eae14135c847
MD5 b5e65749756eaba7b1f67cf8a099dd00
BLAKE2b-256 a708673a7bb05e5702dc787ddd3011195b509f9867927970da59052211929987

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e47390360583ba3d5c6cb44cf0a9f61b0a06a899d3c2c00627cedebb2e2884b
MD5 7e3847a8fe2df1d42ce7642463aa8299
BLAKE2b-256 709bce0cca6d2d87fcd4b6ff97600790494e64f26a2c55d61507cd2755c16193

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15f523d51c00ebad412213bfe9f06f0a50ec2b93e0c19e824a2d267cabb48ea2
MD5 f860942ab01f093213db0554642e19f5
BLAKE2b-256 c63974839641e64b99d87da55af0fc472854d42b46e2183b9e2a67fe1bb2a512

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 179.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d8b8578e4c83b14ceea4cef0d0b747e31d9330fe4b03b2b2ad4063866a178f93
MD5 82b68b2a15edb920a8b9b11a29d4fa9d
BLAKE2b-256 3b8fa6d35f25bf1fc63c492fdd88fdce01ba0875ead48c2b91f90f33653b4131

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 193.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5666b1b560b97b6ec2eb3fca8a502298ebac56e13bbca1f88523538ce83d01ea
MD5 2264ca23e350711454882f42112f25b0
BLAKE2b-256 c433265c894268cca88ff67b144ca2b4c522fc8b9a6f1966a3640c70516e78e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abbb39d65681fa24ed394e01af3d59d869068324f900c61d06062b7fb9980f2f
MD5 8143fb4ee8162084c712bea57fad2639
BLAKE2b-256 751742418b66a3ad972a89bab73dd78b79cc6282bb488a25e73c853cee7443b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52c5e21930942302394429c5a582ce7e6b62c7f983b3760834c2ce107e0dd6df
MD5 f31bb26d285e6ea81ba2ff7d67585745
BLAKE2b-256 7194d2120fc9d419a89a3a7c13e5b7078798c4b392a96a02a6e2b3ce43a8766c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d6b9dc50948eaf65df54d2fd0ff66e6d8c32f116037209ee861810eb9b676cb
MD5 18719d1d6678df96db8495e29a5dc30f
BLAKE2b-256 251fcca084ca2572810fff12ea9dbdcbe39eac048f40daf4a9077b49fcbe8cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68604db36b3b4dd9bf160e436e12798a4738848144cea1aca1cb984011eb160f
MD5 61aa17a162389d99ab5a91c0f318cb8c
BLAKE2b-256 857d1e29a319d678d6cb962ae5bdf32a6858ebdf38f73bc654c0e9c742a0c2c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cb779ea0c35bc807ff941d415875c1f69ca0be91a2e907ab99a171811d86a9a
MD5 2906bdc6c570f7c9b5d11c9a5f594fe8
BLAKE2b-256 d1a1c5e46c3e42b866199365e35d11dddfd1fbd8bba4fdb3c52f965b1607ce94

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fab48eb45fdbfbdb2c0edfec00ffc53b6b6085beefc6b50b61e01659f9f8757f
MD5 e5d037a447a8f8c18b780728c2faf7de
BLAKE2b-256 5aad86954e987d1d6a5c579e2c2e7832b65e0fff194179fdac4f581536086024

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 175.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 42bb1241e0750c1a4346f2aa84db26c5ffd99a4eb3a954927d9f149ff2f42898
MD5 5b324085cdace74135013e5531b00ec1
BLAKE2b-256 4634105b1576ad182879914f0c821f17ee1d13abb165cb060448f96fe2aff078

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 189.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8bc666331c35fcce05a7cd2d6221adbe0f6058f8e750711413d22793c080ac6a
MD5 c43bc8efe4486a348b857085098909ef
BLAKE2b-256 b02d09574b0eea02fed2c2c1383dbaae2c7f79dc16dcd6487a886000afb5d7c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38fe93e86b61328fe544cb7fd871fad5a27c8734bfda90f65e5dbe288ae50f61
MD5 230193820b16bca0246af4e2dc596278
BLAKE2b-256 4e270bba04b2b4ef05f3d068429410bc71d2cea925f1596a8f41152cccd5edb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7b27d1a8ead2b6f5b0c4f2d07b8be1ccfcc041c8a0e704781edebe3ae13c484
MD5 1965029bb06143cc4a59f79068c53040
BLAKE2b-256 1a847c1e412f76092277bf760cef12b7979d03314d259ab5b5cafde5d0c1722d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9aa659ebb0101b1cbc31461212b87e341d961f0ab0772aaf068a99e001ec4aa
MD5 714281b0facdff5e3f302a3626bb5207
BLAKE2b-256 74662bb344f34abb4b57e60c7c9c761994e0417b9718ec1460bf00c296f2a7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48943e278b3854c2f89f955ddc6f9f430d3f0784b16e47d10604ee0463cd21f5
MD5 9d2e382b357a75e6e46946bf42571249
BLAKE2b-256 cad99e9d7d7e5061b47540d03d640fab9b3965ba7ae49c1b2154861c8f007518

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 344c7cd0eaed1fb81d7959f99100ef71ec9b536881a376f11b9a6c4803365697
MD5 407e537d7857ce832a2e72e2738ebf94
BLAKE2b-256 bb404476c1bd341418a046c4955aff632ec769315d1e3cb94e6acf86d461f9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 764173717a01743f007e9f74520ed281f24672c604514f7d76c1c3a10e8edb66
MD5 2afa753aaed4fb51c0a3759860c689be
BLAKE2b-256 7e74f11ede02839b19ff459f88e3145df5d711626ca84da4e23520cebf819367

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 175.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 628aaa35c74950a8c59da330d7e98917e1c7188f983745782027748ee4ca573e
MD5 cff162fdc403be3ef99d02e50588ca53
BLAKE2b-256 5e2ea8f9eca8fd00e097d7a9e99ba8a4685db994494448e3d4f0b7f6e9a3c0f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 190.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4ab834a054c6f0cbeef6df9e7e1b33d5f1bc7b86dea1d2fd7cad003873e783d
MD5 cb5094105258cdf03f4f8da89e84236e
BLAKE2b-256 cc4d619866af2840875be408047bf9e70ceafbae6ab50660de7134ed1b25eb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef3ec2296248d1f8b9231acb051b6d471dfde8f21819e86c9adaaa9f42918521
MD5 0ad728807cb01e31571ee3d44445c8de
BLAKE2b-256 b46804d7a8f0f786545cf9b8c280c57aa6befb5977af6e884b8b54191cbe44b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6129f0cca52992e898fd5344187f7c8127b63d810b2fd73e36fca73b4c6475ee
MD5 28d700b87fd4f75716eff8c3af7e4344
BLAKE2b-256 24bfe20549e602b9edccadeeff98760345a416f9cce846a657e8b18e3396b212

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21995e74b5c598c2e004110ad66ec7f1b8c20bf2bcf3b2de8fd9a3094422d3ff
MD5 7db641562fcc02e63554af17a2808873
BLAKE2b-256 b5d1d4cd9fe89c7d400d7a18f86ccc94daa3f0927f53558846fcb60791dce5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 846758412e9518252b2ac9bffd6f0e54d9ff614f5f9488df7749f81ff5c80920
MD5 f32dbe1d40312645a5f89380257cf567
BLAKE2b-256 8a37655101799590bcc5fddb2bd3fe0e6194e816c2d1da7c361725f5eb89a910

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5102c7e9b3acff82178449b85006d96310e690291bb1ea0142f1b24bcb8aabcb
MD5 d1f78deab8c8f52ace478cd49b7d6c93
BLAKE2b-256 6d81074612945c0666078f7366f40000013de9f6ba687491d450df699bceebc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d4248cf0b6129b7d230eacd493c17cc2d4f3989f3bb7f633a928a85b7dcfa251
MD5 e52f82a1530afe02974eb64c10bcc6f5
BLAKE2b-256 6ecf317224852c00248c620a9bcf4b26e2e4ab8afd752f18d2a6ef73ebd423b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 174.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ee9e3f11fa94603f7d673bf795cfa31b549c4a2c723bc39b45beb1e7f5a3fb99
MD5 51478955c24344d7f100468d1e9ffb70
BLAKE2b-256 ef29cc7db3a165b62d16e64a83f82eccb79655055cb5bc1f60459a6f9d7c82f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgspec-0.21.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 188.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6faffe5bb644ec884052679af4dfd776d4b5ca90e4a7ec7e7e319e4e6b93a6e
MD5 c8c0ef04d66eccc66ca685f865d5a401
BLAKE2b-256 09af8bf15736a6dd3cb4f90c5467f6dc39197d2daaf10754490cdc0aa17b7312

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1009f6715f5bff3b54d4ff5c7428ad96197e0534e1645b8e9b955890c84664
MD5 ffcf619a01dbbb9fa3c559f920da0660
BLAKE2b-256 c831645a351c4285dce40ed6755c3dcc0aa648e26dacb20a98018fe2cce5e87b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d2d4116ebe3035a78d9ec76e99a9d64e5fa6d44fe61a9c5de7fd1acf54bcc69
MD5 4f62dd2dd98463c59ef98fd05ac78626
BLAKE2b-256 b49cc5ca26b46f0ebbd3a6683695ef89396712cb9e4199fd1f0bc1dd968216b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6badc03b9725352219cca017bfe71c61f2fbd0fb5982b410ac17c97c213deb30
MD5 7dfe23cb5985fdce67f175bddb8535a0
BLAKE2b-256 9f75bb79c8b89a93ae23cd33c0d802373f16feaf9633f05d8af77091350dda0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3124010b3815451494c85ff345e693cb9fe5889cfcbbef39ed8622e0e72319c
MD5 5acda664965cddaf3b3bd825c054dcdd
BLAKE2b-256 fa54d24ddeaa65b5278c9e67f48ce3c17a9831e8f3722f3c8322ee120aca22ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4692b7c1609155708c4418f88e92f63c13fdf08aa095c84bae82bad75b53389b
MD5 064bc910f885ca16fb77d6128b7c7dd6
BLAKE2b-256 c160504886af1aaf854112663b842d5eea9a15d9588f9bf7d0d2df736424b84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgspec-0.21.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b504b6e7f7a22a24b27232b73034421692147865162daaec9f3bf62439007c87
MD5 7492285a771d3a2604994b5107fe566f
BLAKE2b-256 ba7fbbc4e74cd33d316b75541149e4d35b163b63bce066530ae185a2ec3b5bfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1bf17cbd7b28a5dffc7e764c654eed8ccde5e0f1de7970628608304640d4ce4e
MD5 75a6fe08db2187cb28c7036fb93e43bd
BLAKE2b-256 802bdaf7a8d6d7cf00e0dcd0439178b284ade701234abdcadf3385601da04fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: msgspec-0.21.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 188.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f041a2279f31e3a53319005e4d60ba77c085cfcbe394cdc7ce803c2d01fe9449
MD5 13c15d5f76599658c48d2ad57fa76ce5
BLAKE2b-256 c1ce27021d1c3e5da837743092a7b7a5e8818397e1f4c05ee8b068bd7d1fd78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae0162e22849a5e91eaad907766525107523b0daea3df267a9fcb5ba4e0936ae
MD5 ec5eae9413fb3107154ab5d93bbeaad6
BLAKE2b-256 04014b227d9c4057346271043632bad41979cf8c3dca372e41bb1f7d546395b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49880fd20fdbcfe1b793f07dd83f12572bab679c9800352c8b2240289aa46a06
MD5 38b2b920f868aa4cc42e5f3eac924d82
BLAKE2b-256 7db94384243e814f2579e5205e17d170b9c1a30121afd1393298d904817a7fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f667b90b37fad734a91671abd68e0d7f4d066862771b87e91c53996dcb7a9027
MD5 a39e7b652ee741f3b52e4ad4ce6358df
BLAKE2b-256 1986714feeaf3b84cf2027235681725593840153dedd2868578f9f2715e296bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file msgspec-0.21.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd677e3001fdfed9186de72eab434da2976303cd5eb9550921d3d0c3e3e168ce
MD5 268d545808db9a86a16d1e2556be1bb7
BLAKE2b-256 9e957e591b4fa11fdbbf9891164473c23420a8c781ef553295abe416bf335f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed2ab278200e743a1d2610a4e0c8fc74f6cecb8548544cdec43f927bd9265238
MD5 e44d91b8215e5cbbce76436743e2ea6d
BLAKE2b-256 691a6899188b5982ec1324e0c629b7801eed2db987f6634fab58abd9fc82d317

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for msgspec-0.21.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72d9cd03241b8b2edb2e12dcc66c500fa480d8cbd71a8bac105809d468882064
MD5 63f7be27e18115cedcdb7a15284b9316
BLAKE2b-256 9638d591d9f66d43d897ecbd249f2833665823d19c8b043f16619bc8343e23df

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on jcrist/msgspec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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