xls: Parse Microsoft Excel xls files (BIFF/Excel 97-2004)

[ bsd3, codec, data, library, parser, program, spreadsheet ] [ Propose Tags ]

Parse Microsoft Excel spreadsheet files in .xls file format (extension '.xls') more specifically known as 'BIFF/Excel 97-2004'.

The library is based on the C library 'https://sourceforge.net/projects/libxls'.


[Skip to Readme]

Modules

[Index]

Flags

Manual Flags

NameDescriptionDefault
force-has-iconv

force using iconv library on Windows

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.1, 0.1.2, 0.1.3
Change log Changelog.md
Dependencies base (>=4.7 && <5), conduit (>=1.1 && <1.4), filepath (>=1.0 && <1.5), getopt-generics (>=0.11 && <0.14), resourcet (>=0.3 && <1.3), transformers (>=0.1 && <0.6), xls [details]
License BSD-3-Clause
Copyright 2016 Harendra Kumar, 2004-2014 Authors of libxls
Author Harendra Kumar
Maintainer harendra.kumar@gmail.com
Category Codec, Data, Parser, Spreadsheet
Home page http://github.com/harendra-kumar/xls
Source repo head: git clone https://github.com/harendra-kumar/xls
Uploaded by harendra at 2018-02-07T21:49:21Z
Distributions
Executables xls2csv
Downloads 2248 total (9 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-02-07 [all 1 reports]

Readme for xls-0.1.1

[back to package description]

Haskell xls Parsing

Hackage Build Status Build status

xls is a Haskell library to parse Microsoft Excel spreadsheet files. It parses the xls file format (extension .xls) more specifically known as BIFF/Excel 97-2004.

It can be useful for mining data from old Microsoft Excel spreadsheets.

API

Use decodeXls to get a streaming Conduit. For example to convert an xls file to comma separated csv:

xlsToCSV :: String -> IO ()
xlsToCSV file =
      runResourceT
    $ decodeXls file
    $$ CL.mapM_ (liftIO . putStrLn . intercalate ",")

An xls2csv utility is shipped with the package. See the haddock documentation for API details.

Under the hood

The library is based on the C library libxls, see sourceforge or github.

See Also

  • xlsior: Streaming Excel (xslx) file generation and parsing
  • xlsx: Excel xslx file parser/writer

Contributing

Welcome! If you would like to have something changed or added go ahead, raise an issue or send a pull request.