1config BR2_PACKAGE_PYTHON_AVRO 2 bool "python-avro" 3 depends on BR2_PACKAGE_PYTHON3 4 help 5 Select this option to install the Avro Python3 language 6 bindings, and the `avro` command line tool 7 8 Apache Avro is a data serialization system. 9 Avro provides: 10 - Rich data structures. 11 - A compact, fast, binary data format. 12 - A container file, to store persistent data. 13 - Remote procedure call (RPC). 14 - Simple integration with dynamic languages. 15 - Code generation is not required to read or write data 16 files nor to use or implement RPC protocols. 17 - Code generation as an optional optimization, 18 only worth implementing for statically typed languages. 19 20 http://avro.apache.org/ 21