cattrs
pydantic
cattrs | pydantic | |
---|---|---|
7 | 181 | |
919 | 24,550 | |
2.9% | 2.2% | |
8.2 | 9.7 | |
5 days ago | 1 day ago | |
Python | Python | |
MIT License | MIT License |
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.
cattrs
-
Writing Python like it’s Rust
I'd suggest you look at my cattrs (https://catt.rs) library as a good serde lookalike in Python (sum type support present and getting better), and to use attrs instead of dataclasses in general.
-
Starlite updates March '22 | 2.0 is coming
Pydantic is by far not the only library of its kind, with prominent members of the same class being attrs, cattrs or even plain dataclasses for some use cases.
-
Noob question on saving objects in YAML files
That being said, data serialization is a very common thing to do, so naturally there are tons of libraries that automate it for you. Personally, using dataclasses and cattrs is my goto way for doing such things.
-
Taking JSON input for "posts", "tags" etc. How to escape '\' charecter or detect carefully?
I'm fond of attrs and cattrs myself, attrs make creating data classes a snap, writing all of the stupid code python requires to have a dataclass. Note the new built in dataclass is actually a limited copy of attrs. https://www.attrs.org/en/stable/ and https://github.com/python-attrs/cattrs
-
apischema v0.17 - I've developed the fastest typed JSON (de)serialization library, and you can also build your GraphQL schema with it
This month, I've released version 0.17, and it's now blazing fast; there is in fact no more comparison with Pydantic, which more than 5x slower (up to 30x in serialization). It's also faster than alternatives like mashumaro or cattrs. (See the quick benchmark result in documentation, and the code)
- cattrs – an open source Python library for structuring and unstructuring data
-
I use attrs instead of pydantic
```
Cattrs has some problems with generics [1] [2]. Dacite and marshmallow-dataclasses don't support generics well either, with some issues around Union types.
They do work well for simple python types but what I'd like to see is guarantee that the serialisation operation is completely reversible and if not raise warning/exception.
[1] https://github.com/Tinche/cattrs/issues/149
pydantic
- Dict Unpacking in Python
-
A Practical Guide on Structuring LLM Outputs with Pydantic
The solution? Leverage Pydantic, a Python library that enables runtime data validation using type annotations.
-
Loading Pydantic models from JSON without running out of memory
Pydantic author here. We have plans for an improvement to pydantic where JSON is parsed iteratively, which will make way for reading a file as we parse it. Details in https://github.com/pydantic/pydantic/issues/10032.
Our JSON parser, jiter (https://github.com/pydantic/jiter) already supports iterative parsing, so it's "just" a matter of solving the lifetimes in pydantic-core to validate as we parse.
This should make pydantic around 3x faster at parsing JSON and significantly reduce the memory overhead.
-
Advanced Pydantic: Generic Models, Custom Types, and Performance Tricks
Across this five-post series, we’ve journeyed from Pydantic’s basics—type validation and nested models—to advanced integrations with FastAPI, SQLAlchemy, and scalable techniques. You’ve learned how to build declarative, type-safe models, handle complex APIs, and optimize performance. To deepen your knowledge, explore the Pydantic documentation, contribute to the open-source project, or experiment with real-world use cases. Check out our GitHub repo for code samples and a Pydantic cheat sheet. Thank you for joining us—happy coding!
-
Getting Started with Pydantic: Type-Safe Data Models in Python
To dive deeper, check out the Pydantic documentation for advanced features like nested models, custom validators, and settings management. Happy coding!
- Resumindo características da linguagem Python
-
FastAPI, Pydantic, Psycopg3: the holy trinity for Python web APIs
Pydantic is bundled with FastAPI and is excellent for modelling, validating, and serialising API responses.
-
Pydantic Settings + AWS the easy way
Pydantic Settings is a python library that extends 🚀 Pydantic for dealing with settings management.
-
Understanding FastAPI: How OpenAPI works
And here is where FastAPI ✨ shines: It leverages Pydantic powerful data validation to offer out of the box JSON Schema and OpenAPI specs via Swagger and Redoc.
-
Checkbox Extraction from PDFs - A Tutorial
If you carefully think about it, the system that extracts raw text from the PDF needs to both detect and render PDF form elements like checkboxes and radiobuttons in a way that LLMs can understand. In this example, we’ll use LLMWhisperer to extract PDF raw text representing checkboxes and radiobuttons. You can use LLMWhisperer completely free for processing up to 100 pages per day. As for structuring the output from LLMWhisperer, we’ll use GPT3.5-Turbo and we’ll use Langchain and Pydantic to help make our job easy.
What are some alternatives?
marshmallow - A lightweight library for converting complex objects to and from simple Python datatypes.
msgspec - A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML
Fast JSON schema for Python - Fast JSON schema validator for Python.
typeguard - Run-time type checker for Python
serpy - ridiculously fast object serialization
Lark - Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.