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.6.0.tar.gz
(6.4 kB
view details)
Built Distribution
File details
Details for the file pydantic_avro-0.6.0.tar.gz
.
File metadata
- Download URL: pydantic_avro-0.6.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.17 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2f9da569bda830ab01afc63176bae73af36b53950c9b5094ad272ccdb2b316d |
|
MD5 | c7742e684c5a44b06a0f47ab854170e5 |
|
BLAKE2b-256 | c187224c91a31083950398cc03b379e719bd554b069d2d4145cd113d198e35b1 |
File details
Details for the file pydantic_avro-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: pydantic_avro-0.6.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.9.17 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a508bb648d388c6c917acdb35f6a6a6c78114308a2cce21e2b0daf313e5ff7bb |
|
MD5 | a7e24e441f89e0713579a9044d1ce6e0 |
|
BLAKE2b-256 | 7d55f0c7d893c7c00995c451fa7d51f7593c103f52e07e981c39576e5bc75d3b |