compose-x / kafka-schema-registry-admin

Light python client to manipulate Kafka Schema Registry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kafka schema registry admin

Simple / light HTTP client library (using requests) to manipulate schemas and definitions into Schema Registry.

  • Confluent API specification is documented here
  • RedPanda API specification is documented here

Usage

Very simple example to manipulate the schema registry and its resources.

from kafka_schema_registry_admin import SchemaRegistry

registry = SchemaRegistry("http://localhost:8081")
subjects = registry.get_all_subjects()
schemas = registry.get_all_schemas()

About

Light python client to manipulate Kafka Schema Registry

License:Apache License 2.0


Languages

Language:Python 89.9%Language:Makefile 10.1%