I have a problem statement to convert json to avro
Can you please provide me a reference where i need to convert json to avro genric record in my python program.
I have a problem statement to convert json to avro
Can you please provide me a reference where i need to convert json to avro genric record in my python program.
Can you give more insights to your question ?
the basic will be
import avro.schema
avro.schema.parse(json_str)
you can find everything here