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.4.0.tar.gz
(6.1 kB
view details)
Built Distribution
File details
Details for the file pydantic-avro-0.4.0.tar.gz
.
File metadata
- Download URL: pydantic-avro-0.4.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.1 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5cc268ce66266813d9ecb9aca872ee3ee28d0c082862bafecc08b12b0f08226 |
|
MD5 | 22827c12550060b4344ac2904b10d1bf |
|
BLAKE2b-256 | 7bd2a5a19025bdc6c042d623a1ec5310f0883dc12c8187cd9c08c54be40338e8 |
File details
Details for the file pydantic_avro-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: pydantic_avro-0.4.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.1 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 641878f24b8b0224bff5554dca279facae997d86dd4d88d7a428daab76ac1bd4 |
|
MD5 | f90159823796762ada88d4e63a2a9483 |
|
BLAKE2b-256 | 79de3e1528c97b0b9d7cd2a3982b77d6c21f0444310dfcfa416458815bb84be6 |