From e9ae9b45b20a5df7e3aa15afcfac83ecb13394c6 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 28 Jul 2021 00:38:09 +0800 Subject: change go module import path to github.com/xuri/excelize --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 972d013..3c49173 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@

Excelize logo

- Build Status - Code Coverage - Go Report Card - go.dev + Build Status + Code Coverage + Go Report Card + go.dev Licenses Donate

@@ -13,20 +13,20 @@ ## Introduction -Excelize is a library written in pure Go providing a set of functions that allow you to write to and read from XLSX / XLSM / XLTM / XLTX files. Supports reading and writing spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports complex components by high compatibility, and provided streaming API for generating or reading data from a worksheet with huge amounts of data. This library needs Go version 1.15 or later. The full API docs can be seen using go's built-in documentation tool, or online at [go.dev](https://pkg.go.dev/github.com/360EntSecGroup-Skylar/excelize/v2?tab=doc) and [docs reference](https://xuri.me/excelize/). +Excelize is a library written in pure Go providing a set of functions that allow you to write to and read from XLSX / XLSM / XLTM / XLTX files. Supports reading and writing spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports complex components by high compatibility, and provided streaming API for generating or reading data from a worksheet with huge amounts of data. This library needs Go version 1.15 or later. The full API docs can be seen using go's built-in documentation tool, or online at [go.dev](https://pkg.go.dev/github.com/xuri/excelize/v2?tab=doc) and [docs reference](https://xuri.me/excelize/). ## Basic Usage ### Installation ```bash -go get github.com/360EntSecGroup-Skylar/excelize +go get github.com/xuri/excelize ``` - If your packages are managed using [Go Modules](https://blog.golang.org/using-go-modules), please install with following command. ```bash -go get github.com/360EntSecGroup-Skylar/excelize/v2 +go get github.com/xuri/excelize/v2 ``` ### Create spreadsheet @@ -39,7 +39,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/xuri/excelize/v2" ) func main() { @@ -68,7 +68,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/xuri/excelize/v2" ) func main() { @@ -111,7 +111,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/xuri/excelize/v2" ) func main() { @@ -171,7 +171,7 @@ import ( _ "image/jpeg" _ "image/png" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/xuri/excelize/v2" ) func main() { -- cgit v1.2.1