Hi all, Is there a way to use an Avro IDL file from Python?
For example:
Assuming this very simple Avro IDL (datatypes.avdl):
@namespace("avro.examples.datatypes")
protocol MyProtocol {
record MyAvroRecord {
/**
A mandatory string.
*/
string str;}}
How can I write "hello world" into an Avro data file using the above schema
in Python ?
http://stackoverflow.com/questions/33353252/how-to-write-avro-data-file-using-python-and-avro-idl
