20
0

15 lines
568 B
Markdown
Raw Normal View History

2015-03-19 17:43:13 +08:00
# xls
2015-09-07 10:58:54 +08:00
[![GoDoc](https://godoc.org/github.com/extrame/xls?status.svg)](https://godoc.org/github.com/extrame/xls)
2019-03-05 22:31:15 +03:00
Pure Golang xls library writen by [Rongshu Tech (chinese)](http://www.rongshu.tech), based on libxls.
2015-12-15 09:24:39 +08:00
2019-03-06 23:27:28 +03:00
Thanks for contributions from Tamás Gulácsi @tgulacsi, @flyin9.
2015-03-23 10:06:19 +08:00
# Basic Usage
* Use **Open** function for open file
2018-03-22 09:25:17 +08: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 10:06:19 +08:00
2019-03-05 22:31:15 +03:00
* Follow the example in GoDoc