Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 539 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 539 Bytes

xlsx2yaml

Converts xlsx files of a certain format to YAML

If your spreadsheet looks like this:

name style rating
hop hog ipa 8
fanta pants american amber 9

Then you can xlsx2yaml it:

xlsx2yaml --xlsx brews.xlsx --sheet Brews --output brews.yaml --beginDataRow 2

And then as output you shall receive:

Brews:
- style: ipa
  rating: 8
  name: hop hog
- style: american amber
  rating: 9
  name: fanta pants