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.2.tar.gz (217.4 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.2-cp314-cp314-win_amd64.whl (191.6 kB view details)

Uploaded CPython 3.14Windows x86-64

msgspec_m-0.19.2-cp314-cp314-musllinux_1_2_x86_64.whl (223.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp314-cp314-musllinux_1_2_aarch64.whl (215.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.1 kB view details)

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

msgspec_m-0.19.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.2 kB view details)

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

msgspec_m-0.19.2-cp314-cp314-macosx_11_0_arm64.whl (224.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

msgspec_m-0.19.2-cp314-cp314-macosx_10_15_x86_64.whl (218.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

msgspec_m-0.19.2-cp313-cp313-win_amd64.whl (187.7 kB view details)

Uploaded CPython 3.13Windows x86-64

msgspec_m-0.19.2-cp313-cp313-musllinux_1_2_x86_64.whl (224.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp313-cp313-musllinux_1_2_aarch64.whl (216.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.7 kB view details)

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

msgspec_m-0.19.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.6 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

msgspec_m-0.19.2-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.2-cp312-cp312-win_amd64.whl (187.8 kB view details)

Uploaded CPython 3.12Windows x86-64

msgspec_m-0.19.2-cp312-cp312-musllinux_1_2_x86_64.whl (224.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp312-cp312-musllinux_1_2_aarch64.whl (216.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.7 kB view details)

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

msgspec_m-0.19.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.5 kB view details)

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

msgspec_m-0.19.2-cp312-cp312-macosx_11_0_arm64.whl (225.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

msgspec_m-0.19.2-cp312-cp312-macosx_10_13_x86_64.whl (218.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

msgspec_m-0.19.2-cp311-cp311-musllinux_1_2_x86_64.whl (213.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp311-cp311-musllinux_1_2_aarch64.whl (206.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (211.3 kB view details)

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

msgspec_m-0.19.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (203.9 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

msgspec_m-0.19.2-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.2-cp310-cp310-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.10Windows x86-64

msgspec_m-0.19.2-cp310-cp310-musllinux_1_2_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp310-cp310-musllinux_1_2_aarch64.whl (208.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (214.3 kB view details)

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

msgspec_m-0.19.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.3 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

msgspec_m-0.19.2-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.2-cp39-cp39-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.9Windows x86-64

msgspec_m-0.19.2-cp39-cp39-musllinux_1_2_x86_64.whl (217.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

msgspec_m-0.19.2-cp39-cp39-musllinux_1_2_aarch64.whl (208.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

msgspec_m-0.19.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (214.5 kB view details)

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

msgspec_m-0.19.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.4 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

msgspec_m-0.19.2-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.2.tar.gz.

File metadata

  • Download URL: msgspec_m-0.19.2.tar.gz
  • Upload date:
  • Size: 217.4 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.2.tar.gz
Algorithm Hash digest
SHA256 32b57315bdd4ece2d2311c013ea56272a87655e45af0724b2921590aad4b14c1
MD5 7d5a066259134d3f75de527b55bf128f
BLAKE2b-256 910462cbeddcfbe1b9c268fae634d23ab93fb96267a41e88c3eeb9bc0b770f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2.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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 191.6 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15b55439152a8e1470f28d1ebb2966e24bac9c756e24447077f61536da6ba9c2
MD5 d6bdb052d104eaf25114053d73b659a3
BLAKE2b-256 8491599fc27298b7f46b738daefed5aab68052861046f18dccb3c47d7018c82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7130d251b3834f9ec3916bf01040d3f1ebc4984aac73a4b3fc9c593e652f3d6f
MD5 940e9b4442c4fa68778b539f8cdedac3
BLAKE2b-256 0425ce9c2b8bd66053fc6828f7277827296c3b38f48738e037cc1dc2d4d53e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d962c0a790c195193c335ed20007e64ba14ffcbd32f45ba1b00965031ae9ed8
MD5 bf68283963cbfac9a4f2a80ba0064917
BLAKE2b-256 1d2468da46c09a29c5d6ff68a8ff94e51ef3f248556e52523583947723369c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fc5d6c22d76b053f7c2fabc657e1f1d9edd04186653872b8d01a200d86c9723
MD5 4d54dfaf36001b771d1b4dd2601be283
BLAKE2b-256 9a060d83fd18042e02c532d44ace1790950c5cfdc817e028f4186e0f66695140

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23a71343cf9644ea177a3582cb40ecfdd6ecc094565aee5555f5c4262e3c9fb9
MD5 86999b3662582e37d06fb0ae549eb398
BLAKE2b-256 7579db2d5b6d6bbd0458bf6f94e47b06378ce71018283e5fdb8d74aa723555f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b3b2891e0e9e9acb36071083dcc8dd7b9ae86153445275e9a504484f3b97660
MD5 bf53bda0dae38f0d57efa019443ad07b
BLAKE2b-256 a28ba1f3c9de3d23a63bcb8780e47e8c1687493a6aa124ceb156aa36f5b6dd9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8d2cb3bc1a6a63fefbf8ff10aaa322784c337bc29f4132074971a5637c34ff5
MD5 3247eab75dae6548a27436adbbb0d955
BLAKE2b-256 8b08559b710e6048ddaf55082b070e69d361d0dfc5f95950947b67a480a4f199

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: msgspec_m-0.19.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91ece8d5d8b4c21eb5dfc95615670faa632fbddfca64005619ce81aeb44f9976
MD5 6ab6dc7669fd56c1658967a182bf75ff
BLAKE2b-256 5ea2f572e098a4fd70eaa7f1e7af35feb58e0781dcb834b9101228c653b63921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9a7568d84ae7b352fc3dbe82f77b05f2d61c2441a3cb383cafd4c8250493ad8
MD5 3ce15686d48aec1ffa89ab06989bcf4a
BLAKE2b-256 ac62ee8eefb3f5fdfceb0ffc1deb40ce628b7c245d1d8dcd7a6361b743b28f38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b94c36600ea82103ca55f7f7d4f43e6f08c6721a9bb67f60a57d8b1d015ab24
MD5 84f6f38b76a79d0ee65909c1144fe884
BLAKE2b-256 364143f31ae96988f20b9ffb40af10fdaced194118e636cf303a1c73c7ecf9b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3983a57a1648f5c74585396bbca8470ad8b32f8bfe060ea0118a7974a36eb5a5
MD5 e9fe4a70573f8a4966730af38fe31dbe
BLAKE2b-256 b427116741ab2af0215d6f2d767724e9478aab7b3deef487ba928992ce332fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04eaf31a35bf86ca4e6b8f87154c5e468d5026c0488b322e2cf04b310a412bb2
MD5 75ffec39463953cd1cb0ea19e4f877f9
BLAKE2b-256 b03d6708e1f790087c683de97d71b112b330f5375a71aab0afbbf397e854ee4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa4be2fcce32a65b8ab84dc8b63bf8e9684378f9456fcb33f7ad9f57aeb5421e
MD5 aeaebacda3643668d63814e5064df1f7
BLAKE2b-256 aee8bc20bc34115f41b31a424f4b58bdf80b9a17c8581ec63cfce3b14f6a8fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ae47819b3bf38949230fd9465432679f03656b377e68beb9e5268bf28e9fa5c
MD5 fc1983bb824840cbc59385a0104a8bde
BLAKE2b-256 2355ae1ff4838e85d15d7c93542f9f682e5548d5ef00382fdef4138b60e700d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9212b7706e277e83065cf4bbacd86b37f66628cd5039802f4b98d1cc5bc4442
MD5 d8dc333e83ee42b2e82e90f07ecc0f9e
BLAKE2b-256 98cae411a6f2c86888284e18b0a8d3f09605d825d4777048a9e6eca19ec38510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c42b74fd96beb3688f3fe2973af3494ca652cf43bd2b33874c72b44eb9e96902
MD5 db02348f057c4a7edcf1af9c54e08026
BLAKE2b-256 7330bcabeddab61596d9a770db7cee658053b26bcbb06bd30ba55c7ee38fb4db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5ff928816b5a331d11c31fc19931531d13a541d26677b5a5b3861363affbac6
MD5 c3bdd19f8a1c9bf3869814bc3d196eaf
BLAKE2b-256 699d70766c99b2853e8de14a4893dfae91eba3e5227cd77cf0707b921c8e1970

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c7d2aa7ce71733bb9aaa8e6987576965cca0c9c36f09c271639a8b873034832
MD5 b3a450214cd546f671d6401a28d21145
BLAKE2b-256 87510fa83662b036bdac504192e8067798b6d0ef912eec2af897361e60357808

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b38ebd0350ebfe4d8f4b5c8065cc5d05cdcece9b68712bac27797b232ed0f60a
MD5 d39bbee32819239d43ba4e329c15b310
BLAKE2b-256 40e17a3a8e3d38702d0125bd61f5cb5d4325c23a60625a274b7f58ff57d55120

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 360aec3102a6122169aada60ee9ccd801fbb5949edeb88abb7f69df2901011b6
MD5 f0c0592ca1ce52e0d0287093fd6cebfb
BLAKE2b-256 4cb7a93d524907162cb6150179eb47fac885bbbad025c82151b69ad1d62cda4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 876a15baafd0ee067bcf7feed43e8b409b82e14d04c0a8c12376131956cdcfe9
MD5 9654ed70e9e6d04b2cf5d557865e19cd
BLAKE2b-256 4f339b22ff91a46bdc725a06db9668bcad6c05942d91a8d1d809625c5ea680c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b5911b91aa8f1ac76b67842afbb32aec488b375c8302aaa0da28b10c9299579
MD5 fa7530fdbf6a7d5f692490380223ce31
BLAKE2b-256 f5261d3c6c65e326987f4189ecd93a7d47c1e5dab76ed8d9397fba21403d55b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca45fbc0e4b95bfb58877a7784ffb4e6de618ce061fa1a25b49da204f55e2017
MD5 23ff9e9cce54d9bbbfacd2a26fc86aef
BLAKE2b-256 1201f94d5b8c20487e4e7db80f01c8a079aa5246b9829ad61e66bfd6cb1b8059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f7c01e06d17ba06f82ca623fc07ad516aff9d57067d0cf16a12f15682a96d04
MD5 501df4a98f389e3d4d2591b843665679
BLAKE2b-256 5569deaaadd0109f063b200dbe77bfff34255c963caa77bd45adfe79fe7e1608

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cd453b32b14a5a8d5be6fffae952caa4c00a18e7be448817b89f428d82f3ccf
MD5 eaf2a9003818617a1fb114b95c08d01b
BLAKE2b-256 af28d0bb9972808d0c1d274b82b756d4ac1ada41560d585c2c0e7635c58fa6d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72c96abcb91937f32af166d1e2773a1ccdd41167729265fef3b7463abe6910c9
MD5 cb88220b4292abcd31d19e2496f8ecf4
BLAKE2b-256 a2ad21c683c5c1344ec188f70bc8ca889c1f837123326b31a6ecac8fc396f7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 756d989e4ad493996ca4659d6e49a93aad9070b51a76605125da3b03c22e02e0
MD5 79bdf85e553cb8b9b5d0d805062509eb
BLAKE2b-256 508d925317b6e372511e72928b921af88cd8aac90c75a79eb11663e24919354e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db8cb1186dc798928ba4e01dc168887a54dc40c995a1e8c033c3becc2430cfe8
MD5 87299798c804000f1ed894a36c48de60
BLAKE2b-256 6853fef2c2d52e1b6b45052c34c3d6a16459cdb78ff807ef54ed317c29cd9fdb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd612d7021976f5143b87f9435e11e26353ba2b9d518f88858fe4745ae4e6d87
MD5 d8d55975f0fe3941c9ac6832983c188d
BLAKE2b-256 841f3568e43ec0dccfd9d532d89e95f8105ad03082eeec57f1d091df27c0a43f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 981a760b47c521ff72666e180f784b64e02ac2d3698485fa826a91bdb86033d8
MD5 db33eb7f4dfff5bfa3218e0ed556d475
BLAKE2b-256 cd6e38cb50bde68c83520889949843fa5b194444141e72e071af366aaf32a9fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65c1182e947f7502150b0f599e676b256ce4e45b425e1e875ee3e103fb53202e
MD5 71fb642bed3f6999dcc48cb591b5541a
BLAKE2b-256 4a4f972f35a0ef6acef0c7b7d28596b723897e495bd1a6e2a75216898382981b

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36cc3b97ca7bcbe497d782288f743ff32af334addd032a8dffbf4275f8885eac
MD5 4264260e3317c4df2f54d24ff7f45061
BLAKE2b-256 683dd693884ad668988558b10963a54e6d033ca498f6d1daf0271eaffb9291d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ffb3ae232c47bdb0dc92775667d85b800b92e1841c4b2fd44d09d559d7d5bb4
MD5 c8daab9f5c9e935cde13e2522eec43eb
BLAKE2b-256 cc84728a797248b4fdd4d3778f7570575928176d9f22cc028ab5b75bf9665345

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9e136efc96aed3c8d9d016818b698319c7b428219c7fea22d3dab80deae5e8b
MD5 cfeb8f18c22efa20713a54c4f13ed06f
BLAKE2b-256 44258c0325c1630a0aec6e83744b699a844bc2d9903b9ff862355adf013381fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8dcfbf8178833ac41ebd6dc54648c90a2c5481e2eef10bfcf5faa9808df35a7a
MD5 7e911212d3951df69015db8b2b4f8f68
BLAKE2b-256 77fed9e21f6240a8daa4340a24fe7e0a5ea346ff45206cb2657cffe2de189c0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: msgspec_m-0.19.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dba0e17d05f0c55c87fa2b14aba4d10dbe1d7002d72e31064192378979103fac
MD5 ecec9bd75994df864b5b70ff9327e401
BLAKE2b-256 3832618e782e097edc4e0a807f36436ba5661cd3ba698dac53a8d9d76d28c0c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06ed58450b283001a28c07cb086b7bda7bfd5d4f9ea2a46fe98d6be2ebdaa47d
MD5 3ce71a040ff46241ff48ea0b6934128a
BLAKE2b-256 1473012e43638c12c453b785dfee511d00bad0c1d8641073c091917c6f1631ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5d4c67fdc1b4576f56e37dd22a80a29151c01b5b736415f1493f475ce05d6a4
MD5 1596abdd0fed12f36004fbed3bba1504
BLAKE2b-256 b294c03cb31069fe53c480cf80a42d0f4abd9b36136897e22be74bbac7c3e547

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fa01826c7b355f40f5e890d3faeebb0fc9b5926c130c21a282044c13f6331f0
MD5 9c3b15a120488d0f1aed2493de08a86a
BLAKE2b-256 baff9c26000b8f37a171a650b45432d394cfd6468a7bfba1551671c1f4e1c3a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d4be9ed7aa26d725990d04f523064ecdf6f4809ff3aca7b886317ef5ac00d11
MD5 1dc30aef3f5793f9945f3c102636ad8f
BLAKE2b-256 85821676e0b4cb79030fd65eb75df90c4b8185c8552056e5fa6015633477a160

See more details on using hashes here.

Provenance

The following attestation bundles were made for msgspec_m-0.19.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9f8e96a59a34ba0ad2b8dca1d635168ac4b70a5bd2280f71b53647b48568741
MD5 403ad9365cc253384fc063e50ceec593
BLAKE2b-256 8d33148d91381460140564ff69b6c65d2e03d0f59d85937a87b05996dbaf51b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for msgspec_m-0.19.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 497aacc8ff1ade6a7014f5ee9acfa5d3257571775ec7424edd8dd77535ce472f
MD5 de33586923fcd23d4eb77597bb8898ab
BLAKE2b-256 00f0b5eb3983f53a8ae7b8b0ebdef480fc1f2dac0da5d49df7f237105c4ea858

See more details on using hashes here.

Provenance

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