Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dasch/avro2json
Decodes Avro data files and converts the data to JSON
https://github.com/dasch/avro2json
Last synced: 24 days ago
JSON representation
Decodes Avro data files and converts the data to JSON
- Host: GitHub
- URL: https://github.com/dasch/avro2json
- Owner: dasch
- License: mit
- Created: 2015-03-06T10:04:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-12T15:30:48.000Z (over 9 years ago)
- Last Synced: 2024-09-28T12:15:53.513Z (about 1 month ago)
- Language: Ruby
- Size: 141 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# avro2json
Converts Avro-encoded data to JSON.
```
curl http://example.com/data.avro | avro2json
cat somefile.avro | avro2json
avro2json < somefile.avro
```It's possible to use a custom schema when reading the Avro data:
```
avro2json --schema=some-schema.avsc < data.avro
```Run `avro2json -h` for more information.
## Installation
```
gem install avro2json
```