https://github.com/kkazuo/xlsx-tabular
Xlsx table decode utility
https://github.com/kkazuo/xlsx-tabular
json xlsx
Last synced: 12 months 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 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T13:49:30.000Z (over 8 years ago)
- Last Synced: 2025-06-20T14:07:54.504Z (about 1 year ago)
- Topics: json, xlsx
- Language: Haskell
- Size: 42 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xlsx-tabular
Xlsx table decode utility
[](http://stackage.org/lts/package/xlsx-tabular)
## Library Usage Example
```haskell
#!/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](https://github.com/bjornbm), who has extended this library's core usability. (```toTableRowsCustom```)