Registry / serialization / tealeg-xlsx

tealeg-xlsx

JSON →
library1.0.5gogounverified

A Go library for reading and writing XLSX (Excel) files.

go get github.com/tealeg/xlsx
INSTALL
IMPORT
SIG · TEALEG-XLSX
T
tealeg-xlsx
serializationgov1.0.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

xlsx
github.com/tealeg/xlsx

Opens an XLSX file and prints all cell values.

package main import ( "fmt" "github.com/tealeg/xlsx" ) func main() { file, err := xlsx.OpenFile("example.xlsx") if err != nil { panic(err) } for _, sheet := range file.Sheets { for _, row := range sheet.Rows { for _, cell := range row.Cells { fmt.Print(cell.String()) } } } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.5latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
OpenAI (training)
1
Resources
tealeg-xlsx — go get tealeg-xlsx · libregistry