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.0.tar.gz (217.3 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.0-cp313-cp313-win_amd64.whl (187.7 kB view details)

Uploaded CPython 3.13Windows x86-64

msgspec_m-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (224.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgspec_m-0.19.0-cp313-cp313-musllinux_1_2_aarch64.whl (216.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (213.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

msgspec_m-0.19.0-cp313-cp313-macosx_11_0_arm64.whl (225.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

msgspec_m-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl (218.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

msgspec_m-0.19.0-cp312-cp312-win_amd64.whl (187.8 kB view details)

Uploaded CPython 3.12Windows x86-64

msgspec_m-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (224.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgspec_m-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl (215.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (213.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

msgspec_m-0.19.0-cp312-cp312-macosx_11_0_arm64.whl (225.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgspec_m-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl (218.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

msgspec_m-0.19.0-cp311-cp311-win_amd64.whl (186.4 kB view details)

Uploaded CPython 3.11Windows x86-64

msgspec_m-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (213.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgspec_m-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl (205.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (203.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

msgspec_m-0.19.0-cp311-cp311-macosx_11_0_arm64.whl (214.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

msgspec_m-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl (208.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

msgspec_m-0.19.0-cp310-cp310-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.10Windows x86-64

msgspec_m-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl (217.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgspec_m-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl (208.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (214.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (206.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

msgspec_m-0.19.0-cp310-cp310-macosx_11_0_arm64.whl (217.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

msgspec_m-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl (212.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

msgspec_m-0.19.0-cp39-cp39-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.9Windows x86-64

msgspec_m-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl (217.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

msgspec_m-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl (208.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (214.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

msgspec_m-0.19.0-cp39-cp39-macosx_11_0_arm64.whl (217.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

msgspec_m-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl (212.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file msgspec-m-0.19.0.tar.gz.

File metadata

  • Download URL: msgspec-m-0.19.0.tar.gz
  • Upload date:
  • Size: 217.3 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.0.tar.gz
Algorithm Hash digest
SHA256 b026e5ecbfbe71bac00481bda2da5ef2ec19c44d355857b00e21cbe0b29e9130
MD5 46d0288b78214b7ad8e10add805f4201
BLAKE2b-256 8597efe5293c2919a33e6f70d0903cd051bfc3222413a471c02ffc70990a8722

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 187.7 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4bd848983ff452eba4ed623dcdf36098575ee155fdc5df351a6680f4d76a4475
MD5 98dfdb6d00ae2a1672a5183f91da5305
BLAKE2b-256 8c85d63ef8e5451971b9651f1c944ba2c59aac606e10ba3a7b3236bf0092daab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e224781e58d521cc50cecdcc2a56937aa2b7a852b34128e34954469c5cc5b56
MD5 2bcad492473b167f530fa8dcacfc615d
BLAKE2b-256 7b3269c83c1cf01a9ff283100342b3a361e360b22d9485822ff8f563344df98b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6d34b5c64e6a3ca7df77995f297f2e2aa745a46c6935fb5a51476ae00714f01
MD5 66dab76a3a1f5ba73c4bbcfd7eeb40f0
BLAKE2b-256 7dcb07fbd1c7e43b2a26f9908ac563d0959e3844bbe7b5b8b52d60198c10be6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9213987efdc3b3c0acdf297b2a37cf21120d0a4ac54a47f9092fd52d06537fff
MD5 4ec161d43772c87cce903334aea6f048
BLAKE2b-256 365f7ec04b16e5f6e8d14a2d8ee44b69d8bcc41b1fdc3a064479d4505654e20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99cb1bebdf08531d9e05d4b7e586d70557f5fdb126e3221c676c4d7f4fd6ceaf
MD5 557cb9f1dd23fd3fc3422c21960cfae1
BLAKE2b-256 b0e3bb0b7addc4016bcdb10d7c635a29daa61528c6879ac1777a83fcf7be4fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e321bbc9fa7f22bd0fb9340ba1a5683ad14b349165786d5cf57ac35009a25fd
MD5 c74beaafcd67cde5d807d4b50efbab64
BLAKE2b-256 9d9167f262ea28652be9a0326980018dbb154f7d8cb78341bca07fed6f56c42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 45889c945296f81a2ccf92507fab07fab928a65c448ada0fe6f1c38572587a7a
MD5 4211c1684a8fb66aa8c4b856c8900a34
BLAKE2b-256 ccac6c27fac935699b7908fbe866c3b4bbe23dd27d85faea36db75d3855ffdb3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 187.8 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e3b5e81fbd0320793bde45c5c6cc9b74e5a73403ed858f00f21e153d838fa856
MD5 9f0726749f6fdcb78eef17a40723fe07
BLAKE2b-256 9036bcbe6a728947ef2cd015d3af2aca78cc7bd9a3690e1cd6c070461cea1f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63b4ebf92cf02cda73e0bd203d9461b02776aef644deb032f35466b6b28dfce3
MD5 a76f6e7ef0cb0b4f2d2c0f1bf7b926cb
BLAKE2b-256 e0c5b023ac161bee095e5d56652db2ef133338e9b7df058ee648709507cbce63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce60c7e4af18cf3e5fb93dbf3595409d094b0100256086f12ed8cecc8847658d
MD5 815b55888887b5cc43d2ef70c745efc4
BLAKE2b-256 fa3acc6c1f3ccb8f491f01cec7e12308430da00ec2788e2302dc1bc12eab0da2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8c05039b42c98cf7e5fe28575a4f7ce88561a807b3eb48eaf1debd3d13cdc9c
MD5 1a599ede278205119dbf066253a02e9a
BLAKE2b-256 2eb84fb3034172abc0198f76249432d9c9c0d57b5fc0342619bb4a92aec751bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35037a26a73827e2a281320c7d75507f842e16584155958ded07bc9de6eba1e3
MD5 d41379b0c8337774fdd304c6601cb12e
BLAKE2b-256 3b55a8df071cc82305d161e0d468fbf602e1a9bb776fc9152aa0f12dcabee234

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a88dc4be6e61278f0d84081262370ee14b807b066619a385a07a29d194df492f
MD5 881b8f5988c30813c9f6e3c6ce95abcf
BLAKE2b-256 1c2afbc60bd9976cab66f552f185d88b039a78d045e92cf43a0560458d50f17a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c48cab5efc6358d1e36b5a35a39d399728a2053193b2160c1e1606d19ba606b
MD5 2e1d991fe509faaa47d6e1715532befb
BLAKE2b-256 f58606e99cf7e3eafe5780130696732e55929c71307b6db05ca90d55476fc199

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 186.4 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86c64555c742a0f5014b6d8cfa2cfacb6b04ef8f5ca1438df3ec2ef2cd294a86
MD5 2b24254c189b7de141a9407812e7af34
BLAKE2b-256 53b2a8f08b51a19b1801cce28dcc6af048bd8d492503ec686644b734e156f6b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0db70f8653781df1dcb52e36e5575fd7e83f5bd9e9e4c3f28d81bfde5f8c5005
MD5 2e706e3e2b0d9f1dead10fc78777a813
BLAKE2b-256 fdc27f0238b82113033bf4dbe02e416997d66e6887c01ca122f2b29d5992070e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a13198a1429e57ccef6f2500d1649120e2365f3f151d5a946053dd239258218
MD5 9f59b8ce395c7d45478ef25ff3d641af
BLAKE2b-256 87b9ef6cbea429cef862bd08ba552aa045a4ca68a33524e2a3c9d662024cfae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed2af4f16991f77d8809f310b06d581f53542fe6e48ad6f322080b86ba7d428
MD5 80f4743ffc944c5c7258ea5aef9a5965
BLAKE2b-256 bacd4b736d7c6d38d007149a851da0b33c99f074436f107ea8ebf49fce1d3f46

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bacb9b1254bff53d82217083af6b227ecbd4c15b168a6ee826f7eb1fe65a600d
MD5 634dc48cfe4b0eb5b423106679796ff7
BLAKE2b-256 d44b55d31afbf8bbb0bee8ff7dfcaf7b58f014f4c7bba4636a44f138288d28ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9487d52a3c3a2414be41cbaef046678132e0b98a04b1de2a15bc5b001aac2645
MD5 1c716be856b9d311b8a19bd656f292fb
BLAKE2b-256 cb6eff4633c5ba072f4604f44fb150da083845fe25aed915d5c48ef3bd76e6a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cc1eec44379e4d7b82034afdfcebc99ac7e361b932d7a477615c1108095d0ad
MD5 7d68dadba87c0ef3c9c7b816bdacb3ab
BLAKE2b-256 0600e81b72d80f4838250e1e5e4038972ea5777c60c263276dbdc1704dd95ece

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 186.1 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 821ca4d82543d85125ccc107b10b1ddd4f0802a80fddac7b75a10da56e388fba
MD5 22d94889741153874422d007a899d86d
BLAKE2b-256 4b73bb8c0dece65ab7fb9bf0b2e51e395fe968c3ddf453088fd7138890507fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f028261858c2abccdaf64ccf4dc303dbcc4d70e3d92f10b8f990e27dd78c033e
MD5 58e161d0d898273faf98735890b10993
BLAKE2b-256 86e7cc23f0bfc9835abecc7fb86c2505a48777b98a68616846ff8fe8eaef7af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a98255c7ab3dca24c7c0aada3d0b969f53c91b09f9e0cf21ada2a4f0cfa23c4
MD5 7efeb98298995b41616b7be28ec3fba5
BLAKE2b-256 f74347cc7733051c04145bdfb690b65e3b76e6fe0d0a9d64d65780624834450e

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7005e634c9997037f77412f14bb1c1c091d4df6750c9455cd543f4b66a343bb3
MD5 711010b8da26538e2f1f0a63f8dad861
BLAKE2b-256 7fa7f5045ff97b4d863bab534440add4758745661f7bde08a2813a53608e8120

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dcaa553db7b36c619f43be2587c7c2c5862eb0eafb70d3796ceada95ba609d4
MD5 48e8cd0adf67d1cfe7e7f0b174cd196c
BLAKE2b-256 3ba0fab9a5fc06e1cd9838ff5d21610f995fbf01d4555c94e58f158cc622b57a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3f2c8a33c26c86a48e9cab1ff90fb0abfe862cd65e422516bd6ca030c4cc44b
MD5 376a79e2775a97bbe65d0b1a06fb4452
BLAKE2b-256 6f610ff41c9e312c897e595fc3a1aaf6f9538db14894cc3b902c145caf02beca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e85234e492550b2719ae48f27167870784cc941f16db8c6eee01eb5b31f18d7
MD5 a60fe7a778d7f0684e9728bf5e09df20
BLAKE2b-256 1744b2c8f550b7597221f27c291b5850b261076d893067d76ef42cb74fa32895

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 186.2 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bed012dca457435a2f02fdb59d4796f6b13e155c3892adf35bd5af2a0d32893
MD5 d3d6dbde22824d17406bf12567d97448
BLAKE2b-256 daeed3a6620cee78a9deae944cc8c877fcc3aa6fa5f60670b70e8d3cf0986b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 822aaba981046b06e45b665b85880e7ef6697a6c3864e53649fd9e7073d67072
MD5 107d7736946484b4800da22ebacf86f7
BLAKE2b-256 a39407190baed700f3d22c95d0ee1fe36c9057220dd93d9dcf1f4b69d4915b0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cbe621e37523736c8b071089716cb4ec6348f4081a967d0633ce351e71d9ab0
MD5 997b3fd0f8b04628d576a02a95eea508
BLAKE2b-256 38925957150429bf7372a829f3d50e9f0d206293ba3c8269a356b5e5e3f8c802

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a05098022265dcf5996101ce32681e8e08f21169c34ef266f4876b411099195f
MD5 7779b1fccde768758d550554d97da611
BLAKE2b-256 9a46fed573bf416e7f016c3546313dce0103cf7baa59febc361ee365cf332f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90328e28f12e455d86ef59f1a7c16c057846fc05cbcd2782259250868c0141c2
MD5 e90247a28606d45449c5ade49782e5e7
BLAKE2b-256 0c86c36d4b532dffe2d25b7ccdf8f66a42527b25dbd5d1527ad865ed15586038

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b52f453c319a58e178b69fedc1cc06753ef88ffc10915f3d0b0ed65d44dbb6ad
MD5 bf94553363296b069ea6fac16331009e
BLAKE2b-256 ba6942d34eb950c5509ef03563d6e43f156a9426e855e886bf41147fd155021b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f6dd590139796e775fe7ac2eda18224e2b037f1214e7428a52f2904e24e3e33
MD5 d2162418f6293ebeceba421110f48cda
BLAKE2b-256 51c9a37018f9022228822fb0f25bc3c4cac233d061cb9a08a41745632857804a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.0-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