Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkazuo/xlsx-tabular
Xlsx table decode utility
https://github.com/kkazuo/xlsx-tabular
json xlsx
Last synced: about 14 hours ago
JSON representation
Xlsx table decode utility
- Host: GitHub
- URL: https://github.com/kkazuo/xlsx-tabular
- Owner: kkazuo
- License: bsd-3-clause
- Created: 2016-03-09T08:13:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T13:49:30.000Z (almost 7 years ago)
- Last Synced: 2024-04-26T05:22:13.346Z (7 months ago)
- Topics: json, xlsx
- Language: Haskell
- Size: 42 KB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xlsx-tabular
Xlsx table decode utility[![packagename on Stackage LTS 3](http://stackage.org/package/xlsx-tabular/badge/lts)](http://stackage.org/lts/package/xlsx-tabular)
## Library Usage Example
```haskell
#!/usr/bin/env stack
-- stack --resolver=lts-5.9 runghc --package=xlsx-tabularimport Data.Aeson
import qualified Data.ByteString.Lazy.Char8 as BS8
import Codec.Xlsx.Util.Tabular
import Codec.Xlsx.Util.Tabular.Jsonmain = do
r <- toTableRowsFromFile 8 "your-sample.xlsx"
let json = encode r
BS8.putStrLn json
```## Contributors
* [Björn Buckwalter](https://github.com/bjornbm), who has extended this library's core usability. (```toTableRowsCustom```)