2015-03-19 10:43:13 +01:00
|
|
|
# xls
|
2015-09-07 04:58:54 +02:00
|
|
|
|
|
|
|
[![GoDoc](https://godoc.org/github.com/extrame/xls?status.svg)](https://godoc.org/github.com/extrame/xls)
|
|
|
|
|
2019-03-05 20:31:15 +01:00
|
|
|
Pure Golang xls library writen by [Rongshu Tech (chinese)](http://www.rongshu.tech), based on libxls.
|
2015-12-15 02:24:39 +01:00
|
|
|
|
2019-03-05 20:31:15 +01:00
|
|
|
Thanks for contributions from Tamás Gulácsi.
|
2015-03-23 03:06:19 +01:00
|
|
|
|
|
|
|
# Basic Usage
|
|
|
|
|
|
|
|
* Use **Open** function for open file
|
2018-03-22 02:25:17 +01:00
|
|
|
* Use **OpenWithCloser** function for open file and use the return value closer for close file
|
|
|
|
* Use **OpenReader** function for open xls from a reader, you should close related file in your own code
|
2015-03-23 03:06:19 +01:00
|
|
|
|
2019-03-05 20:31:15 +01:00
|
|
|
* Follow the example in GoDoc
|