Fast JSON schema for Python
Fast JSON schema validator for Python. (by horejsek)
cattrs
Composable custom class converters for attrs, dataclasses and friends. (by python-attrs)
Fast JSON schema for Python | cattrs | |
---|---|---|
1 | 7 | |
472 | 910 | |
0.8% | 2.3% | |
6.8 | 8.2 | |
7 months ago | 16 days ago | |
Python | Python | |
BSD 3-clause "New" or "Revised" License | MIT License |
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.
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.
Fast JSON schema for Python
Posts with mentions or reviews of Fast JSON schema for Python.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-03-31.
-
I wrote okjson - A fast, simple, and pythonic JSON Schema Validator
I had a requirement to process and validate large payloads of JSON concurrently for a web service, initially I implemented it using jsonschema and fastjsonschema but I found the whole JSON Schema Specification to be confusing at times and on top of that wanted better performance. Albeit there are ways to compile/cache the schema, I wanted to move away from the schema specification so I wrote a validation library inspired by the design of tiangolo/sqlmodel (type hints) to solve this problem easier.
cattrs
Posts with mentions or reviews of cattrs.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-20.
-
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
What are some alternatives?
When comparing Fast JSON schema for Python and cattrs you can also consider the following projects:
marshmallow - A lightweight library for converting complex objects to and from simple Python datatypes.
jsonschema - A high-performance JSON Schema validator for Rust
serpy - ridiculously fast object serialization
python-rapidjson - Python wrapper around rapidjson
pydantic - Data validation using Python type hints