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.0.tar.gz (318.7 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.0-cp314-cp314t-win_arm64.whl (182.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

msgspec-0.21.0-cp314-cp314t-win_amd64.whl (206.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgspec-0.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl (231.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl (230.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (229.5 kB view details)

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

msgspec-0.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.1 kB view details)

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

msgspec-0.21.0-cp314-cp314t-macosx_11_0_arm64.whl (192.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgspec-0.21.0-cp314-cp314t-macosx_10_15_x86_64.whl (199.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgspec-0.21.0-cp314-cp314-win_arm64.whl (178.9 kB view details)

Uploaded CPython 3.14Windows ARM64

msgspec-0.21.0-cp314-cp314-win_amd64.whl (193.6 kB view details)

Uploaded CPython 3.14Windows x86-64

msgspec-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl (227.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl (223.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224.7 kB view details)

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

msgspec-0.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.6 kB view details)

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

msgspec-0.21.0-cp314-cp314-macosx_11_0_arm64.whl (188.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgspec-0.21.0-cp314-cp314-macosx_10_15_x86_64.whl (196.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgspec-0.21.0-cp313-cp313-win_arm64.whl (175.2 kB view details)

Uploaded CPython 3.13Windows ARM64

msgspec-0.21.0-cp313-cp313-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.13Windows x86-64

msgspec-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl (227.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (222.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224.8 kB view details)

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

msgspec-0.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (218.6 kB view details)

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

msgspec-0.21.0-cp313-cp313-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgspec-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl (195.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgspec-0.21.0-cp312-cp312-win_arm64.whl (175.1 kB view details)

Uploaded CPython 3.12Windows ARM64

msgspec-0.21.0-cp312-cp312-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.12Windows x86-64

msgspec-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl (227.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl (222.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224.8 kB view details)

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

msgspec-0.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (218.6 kB view details)

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

msgspec-0.21.0-cp312-cp312-macosx_11_0_arm64.whl (188.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgspec-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl (195.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgspec-0.21.0-cp311-cp311-win_arm64.whl (174.3 kB view details)

Uploaded CPython 3.11Windows ARM64

msgspec-0.21.0-cp311-cp311-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.11Windows x86-64

msgspec-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl (223.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl (220.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (219.7 kB view details)

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

msgspec-0.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.0 kB view details)

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

msgspec-0.21.0-cp311-cp311-macosx_11_0_arm64.whl (186.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgspec-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl (192.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgspec-0.21.0-cp310-cp310-win_arm64.whl (173.9 kB view details)

Uploaded CPython 3.10Windows ARM64

msgspec-0.21.0-cp310-cp310-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.10Windows x86-64

msgspec-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl (225.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgspec-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl (222.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgspec-0.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (222.4 kB view details)

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

msgspec-0.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.3 kB view details)

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

msgspec-0.21.0-cp310-cp310-macosx_11_0_arm64.whl (188.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgspec-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl (194.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: msgspec-0.21.0.tar.gz
  • Upload date:
  • Size: 318.7 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.0.tar.gz
Algorithm Hash digest
SHA256 9a37c1fb022f895bb24dfac597e449e19eb0cbe62447a832601cb19bb480b51d
MD5 a5d79b5c52b7db518de70b17b9dfacbb
BLAKE2b-256 c2aed8fab0915716e70910012c0410d16b5eedf542493d19aa80c155215208bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0.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.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 182.9 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 91af695ec681bf6a114d7422b76c5b8b51ce698e89152a0fafaca6fad50478b0
MD5 ccda98c5879d4cb5606819e26c5b1988
BLAKE2b-256 bda47e7e36cf57a4870b5b223d2ea19c4b78c32e6e6dcd2612588ddf69a97c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 206.4 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 640e15c6ef5003575f0c16c96bbd25f92b42c5f02e27d4d0c08de9551c288cbb
MD5 a0dc578a4888bfa34da03d78013ae305
BLAKE2b-256 c132a6415442eb243ee93e63adf85756630c64c4377e207f5f907de4e1d5b283

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5298b4a4ac55ed78234b8c206e6ab5aa5c5bf2573664c76205e89c54282df1e6
MD5 7bcb7927ec03b243b953d0f3154030dc
BLAKE2b-256 aaf563bc93a66228853f0aa6c02d0dcec276be383ba0ab61b71a5915432affd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bceae6627c37eaac2379cabf9fa612ffe5fa64f23c90912019820423b0df7009
MD5 5993947bf69a11cbadc36bcc48cf40e4
BLAKE2b-256 121fa1faffbbb81e01c2d388aa8589b8d0efa54a1813c9234858978e1bc5fdb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3d7545089ae92d0d6f2dd5dd96814446c58eff360af050f734fafed7f72c8f5
MD5 a8bc6b3c64fb2c2529193e1b814b83a2
BLAKE2b-256 57342a2642df1cf93ba7a73912aedadd7fe8372f558ce41d3e9db5c3634352ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d00088bd8bf00c3ed3e2f3fef78cad2ce871c5599df0624928c6762fc7671f6
MD5 83dff6ebbe4ce076463216e3eb1c974a
BLAKE2b-256 1c8aab4d49c9ccbc4e12072d76323bb9ddf670b6c7634a508b8b3bbd31434954

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e14c3a27a97ca9bb03eb9d5612609b141068d98eeb210c08e5fbf2556d601e99
MD5 7b1180e2708950d4fbf092a4bd832544
BLAKE2b-256 88318b94b749a69514357c54d7a5027b5280898ed28c39b3ede78427c3aa7bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 549dc09f6796da9f0ac3c34c2bb9c10db85de723eb075dcf837f83968ecedc97
MD5 e9ec5c8a33a5257bcdbf5277d9551eac
BLAKE2b-256 91eb2c999c30b205da592ccaf650e5be56e22aefb65008b25e654eb428299f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 178.9 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0e032189438ee162fc66a528e0e26d578c8e5c30b0a8e1f1a78aa96cc27a36d1
MD5 42490854bb2b22e718f1b22a08d5aae4
BLAKE2b-256 f1e5746a018d8da7f0d1b26cb6cc8662420fad578917bf4d73482c9cb0c25eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 193.6 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ddc2de6af2adcd07b6d6f6745949eb58963e0f658a987313814954bb5489b26
MD5 039b3363c451b528d8703c1a20fcc240
BLAKE2b-256 f3663d57029a4329c67ac8dd00374279b823873b46c4fa797b8e6096e3a749b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec4542f7a2c354c8929aa2e2986b184ff84071d19a55d5e6a3b43c3b3a38b128
MD5 3de9188b4e886e616a579cf7cd22b15d
BLAKE2b-256 787d9a9bea17363025390bd0288f72298cf5323f9d39ddf3fcc1ebc6a4b7ef64

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98f5c4350979da05340782b267b9bea22bfddca10276f45fa374e0765c058303
MD5 3302139ef6098a8902153e062edc1888
BLAKE2b-256 3cb8b67dce3cac2604d199c3d3aac1df780b92856861482cbc8ca5f53dcde691

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b32866fc3faebe7e09b2fa151fb9858c36e9f133b4ee8132c0f6beea5f2b6c0
MD5 8f4816dc02ff2a725f2d658f4e61ca90
BLAKE2b-256 00d1a516be3fb9c61dfea98fd262ce1aceaae2f7e665e750a1a8eaf96d5af5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a9126c287092a7225115f3372f91b2d38a36148a05cb8da3e827eaf61329ddc
MD5 e4d8f3deba6343c820285a661849e7c0
BLAKE2b-256 4114862ed7c69ee77e1c9774988e6d57f6b0f782c95e91ec313d93785c61168d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e139825a8ca0c33496fd0f050d2ba89c93f0548e4ab877a0329ac45317451fb
MD5 a45c0dff6cd7d3a948e6915578313533
BLAKE2b-256 35128950cb18dd53c0c83fdd942e0196fe0b3f4cc38d7dbe199c01ee57d81c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21b4b4bbd6d6fe49628a9ad115b50b1546e706dec7aaf747afd32b9a75a6e0aa
MD5 ebc69f86ec0291bbe9221a96dd1c1cff
BLAKE2b-256 f6bc2a705dcf966c604240c271c03480e8f36090c0b7c5dd4701d77d493a07f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 175.2 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b0088fbd0d2eec986df7cf4f17eec97c8a1aaccf9dd4e0b72f4794522fa83f65
MD5 268f71f0fa699e3d6322f61427443c56
BLAKE2b-256 2abb2c7bda6c8d0378c17e5523a6cd0f1ce22ab43f6934ab5a7eec748a7e0cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 189.6 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57af1488174eb944b626b2f25838f214966284462458a2bfce44b9adfad725bf
MD5 e705969569f0694e2f7b3155ed719098
BLAKE2b-256 afa7bcf3562090f4759414cae67a92db937e163083e4b2aed4eb1a021aa9188b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ceb9ef0b6ba4fef4c9da09595f9105cc02e8eb262df0d6220f22370ffdc2ec0
MD5 e8ee3b1d0e75ec02cf4309355efc0ce6
BLAKE2b-256 03cea7186a8024490fd41a190d139d423bd887821e79a82f97dab4283604ec35

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dad302178de0868b2ffa4de3a0072e51843106059dab5492c75743197c444736
MD5 4d8ef99eaac4e993475df31cfb6cdd5b
BLAKE2b-256 7171d188c26842138c3172d680020cfde078c3ef6b5b0fba9d16230333489a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f851f5d4356934086657dfae231115cbcfc5796e9aac604441d2a506f5c78d33
MD5 f33e2581049e5f44690b0a1b9397d2e2
BLAKE2b-256 75def6ea46e9ba3edd5f69bc0298aa59611ad59bd32fab69a13c163fce47c2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef540261ad9cbe1662ba1e6ebc64230532cf23d0c6c01ea7a7fcb383ec4c8008
MD5 50bcc2ab4b6289bce2385c13cc13db49
BLAKE2b-256 c6e5c775da2cc45758c0c001db89d49ad95978a971de7ed82efecb72e7f0c5d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec3fc07f61c915d3001a4733a6bebcbfb35298601495e939fb38d645e3c8ffce
MD5 0e90911f4ff5ad73ba3d61da74fe600b
BLAKE2b-256 5c85a40a8202c718bc7d87bce4f5fe0189252fbcef8021936e34189ed4453ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8843a8953109ccb56d484d238aaa93fd64bd892bacaa73f15891d12a03c75220
MD5 b9d47ccbbaf31073be03c731e815bd68
BLAKE2b-256 03bc41bc2f0d9374117287a561cf8ec722bfe103ba35423580af572f74c73e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 175.1 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 19646187cdf5b94534c8697035c6f86b41b765260074203b40553c2fc51ac00b
MD5 ecd8a07f405d4d98398f83f392b1a0f8
BLAKE2b-256 0cfa679f36fd5c98a676c6e2dcd25946d77ff7c28465ae9aba203a93d71774fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 189.7 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c010790508a9fbe1b9328240ca8840130629b0055c52f58838d22d57ece10667
MD5 6bad2647660582c338b710821749000e
BLAKE2b-256 98f556aaed6427a671d011030835f35fe2d4ed46ead4d2b03ffc6c356fd15e4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11043d534a1bfcd08f1d4d5b50ba60015527b4c8517ec12c2213899e81913584
MD5 e3987c3e7eaa11cfa0a044cf09431f03
BLAKE2b-256 83954199f819d2b82db9c7d6de235591c02eebe4796672184eccad7f2b67d4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6067127b5e44430a59fddff8d934a7a37ce96862cb25994415b68db7d4457bd5
MD5 e677baef0fedd0619ce7a61d119d0191
BLAKE2b-256 ff4e690f1487f72f37ca4482d4c63dceaf48d2b68db76d374108d7f0a15cc72c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ff68f1f12aa3fa1335b79a5bb8b9158cfea2944b4cf8253d05fe28ab6d3510f
MD5 dcac188bfab8c1411fd5d69ec3faa4a8
BLAKE2b-256 7b343cb2b8a506850b8667c1167eb817a0b6605ebdf0027d301815ca2404f72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46e5e9b23bfa453572d8290541327d84cac1f74bbf45b88053dfea3b92d2608b
MD5 8489a44e254b8b7b4d6b382c7f14b926
BLAKE2b-256 a469a978335a9724a69ac4428e06be1cb8ce7e737453857575028159bd264ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c978ea4d2afa8f06fec2fab47f478f187e5523569c4613d135f4d9db4831de7
MD5 6f4d2517a2f97c2f6e023a80d2462421
BLAKE2b-256 7fd13af0f8b31768552068a890e406488b1ce91ef935eb8ff001f1f130a0a3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 797d8f563c29ccc2047e699099cf8ab72dc41858c5bdd100d4689a0310072bff
MD5 76d9b2df69ff8c81b0347f83183a28b6
BLAKE2b-256 665793fb97be49db1ff62aeda477e1fef6eab739df17a05234e476b644234fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 174.3 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b84ee1e334953e02aefce8bcde73e2a89e03e193aa9851e2e49810e00a9fd088
MD5 8f2ee981e95fde7812c92fe26357846d
BLAKE2b-256 46104e85bba53b8f4514608578afcf82ae13cae1a043f87ad639c619aef955cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 188.4 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03c472124cbbbcfbf0d2f429f62a8fb2d12b6633448a884dd1a875ab32aa59b4
MD5 4109ba99cd5ea841546de805f0f042ac
BLAKE2b-256 ee06924ab2c12b55b479e41039345e988bf935aabea92fbe90b7faf93166740c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e67b0bbc71b8146c159682747e625411349bd051905a474ca832dc828174dfb8
MD5 9e0f06e86e26e541c36eca0a0794b9f5
BLAKE2b-256 e94ec21b1f7927cd00f56eaf0c8f182b96cd81707f153dce872876ed8b97bbca

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74de7d8831e4cb6e39ccc92d100fe50cecd2b2a8729089505437633e4fa52ffa
MD5 c1d3f36623faa6b236caec01f0bae1c9
BLAKE2b-256 f5ff8edf835d8e54b6d7431950cfce3c9f66c5bad3eb0651c4792989c0769845

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2a80db664c75f336cff5e17df7861c23fa47bec6f96c2c3f94be773cc675821
MD5 a026030fdccdbc0a8283f3b93f9ad620
BLAKE2b-256 68dafda01c754dc85aed67ac0b7d3b213ab50b5b39f15f5eb072b2baf0edb689

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79a582748a2461204347d89adb5e500a0064d6d81c62e19342b5755bfcce23d2
MD5 6e5098a79c8532c28a60559cdb77f4db
BLAKE2b-256 4c68a745bfbaf6cf88db27294e242aa02cb392bb9b8efeb076c0e2abdeaa51b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47220291d6cbc7980098d0e7593e77d86158ff08b9e61d64b2559928e5457828
MD5 71dbf76f2711e28f1ad4009d35e3883f
BLAKE2b-256 bc16418ba970f74707e2590954f7fda0b44c1d2242d3835aecf914f1dd3080e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0634e676eb334fde291310f1d0f23bf48332977c2d0ebdaf98dfcd9437091782
MD5 a38bb7fdf5adb8a212822189d1278c48
BLAKE2b-256 b234a66dea16444967e3fc0991aff57ef473e2214e5bbdbe3c2b3139d2ccec7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 173.9 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9b676a2448461e167d8b5fc79ddd4f9bbe806322b2fd7e88c631e99f32a16842
MD5 bfcc6c31720371601873f494adde7f0b
BLAKE2b-256 99ca5ef87156ebe095516e1e467abaea9b6c50a7f9c51168583f7cc49779c0ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: msgspec-0.21.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 188.1 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4c84fac795cc8a2e35a70de63608b502fda2c3864eacae032e650c65b0a46f9
MD5 54909d879dfec213d1a6a77c3502531c
BLAKE2b-256 779eb5ec50a1051e74da5785aea618f7fa4819a09ce09df24c9f6348d9afdfb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5b575124b8c4381baecfa26eacaaae119685763d3e399ab7abc2f1af88a2e53
MD5 af4d70d663c089d5baf9edd1616130d7
BLAKE2b-256 277e05149e0b19b3fa3fdcafffcaeaae13fadeeb4d874557161f14421dbfdddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b0c658073659562abb6414ed21c0b160b6201018def0d933d961d05bc4cf212
MD5 50b8c5318d02acbb493744ffa2f13644
BLAKE2b-256 e7502086b5ac8e4f59ef05b213112cbed31369fa3cb7bf3471f00e79912740d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f920711fdcfe4d2aba3e1b4b6b0f67f0eb07beca22881d5bd234e7c8d9407a3a
MD5 7888d66b006b690094673280c8a4dc03
BLAKE2b-256 db23fd0178c083e1876530f0b6aef2dedec893cfc2d3d54cce1996c4d0883514

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d52f848fed3841c75d902ab975ebb8abf5fed4f37bdef9b8dfc9c4d35c704cae
MD5 3d6d29855bd55700c39e07ff15e7ac76
BLAKE2b-256 2313aaedca729b3d9b60802b627a21cdf541eba455a90241b5545481db3df3db

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b931ce7657a5e00a9053cc2ce37c24ce4daaec684706f278b29a0cdfd870d188
MD5 bb01daedea59634c9a2c6b54d78944db
BLAKE2b-256 64a518e0204ee6a26a2b2a42d12b82b697c75126f34e7d5896370b8bacbc28a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0384bb318fa101459cf40a7d67250d5ac68ad2b1c370ecd5e55568f5dde2ed74
MD5 78a42b9ce2ab96dc5660e7c837934726
BLAKE2b-256 8d9cc3187ff89776871691311a0662d4c9427b9a06ab6a252d78f73b0ec696d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec-0.21.0-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