Popularity
4.1
Growing
Activity
0.0
Stable
2
4
2

Monthly Downloads: 30
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Text     Codec     Xlsx    
Latest version: v0.2.2

xlsx-tabular alternatives and similar packages

Based on the "xlsx" category.
Alternatively, view xlsx-tabular alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of xlsx-tabular or a related project?

Add another 'xlsx' Package

README

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)