The repo is kafka and schema registry basic example in python for PyCon APAC 2022
pip3 install -r requirements.txt
python3 setup.py install
SCHEMA_REGISTRY_USERNAME=your-schema-registry-username
SCHEMA_REGISTRY_PASSWORD=your-schema-registry-password
python3 producer_entrypoint.py --schema-registry-endpoint http://schema-registry-endpoint.xxx.com:8080 --kafka-brokers broker1,broker2
python3 consumer_entrypoint.py --schema-registry-endpoint http://schema-registry-endpoint.xxx.com:8080 --kafka-brokers broker1,broker2 --consumer-group-id your-consumer-group-id
Since the repo is a basic repo and provide a simple data and one topic of kakfa to emulate. If you are familiar with operate and logics about producer, consumer and schema registry. You can fork this repo and change dynamic data and multiple topics to ingest or consume data to kafka with schema registry.