How to programmatically get schema from confluent schema registry in Python
问题 As of now i am doing something like this reading avsc file to get schema value_schema = avro.load('client.avsc') can i do something to get schema from confluent schema registry using topic-name? i found one way but didn't figure out how to use it. https://github.com/marcosschroh/python-schema-registry-client 回答1: Using confluent-kafka-python from confluent_kafka.avro.cached_schema_registry_client import CachedSchemaRegistryClient sr = CachedSchemaRegistryClient({ 'url': 'http://localhost:8081