Skip to main content

Popsink transformer

Project description

Transformer Library

This library provides a set of tools to transform Avro schemas into various formats such as JSON schema, SQL for Apache Flink, and PostgreSQL SQL. Additionally, it can transform data from these formats back into Avro schemas. Whether you're working with Avro schemas in your data pipeline or database schema, this library aims to simplify the conversion process for you.

Features

  • Convert Avro schema to JSON schema.
  • Generate SQL statements for Apache Flink based on Avro schema.
  • Generate PostgreSQL SQL statements based on Avro schema.
  • Generate SQLSERVER SQL statements based on Avro schema.
  • Generate CLICKHOUSE SQL statements based on Avro schema.
  • Convert a single avro type to SQL type.

Usage

Here's a quick guide on how to use the library:

1. Convert an Avro Schema to JSON schema

from popsink_transformer.transformer import Transformer

transformer = Transformer(from_source=avro_schema)
json_schema = transformer.avro_to_json.convert()
print(json_schema)

2. Generate SQL for Apache Flink from an Avro schema

from popsink_transformer.transformer import Transformer
from popsink_transformer.avro_to_sql.utils.type_converter import SqlEngine

transformer = Transformer(
    from_source=avro_schema,
    sql_engine=SqlEngine.FLINK,
)
flink_sql = transformer.avro_to_sql.convert()
print(flink_sql)

3. Generate PostgreSQL SQL from an Avro schema

from popsink_transformer.transformer import Transformer
from popsink_transformer.avro_to_sql.utils.type_converter import SqlEngine

transformer = Transformer(
    from_source=avro_schema,
    sql_engine=SqlEngine.POSTGRES,
)
postgres_sql = transformer.avro_to_sql.convert()
print(postgres_sql)

4. Convert an Avro type to SQL type

from popsink_transformer.avro_to_sql.utils.type_converter import (
    SqlEngine,
    convert_avro_type_to_sql_type,
)

postgres_sql_type = convert_avro_type_to_sql_type(
    avro_field_type="float",
    sql_engine=SqlEngine.POSTGRES
)
print(postgres_sql_type)
output: 'REAL'

5. Generate SQLSERVER SQL from an Avro schema

from popsink_transformer.transformer import Transformer
from popsink_transformer.avro_to_sql.utils.type_converter import SqlEngine

transformer = Transformer(
    from_source=avro_schema,
    sql_engine=SqlEngine.SQLSERVER,
)
sqlserver_sql = transformer.avro_to_sql.convert()
print(sqlserver_sql)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

popsink_transformer-2.3.2.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

popsink_transformer-2.3.2-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file popsink_transformer-2.3.2.tar.gz.

File metadata

  • Download URL: popsink_transformer-2.3.2.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for popsink_transformer-2.3.2.tar.gz
Algorithm Hash digest
SHA256 70559d09feee36a61b6fb65031240c836646c68c4df981d23b2a08c53e0073cd
MD5 7d61f5c00e923210509817b3dc7dfff6
BLAKE2b-256 0698c27d01cc69f54762490249c45f519c53fa7a5628ee988d5a6fbcd4730ffc

See more details on using hashes here.

File details

Details for the file popsink_transformer-2.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for popsink_transformer-2.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d3a77e9ff68a1ead6453c7122fc27f18f62744271516491f1036c067df45e391
MD5 c692f9e5fa44d358a7516ff5bcaae1c3
BLAKE2b-256 76943b83a598123c0109ec4ba6ca6012fa94984c9b34901a294f7b97ae3d7a58

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page