dataclasses-avroschema
Generate Avro Schemas from Python classes. Serialize/Deserialize python instances with avro schemas
What it is and what it does
Dataclasses Avro Schema bridges Python type definitions and Apache Avro serialization. It lets you define data structures as standard Python dataclasses or Pydantic models and automatically generates corresponding Avro schemas—the binary format specification that Avro uses for efficient, language-agnostic serialization. The package then handles bidirectional conversion: serialize Python instances to compact Avro binary or human-readable Avro-JSON, and deserialize those formats back into typed Python objects or dictionaries.
The package is built on top of fastavro for the actual binary encoding/decoding, and integrates with dacite and inflection to handle type mapping and naming conventions. It supports complex nested structures, enums, optional fields, defaults, and metadata like namespaces and aliases. Optional extras let you extend it to work with Pydantic models or Faust streaming records, or add code generation and test data capabilities.
Use it for:
- Serialize Python dataclass instances to Avro binary for storage in Kafka topics or data lakes.
- Generate Avro schemas from Pydantic models to document and validate API request/response contracts.
- Deserialize Avro messages from a streaming platform back into typed Python objects for type-safe processing.
- Convert between Python dataclasses and Avro-JSON for human-readable debugging or REST API payloads.
- Define a single Python dataclass and automatically generate schema documentation for cross-team data contracts.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Generates Avro schemas from Python dataclasses, Pydantic models, and Faust Records, and serializes/deserializes Python instances to and from Avro binary or JSON formats.
Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and solves a real problem for teams using Avro serialization with Python. The MIT license is permissive. Install it if you need to work with Avro schemas in Python—either to generate them from your type definitions or to serialize/deserialize Avro data.
Install
dataclasses-avroschema on PyPI
pip
pip install dataclasses-avroschemauv
uv add dataclasses-avroschemapoetry
poetry add dataclasses-avroschemaInstalling dataclasses-avroschema
Before you install
Low friction install with a pure-Python wheel. Actively maintained with a recent release 9 days ago. Requires Python 3.10 or later.
License in practice
MIT license permits commercial and private use with minimal restrictions—suitable for most projects.
Quickstart
from dataclasses import dataclass
from dataclasses_avroschema import AvroModel
@dataclass
class User(AvroModel):
name: str
age: int
print(User.avro_schema())
user = User(name="john", age=20)
print(user.serialize())
Requires Python 3.10 or later.
Verify before relying
- Performance characteristics when serializing large nested structures or high-volume message streams.
- Compatibility guarantees with specific Avro specification versions beyond 1.8.2.
- Whether the pydantic, faust, faker, and cli extras are production-ready or still experimental.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (<4.0,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 6 — casefy, dacite, fastavro, inflection, python-dateutil, typing-extensions |
| Maintenance | actively maintained — 9 days since the last release |
| First released | |
| Downloads | 1,330,521/month — #4,047 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: dataclasses_avroschema-0.70.5-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
datamodel-code-generatorGenerates Python data models (Pydantic,…
permissive · top 5,000 on PyPI
py-avro-schemaGenerates Apache Avro schemas from Python…
permissive · top 15,000 on PyPI
apischemaApischema handles JSON…
permissive · top 15,000 on PyPI
pydantic-avroConverts between pydantic class definitions and…
permissive · top 5,000 on PyPI
dataclasses-jsonschemaGenerates JSON Schema from Python dataclasses…
permissive · top 15,000 on PyPI
avro-gen3Generates typed Python record classes and a…
permissive · top 5,000 on PyPI
avro-genGenerates typed Python record classes and a…
permissive · top 15,000 on PyPI
jsonschema-pydantic-converterConverts JSON Schema definitions to Pydantic v2…
permissive · top 15,000 on PyPI
warchant_dc_schemaGenerates JSON Schema (2020-12 draft) from…
permissive · top 15,000 on PyPI
avro-python3Serializes and deserializes data in Apache Avro…
permissive · top 5,000 on PyPI