Skip to content

Light python client to manipulate Kafka Schema Registry

License

Notifications You must be signed in to change notification settings

compose-x/kafka-schema-registry-admin

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9226b4d · Mar 10, 2024

History

34 Commits
Mar 10, 2024
Apr 15, 2021
Mar 10, 2024
Mar 10, 2024
Mar 10, 2024
Apr 15, 2021
Mar 10, 2024
Mar 9, 2024
Apr 15, 2021
Apr 15, 2021
Apr 15, 2021
Mar 9, 2024
Apr 15, 2021
Jun 27, 2022
Mar 9, 2024
Mar 10, 2024
Mar 10, 2024
Mar 10, 2024
Mar 10, 2024
Mar 10, 2024
Apr 15, 2021

Repository files navigation

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()