Skip to content

Commit e6a5924

Browse files
committed
Update documents
1 parent 3789b59 commit e6a5924

File tree

3 files changed

+46
-5
lines changed

3 files changed

+46
-5
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Aspose Pty Ltd
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Go REST API for Spreadsheet Processing in Cloud
1+
# Go API client for asposecellscloud
22

3-
This Cloud SDK enhances your Go cloud-based apps to [process & manipulate Microsoft Excel spreadsheets](https://products.aspose.cloud/cells/go) in the cloud, without MS Office.
3+
[Aspose.Cells Cloud SDK for Go](https://products.aspose.cloud/cells/go) empowers your Go applications to connect with excel document formats. The APIs let engineers read, convert, build, alter and control the substance of the [excel document formats](https://docs.aspose.cloud/display/cellscloud/Supported+File+Formats) without any office software installed on the machine..
44

55
## Spreadsheet Processing Features
66

@@ -46,9 +46,11 @@ SXC, FODS
4646
You do not need to install anything to get started with Aspose.Cells Cloud SDK for Go. Just create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and get your application information.
4747

4848
### Installation
49-
Put the package under your project folder and add the following in import:
50-
```golang
51-
import "./asposecellscloud"
49+
## How to use the SDK
50+
51+
- 1:Download the code and Add/Modify your application refer to cells_cloud_test.go
52+
- 2:If you want to download by [Go Module](https://pkg.go.dev),please use
53+
import "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20" in your code
5254
```
5355
### Getting Started
5456
@@ -126,6 +128,10 @@ name := GetBook1()
126128
}
127129
```
128130

131+
## Licensing
132+
133+
All Aspose.Cells Cloud SDKs are licensed under [MIT License](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go/blob/master/LICENSE).
134+
129135
[Product Page](https://products.aspose.cloud/cells/go) | [Documentation](https://docs.aspose.cloud/display/cellscloud/Home) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps)
130136

131137

go.mod

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
module github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20
22

33
go 1.13
4+
5+
require (
6+
github.com/antihax/optional v1.0.0 // indirect
7+
github.com/creack/pty v1.1.11 // indirect
8+
github.com/kr/pty v1.1.8 // indirect
9+
github.com/kr/text v0.2.0 // indirect
10+
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
11+
github.com/stretchr/objx v0.2.0 // indirect
12+
github.com/stretchr/testify v1.6.1 // indirect
13+
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
14+
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
15+
gopkg.in/yaml.v2 v2.3.0 // indirect
16+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
17+
)

0 commit comments

Comments
 (0)