Converting pydantic classes to avro schemas
Project description
pydantic-avro
This library can convert a pydantic class to a avro schema or generate python code from a avro schema.
Install
pip install pydantic-avro
Pydantic class to avro schema
import json
from typing import Optional
from pydantic_avro.base import AvroBase
class TestModel(AvroBase):
key1: str
key2: int
key2: Optional[str]
schema_dict: dict = TestModel.avro_schema()
print(json.dumps(schema_dict))
Avro schema to pydantic
# Print to stdout
pydantic-avro avro_to_pydantic --asvc /path/to/schema.asvc
# Save it to a file
pydantic-avro avro_to_pydantic --asvc /path/to/schema.asvc --output /path/to/output.py
Install for developers
Install package
- Requirement: Poetry 1.*
poetry install
Run unit tests
pytest
coverage run -m pytest # with coverage
# or (depends on your local env)
poetry run pytest
poetry run coverage run -m pytest # with coverage
Run linting
The linting is checked in the github workflow. To fix and review issues run this:
black . # Auto fix all issues
isort . # Auto fix all issues
pflake . # Only display issues, fixing is manual
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pydantic_avro-0.7.2.tar.gz
(8.7 kB
view details)
Built Distribution
File details
Details for the file pydantic_avro-0.7.2.tar.gz
.
File metadata
- Download URL: pydantic_avro-0.7.2.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.19 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db978958e8308ae407d430469df95c1346d5927c038b8788e1510a5aa640c03b |
|
MD5 | 7bcf04c82dbce3509dd516950fd8ef5b |
|
BLAKE2b-256 | 9adc4c60ed4f686f0585d5bf87a72d1ab5d01bf0fd50594d5fe85f0ad7262d90 |
File details
Details for the file pydantic_avro-0.7.2-py3-none-any.whl
.
File metadata
- Download URL: pydantic_avro-0.7.2-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.19 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cfa5311d89205624ad0e7253d1ea1eb101476ec95283ad428c4b06f8705eb29 |
|
MD5 | 6e21cd57324a090af258d77f69df42dc |
|
BLAKE2b-256 | c7d3050c325e4da6c606bffe47c9a39dcafe9ad0f96d1224cff3401fc259749e |