Skip to main content

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

Project description

⚠️ Community Fork Notice This repository is a community-maintained fork of jcrist/msgspec. The goal is to publish wheels to PyPI as msgspec-m for easier installation. We are not accepting new features or major changes — only minimal maintenance and packaging updates.


msgspec

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_m-0.19.3.tar.gz (319.6 kB view details)

Uploaded Source

Built Distributions

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

msgspec_m-0.19.3-cp314-cp314t-win_amd64.whl (204.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_x86_64.whl (223.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_aarch64.whl (214.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.8 kB view details)

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

msgspec_m-0.19.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.1 kB view details)

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

msgspec_m-0.19.3-cp314-cp314t-macosx_11_0_arm64.whl (224.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

msgspec_m-0.19.3-cp314-cp314t-macosx_10_15_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

msgspec_m-0.19.3-cp314-cp314-win_amd64.whl (192.1 kB view details)

Uploaded CPython 3.14Windows x86-64

msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_x86_64.whl (224.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_aarch64.whl (216.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.4 kB view details)

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

msgspec_m-0.19.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.2 kB view details)

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

msgspec_m-0.19.3-cp314-cp314-macosx_11_0_arm64.whl (225.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgspec_m-0.19.3-cp314-cp314-macosx_10_15_x86_64.whl (219.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgspec_m-0.19.3-cp313-cp313-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.13Windows x86-64

msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_x86_64.whl (225.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_aarch64.whl (217.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (222.0 kB view details)

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

msgspec_m-0.19.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.7 kB view details)

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

msgspec_m-0.19.3-cp313-cp313-macosx_11_0_arm64.whl (226.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgspec_m-0.19.3-cp313-cp313-macosx_10_13_x86_64.whl (219.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgspec_m-0.19.3-cp312-cp312-win_amd64.whl (188.2 kB view details)

Uploaded CPython 3.12Windows x86-64

msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_x86_64.whl (225.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_aarch64.whl (217.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.8 kB view details)

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

msgspec_m-0.19.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.7 kB view details)

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

msgspec_m-0.19.3-cp312-cp312-macosx_11_0_arm64.whl (226.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgspec_m-0.19.3-cp312-cp312-macosx_10_13_x86_64.whl (219.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgspec_m-0.19.3-cp311-cp311-win_amd64.whl (186.9 kB view details)

Uploaded CPython 3.11Windows x86-64

msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_aarch64.whl (207.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (212.3 kB view details)

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

msgspec_m-0.19.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (205.0 kB view details)

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

msgspec_m-0.19.3-cp311-cp311-macosx_11_0_arm64.whl (215.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgspec_m-0.19.3-cp311-cp311-macosx_10_9_x86_64.whl (209.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgspec_m-0.19.3-cp310-cp310-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.10Windows x86-64

msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_aarch64.whl (209.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.4 kB view details)

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

msgspec_m-0.19.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.5 kB view details)

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

msgspec_m-0.19.3-cp310-cp310-macosx_11_0_arm64.whl (218.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgspec_m-0.19.3-cp310-cp310-macosx_10_9_x86_64.whl (213.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

msgspec_m-0.19.3-cp39-cp39-win_amd64.whl (186.7 kB view details)

Uploaded CPython 3.9Windows x86-64

msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_x86_64.whl (218.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_aarch64.whl (209.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

msgspec_m-0.19.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.6 kB view details)

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

msgspec_m-0.19.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.5 kB view details)

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

msgspec_m-0.19.3-cp39-cp39-macosx_11_0_arm64.whl (218.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

msgspec_m-0.19.3-cp39-cp39-macosx_10_9_x86_64.whl (213.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file msgspec_m-0.19.3.tar.gz.

File metadata

  • Download URL: msgspec_m-0.19.3.tar.gz
  • Upload date:
  • Size: 319.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3.tar.gz
Algorithm Hash digest
SHA256 074d56f17de25e6c0f4184ecff9c163de0f612a9956260df4342f3f51d959c41
MD5 82bbcff4d7f0f86a92716be7def7dae9
BLAKE2b-256 3bf474f6ae9084690280a59b6dc6de52189b21303c505a188ef435a7eafe371e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3.tar.gz:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 41891410a28b66d28ff89e00cfbd68f80bc54c2c61ba3393ec01662125561f18
MD5 0c11cb116a22461522cf70f93e11f12a
BLAKE2b-256 5296ba7fed5297556f6cba1199d21c3e2e26ece78c36548985d82ca1ecf7f87b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 618b4de4ad867fa3701c2d7fb0f8961397ccc61e053115ddf8605e3795376af6
MD5 4315efdfcf20d13b6dceca973987d4fa
BLAKE2b-256 8a0b37d660fb997f5a5889cf96c68996431859059e283fa4bac2f02cd3e9b321

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b032f7c4102266a134954060b4e8d9e5329444ea0eb98befc97ed602ab00cc7
MD5 e1b9021b4c85bc3075edb1ac739a5017
BLAKE2b-256 4b09a59f16d32868f04beffa9771296c75f266e6320fa82c2a63968baa59bf43

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7138397e6edcbe60bf51deeda0e49713b6eeab9397f17a3d91e9b436b35b0c1
MD5 6141a2dad00fd81aad57bb6905f42a40
BLAKE2b-256 18a11f26838070450369ccc0bc0f94bc97b920cdab4ba3451a0a6e92bf1f8543

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 247c8075ea22d1d22fbff4259c2b3c12d41029728147b70804f591997efe0a88
MD5 ec15a7b2f109fb0ab31af53faf0f5e8a
BLAKE2b-256 df17db9e5358d60f28fa7c9c330fe7c34c360bc9c186de671d757cd495ddb64d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3162adfd97d017cd8804c5f339184a169ba8d4f4a5ddec84def52b2828fa5bc7
MD5 e6d7b1faa5ceed174107ac47365fca78
BLAKE2b-256 a89550142e4129d5479bd04d9fc3c7a540afac62f536a578c9fedd45446a68c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e2a42a0e14a78459d63ca9d084446c65026688294dbf57444469a0923d8bbcc9
MD5 5baae4c9091137a221bb8600673e8084
BLAKE2b-256 bea52b815e42c397ee7ebddb713459348971e320bf4a5bf76138fddde7938aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 192.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 257ec1679ccad3f799bebcc06aece2d16cb864487ffe60008de938310024acc2
MD5 87ae1ac1d1a16c715c50bfb7c093cc02
BLAKE2b-256 46ac54ce237335c3288b96d2e00d38448db295bac1307aa115ba86fdf976963e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54b674576c74b886f5553d14e059f4f2ce0afef2193f217ae95d7ecb3c2468eb
MD5 be9c211a177f89140f9259dd82ce81d7
BLAKE2b-256 67331a01022f2324384a984990a560f48df4c030b20ad343a8b75c5fb1fba03e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b66484e6427c00e4c18b86ebf8dcf8948f7c7d9e9a8ffed0b79c9bae222a7370
MD5 29022e62e0ace5e4b8a637440d7bbb9a
BLAKE2b-256 67b2644dfb8c56e04caf5509e08c394b19f3e4b1cf6f3de2245d51a975243245

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a59c864d4062ebfb88bcbb6117f48695518be8c9d57fb883fb4f736e325cf6d
MD5 da6ba4f2ca432ad2d97657e1bb3da8ea
BLAKE2b-256 07dacdfb19f0718d6baefb669b299e4a4baea6f88412c362203784c7f28b1906

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1c0d96afe7963213d23d39f43aa6c7a5ba8a395ed586ac38b1c356bddc18572
MD5 895e5dc5344b60fa283d45d8d5fef79e
BLAKE2b-256 ee779d22fa4ac8c3bb7aba2f0f8283eae481dff32ff022f79d428538a063f989

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6439f840cd671076bbc28aa2812642aa80f35dde6895bbcc0582e67a43c411c8
MD5 af50b447fb4b3ed1504ae3884d37488b
BLAKE2b-256 596f44466fad5d0e0238f2f9c0e2fdb5babfb8372b9e3a8216bc9d87d03ba3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 775e3d605a02204f6496cba94c95c29cb015829bdce0c09b17ee59d81465a008
MD5 27b852c4816fccc91fd478bcd3241f73
BLAKE2b-256 8c8edf8788b514499712d0af7e69309782952e51e188fe80b192f4e93261c8bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 188.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97ee5d0006ced20bb02be38aaa67ba34968f324e80ca2de2f501051f52add0fa
MD5 2d92ba50805b9b863d024ee7c59fee56
BLAKE2b-256 d53890468da9a3af38a72d7bc4751ec62a1c812cdeb391b1f70d280c93561d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9f3a4d009aa40de6c19b588f631832be1a2b24a2f8ddd9bd36d890ec5a42740
MD5 36c0c4123cbe6c3f7f7470d19a086240
BLAKE2b-256 0f7e31c42a50d6dab3dc6983fd2fbdb4fb6cdf61e04a6083f6a274d9bef7bc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b263ca3dd507707a7a2bc82c09746d0dd5a5596e9cdb70ee140ee3eb651084f
MD5 06502b3b9f2b21ddb40a5d0a77825e5e
BLAKE2b-256 31d5f76914c1b831c7621e7f0d53fa6d8140c0e674c715d1a584df0b3263d00f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c0286b736d8b3dff224dca88c084e8d08dae59cf821e0ef771e382e95847f22
MD5 0a9a046443b8d0371791f037d4cf3470
BLAKE2b-256 ebe919927c79400c98ccb3be7418382d43b2c575ce88b904fc74ab69f71af852

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57839618ea750037ccb95523bfaa4f8a12b2230de8685d306f0a09b3f583dc69
MD5 6423841c6fd7921e9c26d1fd64dc0025
BLAKE2b-256 37491679085328698406c147832390b76f82799c3586df82fb01c0a40fdc6501

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 900edb76d8f3f63bd0dae3be211cf71d9a9ff9c10bc538718c23dc99dae39f20
MD5 e0fd43fd11bb5d99cf09f1f17f823750
BLAKE2b-256 660183a968ecc7474db9112eb0b52ba71281bf2a164b1de7e56ab7a2bc5da6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87bccfbecd0943ac12d4b51181dd8cc53bbcd68440b12624d4c5ed349c7213fe
MD5 61723018eed3fa633208ad88d359f4eb
BLAKE2b-256 c0a3a2d08e39ad2aa48d448cfdcad7161cd32cdd00d1a9cc1c98a49819468755

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 188.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2173c441951d3a55269b612826e64272c4bb1e3f18085165b6eb43ce15fa5c29
MD5 ca210fc288743ec046ec4ec5b7281782
BLAKE2b-256 b708f2d143ca3c25ad7907e043408d4efd46af60b4942b59ddc7b351f3623455

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 310393f144e05c380cf5466f988bee19b922a735877f8f6635e506ec03da5cce
MD5 62720400bc9d146ab840467c2d336b14
BLAKE2b-256 54d4f715aae677cf9f4771e903744260b07f103e2b7cf6c544bc1f006c61dd2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d65b906742858ef327f0be155adaf0276e904129aa350794e596eef944cc6a7
MD5 97bf7d8e0e48792bfd81c0ad95bf20e7
BLAKE2b-256 5fbb36ef65159d106dd6b294b300dfa66dafbc407585e6ee9afe9cb684ffe959

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d2a75ae25770aff3e962c960a9d5cded31d40d515ed2ae8d13bf0053a0fb782
MD5 3e2c4480ef1f9adb460cb65fe5bbdf59
BLAKE2b-256 bacb048a96efd70be8ec8a310cfb4fa0b934e14d672b4a40145ab7d75d13be5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78327d975db6219b668a763e0cae5d233a40420e5e99c0d682c0801dae9b572a
MD5 26718e3e8881b505fc4cab17aeefdda7
BLAKE2b-256 97cfdfd632aff5d92bf96a769e8161d44f1a1abb76f13b5aae01eded709f829d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cff8e7f9e77383975e842b6c12413728716629b86ab5013df06fa5fc75fef3c6
MD5 977e364beae58a343b7e41992f824cf6
BLAKE2b-256 f02070a2256a3823c807e52fa6a790f5506eb0e0403eb4af8e0db5583fe7ebeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 811145e8db3939e429da2ad4830ec34a1e411b538246d74ff3a3893022581abc
MD5 1aeac2b5535ed95446104ddbaee197b4
BLAKE2b-256 75aee13adb80e3d6639e1b80048f38de477abb8db8c77e1ee3b5b23acc8ade62

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 186.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 66865dc91eff381b4a688663b06cc9eae54a57ad4bb246945adfda6ce49f77a2
MD5 76caf8b7fabb3b7939eefe7a49f18cb6
BLAKE2b-256 4ae6b6dfb81dc6cdbc49c11546a970dd767902d028c99dd1c647324f1dd83bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea35fe743a43772f8364726a05e1223a46a914145bbab09cf20054fd3959fbc3
MD5 620d012a2951efff96f297df9f36ab7b
BLAKE2b-256 4654d4349c528e3b8623e6f7dd658c4f4ce750d9e1f208b9e69d8c5f0738fdc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed99724868769168f4dde19c160053fb2e90259d160a3fdfe5ccbcbcc18b85d4
MD5 aaf9c7d8773be903ffeef42d6ecc0156
BLAKE2b-256 58bdddb61b8b7b0d4313e0eeed1dc432d9225372e7d4826443729b62d360d6fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd932c8496d8cfefe87f8ab5e91ba243489fd87e46567e6dfbb1458bb9f0a2fc
MD5 9cb9b972226ead8a2a56119cfa5dcfe5
BLAKE2b-256 ed91ecfb52ac09cd2758046c74e9f56e9317d9df32b282cc312a9411df438319

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 414089c9632d3446e11adb8390c5ca8bfd3e7ab59e09d790d1eb35d592bbb472
MD5 63dab7f9fd3493a3a11cb972c1eaeaf3
BLAKE2b-256 0881ab60074c6c01cb8ca3c31c8631390a3fc75df4fe24d75f7d29b3ecb86b4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 929ed152bddc7c98aadac119922133444fa9aa83d4f21c43576cfcbda7d1f300
MD5 52a363c8606c31e54190d177603dbc1d
BLAKE2b-256 a6d269cf1439af5ac8a05b872b6fa59b8055bb402b7876d4a1af5b6f34ff1e77

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a917a59053b341d4cfa5ce990f9ebf2ca1fd41b0193c1f90d67c6083e943128
MD5 0fd5fe169548ee78044cdda01868b143
BLAKE2b-256 521ca53bcc947c17dc13adaacf7c4053d58e838874b092b25a0e25206170ccf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 186.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 196d3db7b30b13c7ba8a4647aee8db144690d98372d71eb4c816d5a32a812220
MD5 8bf9df1e607582f1ea84850db8501191
BLAKE2b-256 53346421b37a8a466c21ed9a8ae4ce2f230768d6ad1df76a7dc48bc5c77be25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c33bd863cfae405de938f680ad1bae1350f625b44eede3149496032ddc9a9caf
MD5 d874e5ab324e9bfab3e69071b0120bda
BLAKE2b-256 e778ad2eb3b512f4c6ba598fdc7f90883a69dbf046553c40bc8af6404729a57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 964d96aa36ef8df75f1fb94d12191c73bd81927296e5131a05a605e89d117948
MD5 9d08209d418e124c30b99f1110b00989
BLAKE2b-256 a46633a9cc48c9d7d40171a7d727bb34c84c7c33b62edc86a3da3687779b8dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24d9541b5e69e0c917914626a34239a08eca1a23237fca63bf02096939e69dbd
MD5 54c0fb77a5f9d6cbe49118bd8c058fdf
BLAKE2b-256 7696653395b227749a071bef491cb63251f845c580bcfd4c9fca1dbb865d1094

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0ebf4e0739d320483bf3c33f0d00d0415f592211fdc520f01611d0f68fc6316
MD5 f727e3a6431453fb96a7f799db6db5bb
BLAKE2b-256 9a7e69db06935cc4989c479b43957233ed5692f170496b0f8f673c179297af27

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77af7c526ca04d8e98236a697ed803e8eaa9bb2042fe56a34d8f922ca408fc9f
MD5 84182de5a5d19246cd9833b27faf7305
BLAKE2b-256 6b04bff071fd8ca04a951048d50eec66a5f2c7214ddedd6a7e2d41bacd8dd007

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9310804c773607d96d471558d4ec92a34652dda8db2ec92fe9961cd785286231
MD5 b98650ab7b47e414343afa60fadc3890
BLAKE2b-256 83310eaa48bc3c8e23db3c247d04bfb7de15d5cc1d308b87c89a9b4604fc9c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 186.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ee46682c57dbc9fd94e8a720e0830356a8733f897d13038a2aaff614185a0ab
MD5 f8b93eff109b247a5ba379e0a2f67a48
BLAKE2b-256 49ace3fb2a332dab94a6d3aa949ff62e244c3a05bf8cea221d43c494920d7dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbcec0bf4c443e831558022c6268c8a6d3e8195eda88cae93fd8efd55c0f8ef3
MD5 4dc3d73bacee17839e2d604c4428002b
BLAKE2b-256 e0fe1d566e53af7a4734b5a07a4a4391d89eec46b80ff888386bfdf8150bec5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57b4c2d63d4fdcb455cf68c1c9ab9819c6c27e469c7c18cee357b6531097932f
MD5 01de8d6fef78683b267e7b3ac3a6b935
BLAKE2b-256 d3fceaba7e530c17fa20d66cb0a7f206abd863bf22c71e554d789c43578eee2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 770be9e80126282c5685ab92463992b919137b5e01b0fd8c00a33b49c9c6bfa0
MD5 c7525ba07d598e0c0211fc6b6742e49f
BLAKE2b-256 dafa8e443f6c5db0ea34502447d7098db33d71120d28a4d195a2570312071f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec2f58a854dbceba8bc96bb3c9a9e15fa3e2668c6be92f8dcf9d56b5d8b24ac5
MD5 36a8ad4dee9a84c53b93be60d01630b8
BLAKE2b-256 3bbfc3b443486dab9141c3cc3936b957fa0354d2bcbecb06e3d0925dc7f3916b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b781e61fed7d2e13e87a7c29b9313ea3633f9ccf51562a658f50f5a016aad668
MD5 65d6c5f15bce60f275bced8873e121d4
BLAKE2b-256 cc77dda379f272f910e16aa75a77ce00dec35b6a660ee3523b77504ad5cb2d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on marimo-team/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_m-0.19.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b307c9f1f71d6da10b83dd56e235d73501f54addbf98054257062c009c5d703d
MD5 30de5614995f98aa6d2957ea90cc7ece
BLAKE2b-256 050866fb83e587e26c364c4bff1cbbb5cc62eeaf57166310f4500a1105284592

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on marimo-team/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