Skip to content

Commit 686531d

Browse files
authored
Standardized readme.md
1 parent a13c842 commit 686531d

File tree

1 file changed

+38
-44
lines changed

1 file changed

+38
-44
lines changed

README.md

Lines changed: 38 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
1-
# Go API client for asposecellscloud
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-go)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go/blob/master/LICENSE)
22

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/cells/supported-file-formats/) without any office software installed on the machine..
3+
# Go API Client for Aspose.Cells Cloud
44

5-
## Spreadsheet Processing Features
5+
[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/cells/supported-file-formats/) without any office software installed on the machine.
66

7-
- Add, update or delete charts, worksheet pictures, shapes, hyperlinks & validations.
8-
- Add or remove cells area for conditional formatting, or OleObjects from Excel worksheets.
9-
- Insert or delete, horizontal or vertical page breaks
10-
- Add ListObject at a specific place within an Excel file & convert them to a range of cells.
11-
- Delete specific or all ListObjects in a worksheet or summarize its data with pivot table.
7+
## Excel® File Manipulation in the Cloud
8+
9+
- Create Excel files from scratch via API or [Smart Markers](https://docs.aspose.cloud/cells/create-excel-workbook-from-a-smartmarker-template/).
10+
- Load, process & [convert Excel files](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/) via Cloud SDK.
11+
- Add, update or delete worksheet, charts, pictures, shapes, hyperlinks & validations.
12+
- Add or remove cells area for conditional formatting from Excel worksheets.
13+
- Insert or delete, horizontal or vertical page breaks.
14+
- Add ListObject or convert ListObjects to a range of cells.
15+
- Summarize data with [Pivot Tables](https://docs.aspose.cloud/cells/working-with-pivot-tables/) & Excel charts.
1216
- Apply custom criteria to list filters of various types.
1317
- Get, update, show or hide chart legend & titles.
1418
- Manipulate page setup, header & footer.
1519
- Create, update, fetch or delete document properties.
1620
- Fetch the required shape from worksheet.
17-
- Load & Process Excel Spreadsheets via Cloud SDK.
18-
- Cloud SDK to Read & Process Excel Worksheets.
19-
- Leverage the Power of Pivot Tables & Ranges.
21+
- Leverage the power of named ranges.
2022

2123
## Enhancements in Version 20.9
2224

23-
- Enhancement for add chart API.
24-
- Add API about updating pivot field.
25-
- Support sparkline groups.
25+
- Enhanced chart API.
26+
- Added API to update Pivot Fields.
27+
- Supported sparkline groups.
2628

2729
## Read & Write Spreadsheet Formats
2830

@@ -31,30 +33,29 @@
3133
**SpreadsheetML:** XML
3234
**Text:** CSV, TSV, TXT (TabDelimited)
3335
**Web:** HTML, MHTML
34-
**PDF**
3536

36-
## Save Spreadsheet As
37+
## Save Spreadsheets As
3738

38-
DIF, HTML, MHTML,PNG,JPG, TIFF, XPS, SVG, MD (Markdown), ODS ,xlsx,xls,xlsb, PDF,XML,TXT,CSV
39+
**Microsoft Excel:** XLS, XLSX, XLSB
40+
**OpenOffice:** ODS
41+
**SpreadsheetML:** XML
42+
**Text:** CSV, TSV, TXT (TabDelimited)
43+
**Web:** HTML, MHTML
44+
**Fixed Layout:** PDF, XPS
45+
**Images:** PNG, JPG, TIFF, SVG
46+
**Markdown:** MD
47+
**Other:** DIF
3948

40-
## Read Spreadsheet Formats
49+
## Read Other Formats
4150

4251
SXC, FODS
4352

44-
## Getting Started with Aspose.Cells Cloud SDK for Go
45-
46-
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.
53+
## Get Started with Aspose.Cells Cloud SDK for Go
4754

48-
### Installation
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
54-
```
55-
### Getting Started
55+
First, create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and get your application information. Then, follow these steps.
5656

57-
Please follow the [installation](#installation) instruction and execute the following Go code:
57+
- Download the code and Add/Modify your application and refer to cells_cloud_test.go.
58+
- If you want to download [Go Module](https://pkg.go.dev),please use `import "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20"` in your code.
5859

5960
```golang
6061
func GetDocumentCircleAnnotations() (CircleAnnotationsResponse, *http.Response, error) {
@@ -73,11 +74,7 @@ func GetDocumentCircleAnnotations() (CircleAnnotationsResponse, *http.Response,
7374
}
7475
```
7576

76-
Please check the [GitHub Repository](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) for other common usage scenarios.
77-
78-
## Using Go to Add a New Worksheet to an Excel File
79-
80-
The following code snippet demonstrates how to add a new worksheet to a Microsoft Excel document using C# code:
77+
## Add Worksheet to Excel File via Go
8178

8279
```golang
8380
name := GetBook1()
@@ -102,9 +99,7 @@ The following code snippet demonstrates how to add a new worksheet to a Microsof
10299
}
103100
```
104101

105-
## Using Go to Convert an Excel File to another File Format
106-
107-
The following code example elaborates how you can use C# code to convert an Excel document to another file format in the cloud:
102+
## Using Go to Convert an Excel File in the Cloud
108103

109104
```golang
110105
// Upload source file to aspose cloud storage
@@ -128,12 +123,11 @@ name := GetBook1()
128123
}
129124
```
130125

131-
## Licensing
126+
## Aspose.Cells Cloud SDKs in Popular Languages
132127

133-
All Aspose.Cells Cloud SDKs are licensed under [MIT License](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go/blob/master/LICENSE).
128+
| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift | Perl |
129+
|---|---|---|---|---|---|---|---|---|
130+
| [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) |
131+
| [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [GEM](https://rubygems.org/gems/aspose_cells_cloud) | [NPM](https://www.npmjs.com/package/asposecellscloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [CPAN](https://metacpan.org/release/AsposeCellsCloud-CellsApi) |
134132

135133
[Product Page](https://products.aspose.cloud/cells/go) | [Documentation](https://docs.aspose.cloud/cells/) | [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)
136-
137-
138-
139-

0 commit comments

Comments
 (0)