Crystal wrapper for parsing .xlsx spreadsheets
🚀 Suggestions for new improvements are welcome in the issue tracker.
Note: Work with Cystal versions >= 0.36.0, < 2.0.0
-
Add the dependency to your
shard.yml
:dependencies: xlsx-parser: github: d1ceward/xlsx-parser version: 1.2.0
-
Run
shards install
require "xlsx-parser"
file_io = File.new("./my_super_spreadsheet.xlsx")
book = XlsxParser::Book.new(file_io)
require "xlsx-parser"
book = XlsxParser::Book.new("./my_super_spreadsheet.xlsx")
# Iterate on each row of the first sheet
book.sheets[0].rows.each do |row|
puts row #=> { "A1" => "Col A Row 1", "B1" => "Col B Row 1" }
end
# Second sheet
book.sheets[1]
book.close
Documentation available here : https://d1ceward.github.io/xlsx-parser/
Bug reports and pull requests are welcome on GitHub at https://github.com/d1ceward/xlsx-parser. By contributing you agree to abide by the Code of Merit.
- Fork it (https://github.com/d1ceward/xlsx-parser/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- d1ceward - creator and maintainer