xlsx

Simple and incomplete Excel file parser/writer

https://github.com/qrilka/xlsx

Version on this page:0.2.1.2
LTS Haskell 22.18:1.1.2.1
Stackage Nightly 2024-04-22:1.1.2.1
Latest on Hackage:1.1.2.1

See all snapshots xlsx appears in

MIT licensed by Tim, Max, Kirill Zaborsky
Maintained by [email protected]
This version can be pinned in stack with:xlsx-0.2.1.2@sha256:6ca0468745fe489405120e1045e595518314e4a0607418c9b4df6714b27eee19,4327

This library can help you to get some data read and written in Office Open XML xlsx format. Small subset of xlsx format is supported.

For examples look into Codec.Xlsx.

Format is covered by ECMA-376 standard: http://www.ecma-international.org/publications/standards/Ecma-376.htm

4th edition of the standard with the transitional schema is used for this library.

Changes

0.2.1.2

  • loosened dependency on data-default package

0.2.1.1

  • fixed parsing shared string table entries with no content (thanks to Yuji Yamamoto [email protected])

0.2.1

  • added number formats (thanks to Alan Zimmerman [email protected])
  • loosened dependency on zip-archive package

0.2.0

0.1.2

  • added lenses to access cells both using RC and XY style coordinates, RC is used by default

0.1.1.1

  • fixed use of internal function for parsing shared strings, previous change was unused in practice

0.1.1

0.1.0.5

  • loosened dependency on zlib package

0.1.0.4

  • fixed generated xml so it gets read by MS Excel with no warnings (thanks Dmitriy Nikitinskiy [email protected])
  • improved shared strings collection by using Vector (thanks Dmitriy Nikitinskiy [email protected])
  • empty xml elements don’t get emmitted anymore (thanks Philipp Hausmann [email protected])
  • imporoved and cleaned up core.xml generation

0.1.0.3

  • added “str” cells content extraction as text
  • added a notice that formulas in are not yet supported

0.1.0

  • better tests and documentation
  • lenses for worksheets/cells
  • removed streaming support as it needs better API and improved implementaion
  • removed CellLocalTime as ambiguous, added CellBool

0.0.1

  • initial release