Skip to content

Instantly share code, notes, and snippets.

@jhansonhpe
jhansonhpe / register_schema.py
Last active September 29, 2020 14:55 — forked from aseigneurin/register_schema.py
Register an Avro schema against the Confluent Schema Registry
#!/usr/bin/python
# Licensed under the Apache 2.0 license
import os
import sys
import requests
schema_registry_url = sys.argv[1]
topic = sys.argv[2]