Popularity
4.1
Stable
Activity
0.0
Stable
2
4
2
Monthly Downloads: 21
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
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?
README
xlsx-tabular
Xlsx table decode utility
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
)