msgspec 0.19.0


pip install msgspec

  Latest version

Released: Dec 27, 2024


Meta
Maintainer: Jim Crist-Harif
Requires Python: >=3.9

Classifiers

License
  • OSI Approved :: BSD License

Development Status
  • 4 - Beta

Programming Language
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13

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.

Wheel compatibility matrix

Platform CPython 3.9 CPython 3.10 CPython 3.11 CPython 3.12 CPython 3.13
macosx_10_13_x86_64
macosx_10_9_x86_64
macosx_11_0_arm64
manylinux2014_aarch64
manylinux2014_x86_64
manylinux_2_17_aarch64
manylinux_2_17_x86_64
musllinux_1_2_aarch64
musllinux_1_2_x86_64
win_amd64

Files in release

msgspec-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl (185.6KiB)
msgspec-0.19.0-cp310-cp310-macosx_11_0_arm64.whl (179.4KiB)
msgspec-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (204.4KiB)
msgspec-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.6KiB)
msgspec-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl (210.1KiB)
msgspec-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl (213.1KiB)
msgspec-0.19.0-cp310-cp310-win_amd64.whl (181.8KiB)
msgspec-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl (183.5KiB)
msgspec-0.19.0-cp311-cp311-macosx_11_0_arm64.whl (177.9KiB)
msgspec-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (204.1KiB)
msgspec-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205.7KiB)
msgspec-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl (209.0KiB)
msgspec-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (211.8KiB)
msgspec-0.19.0-cp311-cp311-win_amd64.whl (181.8KiB)
msgspec-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl (186.0KiB)
msgspec-0.19.0-cp312-cp312-macosx_11_0_arm64.whl (179.6KiB)
msgspec-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (205.7KiB)
msgspec-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208.6KiB)
msgspec-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl (209.0KiB)
msgspec-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (213.9KiB)
msgspec-0.19.0-cp312-cp312-win_amd64.whl (183.1KiB)
msgspec-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl (186.0KiB)
msgspec-0.19.0-cp313-cp313-macosx_11_0_arm64.whl (179.6KiB)
msgspec-0.19.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (205.7KiB)
msgspec-0.19.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208.6KiB)
msgspec-0.19.0-cp313-cp313-musllinux_1_2_aarch64.whl (209.0KiB)
msgspec-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (214.0KiB)
msgspec-0.19.0-cp313-cp313-win_amd64.whl (183.0KiB)
msgspec-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl (185.5KiB)
msgspec-0.19.0-cp39-cp39-macosx_11_0_arm64.whl (179.6KiB)
msgspec-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (204.4KiB)
msgspec-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.4KiB)
msgspec-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl (210.0KiB)
msgspec-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl (213.0KiB)
msgspec-0.19.0-cp39-cp39-win_amd64.whl (181.9KiB)
msgspec-0.19.0.tar.gz (211.8KiB)