Xlsx table decode utility


Keywords
bsd3, codec, library, text, Propose Tags , Codec.Xlsx.Util.Tabular, Codec.Xlsx.Util.Tabular.Imports, Codec.Xlsx.Util.Tabular.Json, Codec.Xlsx.Util.Tabular.Types, json, xlsx
License
BSD-3-Clause
Install
cabal install xlsx-tabular-0.2.0

Documentation

xlsx-tabular

Xlsx table decode utility

packagename on Stackage LTS 3

Library Usage Example

#!/usr/bin/env stack
-- stack --resolver=lts-5.9 runghc --package=xlsx-tabular

import Data.Aeson
import qualified Data.ByteString.Lazy.Char8 as BS8
import Codec.Xlsx.Util.Tabular
import Codec.Xlsx.Util.Tabular.Json

main = do
  r <- toTableRowsFromFile 8 "your-sample.xlsx"
  let json = encode r
  BS8.putStrLn json

Contributors

  • Björn Buckwalter, who has extended this library's core usability. (toTableRowsCustom)