msgspec VS typedload

Compare msgspec vs typedload and see what are their differences.

msgspec

A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML (by jcrist)

typedload

Python library to load dynamically typed data into statically typed data structures (by ltworf)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
msgspec typedload
31 5
1,857 252
- -
8.9 8.0
27 days ago 2 days ago
Python Python
BSD 3-clause "New" or "Revised" License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

msgspec

Posts with mentions or reviews of msgspec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-01.
  • Htmx, Rust and Shuttle: A New Rapid Prototyping Stack
    3 projects | news.ycombinator.com | 1 Nov 2023
  • Litestar 2.0
    4 projects | /r/Python | 29 Aug 2023
    Full support for validation and serialisation of attrs classes and msgspec Structs. Where previously only Pydantic models and types where supported, you can now mix and match any of these three libraries. In addition to this, adding support for another modelling library has been greatly simplified with the new plugin architecture
  • FastAPI 0.100.0:Release Notes
    12 projects | news.ycombinator.com | 7 Jul 2023
    > Maybe it was very slow before

    That is at least partly the case. I maintain msgspec[1], another Python JSON validation library. Pydantic V1 was ~100x slower at encoding/decoding/validating JSON than msgspec, which was more a testament to Pydantic's performance issues than msgspec's speed. Pydantic V2 is definitely faster than V1, but it's still ~10x slower than msgspec, and up to 2x slower than other pure-python implementations like mashumaro.

    Recent benchmark here: https://gist.github.com/jcrist/d62f450594164d284fbea957fd48b...

    [1]: https://github.com/jcrist/msgspec

  • Pydantic 2.0
    2 projects | news.ycombinator.com | 30 Jun 2023
    While it's definitely much faster than pydantic V1 (which is a huge accomplishment!), it's still not exactly what I'd call "fast".

    I maintain msgspec (https://github.com/jcrist/msgspec), a serialization/validation library which provides similar functionality to pydantic. Recent benchmarks of pydantic V2 against msgspec show msgspec is still 15-30x faster at JSON encoding, and 6-15x faster at JSON decoding/validating.

    Benchmark (and conversation with Samuel) here: https://gist.github.com/jcrist/d62f450594164d284fbea957fd48b...

    This is not to diminish the work of the pydantic team! For many users pydantic will be more than fast enough, and is definitely a more feature-filled tool. It's a good library, and people will be happy using it! But pydantic is not the only tool in this space, and rubbing some rust on it doesn't necessarily make it "fast".

  • Need help developing a high performance Redis ORM for Python
    2 projects | /r/Python | 23 May 2023
    https://github.com/jcrist/msgspec so I am using this instead of Pydantic.
  • Blog post: Writing Python like it’s Rust
    2 projects | /r/Python | 20 May 2023
    Another thing: why pyserde rather than stuff like msgspec? https://github.com/jcrist/msgspec
  • Show HN: Msgspec, a fast serialization/validation library for Python
    1 project | news.ycombinator.com | 11 May 2023
  • [Guide] A Tour Through the Python Framework Galaxy: Discovering the Stars
    14 projects | /r/coder_corner | 29 Apr 2023
    Try msgspec | Maat | turbo for fast serialization and validation
  • Pydantic V2 rewritten in Rust is 5-50x faster than Pydantic V1
    3 projects | news.ycombinator.com | 8 Apr 2023
    Congratulations to the team, Pydantic is an amazing library.

    If you find JSON serialization/deserialization a bottleneck, another interesting library (with much less features) for Python is msgspec: https://github.com/jcrist/msgspec

  • Starlite updates March '22 | 2.0 is coming
    14 projects | /r/Python | 26 Mar 2023
    This feature is yet to be released, but it will allow you to seamlessly use data modelled with for example Pydantic, SQLAlchemy, msgspec or dataclasses in your route handlers, without the need for an intermediary model; The conversion will be handled by the specific DTO "backend" implementation. This new paradigm also makes it trivial to add support for any such modelling library, by simply implementing an appropriate backend.

typedload

Posts with mentions or reviews of typedload. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-06.
  • Show HN: Up to 100x Faster FastAPI with simdjson and io_uring on Linux 5.19
    20 projects | news.ycombinator.com | 6 Mar 2023
    Author of typedload here!

    FastAPI relies on (not so fast) pydantic, which is one of the slowest libraries in that category.

    Don't expect to find such benchmarks on the pydantic documentation itself, but the competing libraries will have them.

    [0] https://ltworf.github.io/typedload/

  • Pydantic vs Protobuf vs Namedtuples vs Dataclasses
    4 projects | /r/Python | 25 Feb 2023
    I wrote typedload, which is significantly faster than pydantic. Just uses normal dataclasses/attrs/NamedTuple, has a better API and is pure Python!
  • Informatica serve a qualcosa?
    1 project | /r/Universitaly | 4 Feb 2023
  • Show HN: Python framework is faster than Golang Fiber
    19 projects | news.ycombinator.com | 10 Jan 2023
    I read all the perftests in the repo. I think they nearly all parse a structure that contains a repetition of the same or similar thing a couple hundred thousand times times and the timing function returns the min and max of 5 attempts. I just picked one example for posting.

    Not a Python expert, but could the Pydantic tests be possibly not realistic and/or misleading because they are using kwargs in __init__ [1] to parse the object instead of calling the parse_obj class method [2]? According to some PEPs [3], isn't Python creating a new dictionary for that parameter which would be included in the timing? That would be unfortunate if that accounted for the difference.

    Something else I think about is if a performance test doesn't produce a side effect that is checked, a smart compiler or runtime could optimize the whole benchmark away. Or too easy for the CPU to do branch prediction, etc. I think I recall that happening to me in Java in the past, but probably not happened here in Python.

    [1] https://github.com/ltworf/typedload/blob/37c72837e0a8fd5f350...

    [2] https://docs.pydantic.dev/usage/models/#helper-functions

    [3] https://peps.python.org/pep-0692/

What are some alternatives?

When comparing msgspec and typedload you can also consider the following projects:

pydantic - Data validation using Python type hints

codon - A high-performance, zero-overhead, extensible Python compiler using LLVM

orjson - Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy

ustore - Multi-Modal Database replacing MongoDB, Neo4J, and Elastic with 1 faster ACID solution, with NetworkX and Pandas interfaces, and bindings for C 99, C++ 17, Python 3, Java, GoLang 🗄️

fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production

pydantic-core - Core validation logic for pydantic written in rust

mashumaro - Fast and well tested serialization library

peps - Python Enhancement Proposals

MessagePack - MessagePack serializer implementation for Java / msgpack.org[Java]

koda-validate - Typesafe, Composable Validation

marshmallow - A lightweight library for converting complex objects to and from simple Python datatypes.

socketify.py - Bringing Http/Https and WebSockets High Performance servers for PyPy3 and Python3