Skip to content

Commit e81405f

Browse files
committed
Update Available SDKs of Readme.
1 parent 1bebbff commit e81405f

File tree

1 file changed

+57
-46
lines changed

1 file changed

+57
-46
lines changed

README.md

Lines changed: 57 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,42 @@ Aspose.Cells Cloud SDK for Go empowers developers to programmatically manage Exc
66

77
Enhance your Go applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/go) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine
88

9+
10+
## Quick Start Guide
11+
12+
To get started with Aspose.Cells Cloud for Go, follow these steps:
13+
14+
- Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application client id and secret.
15+
- Create a directory for your project and a main.go file within. Add the following code to your main.go.
16+
17+
```golang
18+
package main
19+
20+
import (
21+
"os"
22+
. "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25"
23+
)
24+
25+
func main() {
26+
instance := NewCellsApiService(os.Getenv("ProductClientId"), os.Getenv("ProductClientSecret"))
27+
request := PutConvertWorkbookRequest{File: map[string]string{"Book1.xlsx": "TestData/Book1.xlsx"}, Format: "pdf"}
28+
data, _, err := instance.PutConvertWorkbook(&request)
29+
if err == nil {
30+
file, _ := os.OpenFile("Book1.pdf", os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
31+
file.Write(data)
32+
defer file.Close()
33+
}
34+
}
35+
```
36+
37+
- Initialize project go.mod , fetch the dependencies for your project, and run your created application..
38+
39+
```bash
40+
go mod init main
41+
go mod tidy
42+
go run main.go
43+
```
44+
945
## Manipulate Excel and other spreadsheet files in the Cloud
1046

1147
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
@@ -19,17 +55,6 @@ Enhance your Go applications with the [Aspose.Cells Cloud](https://products.aspo
1955
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
2056
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
2157

22-
## Feature & Enhancements in Version v25.5.0
23-
24-
Full list of issues covering all changes in this release:
25-
26-
|**Summary**|**Category**|
27-
| :- | :- |
28-
| Add the new API for getting public key about encrypt password. | New Feature |
29-
| Optimize convert workbook feature: Add auto fit row parameter. | Improvement |
30-
| Optimize auto fit rows for worksheet. |Improvement |
31-
| Optimize auto fit rows for worksheet: Add firstColumn and lastColumn. | Improvement|
32-
3358
## Support file format
3459

3560
|**Format**|**Description**|**Load**|**Save**|
@@ -44,12 +69,10 @@ Full list of issues covering all changes in this release:
4469
|[XLAM](https://docs.fileformat.com/spreadsheet/xlam/)|An Excel Macro-Enabled Add-In file that's used to add new functions to Excel.| |√|
4570
|[CSV](https://docs.fileformat.com/spreadsheet/csv/)|CSV (Comma Separated Value) file.|√|√|
4671
|[TSV](https://docs.fileformat.com/spreadsheet/tsv/)|TSV (Tab-separated values) file.|√|√|
47-
|TabDelimited|Tab-delimited text file, same with TSV file.|√|√|
4872
|[TXT](https://docs.fileformat.com/word-processing/txt/)|Delimited plain text file.|√|√|
4973
|[HTML](https://docs.fileformat.com/web/html/)|HTML format.|√|√|
5074
|[MHTML](https://docs.fileformat.com/web/mhtml/)|MHTML file.|√|√|
5175
|[ODS](https://docs.fileformat.com/spreadsheet/ods/)|ODS (OpenDocument Spreadsheet).|√|√|
52-
|SpreadsheetML|Excel 2003 XML file.|√|√|
5376
|[Numbers](https://docs.fileformat.com/spreadsheet/numbers/)|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|√||
5477
|[JSON](https://docs.fileformat.com/web/json/)|JavaScript Object Notation|√|√|
5578
|[DIF](https://docs.fileformat.com/spreadsheet/dif/)|Data Interchange Format.| |√|
@@ -68,48 +91,36 @@ Full list of issues covering all changes in this release:
6891
|[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√|
6992
|[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√|
7093

71-
## Quick Start Guide
94+
## Feature & Enhancements in Version v25.5.0
7295

73-
To get started with Aspose.Cells Cloud for Go, follow these steps:
96+
Full list of issues covering all changes in this release:
7497

75-
- Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application client id and secret.
76-
- Create a directory for your project and a main.go file within. Add the following code to your main.go.
98+
|**Summary**| **Category** |
99+
| :- |:-------------|
100+
| Add the new API for getting public key about encrypt password. | New Feature |
101+
| Optimize convert workbook feature: Add auto fit row parameter. | Improvement |
102+
| Optimize auto fit rows for worksheet. | Improvement |
103+
| Optimize auto fit rows for worksheet: Add firstColumn and lastColumn. | Improvement |
77104

78-
```golang
79-
package main
80105

81-
import (
82-
"os"
83-
. "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25"
84-
)
106+
## Available SDKs
85107

86-
func main() {
87-
instance := NewCellsApiService(os.Getenv("ProductClientId"), os.Getenv("ProductClientSecret"))
88-
request := PutConvertWorkbookRequest{File: map[string]string{"Book1.xlsx": "TestData/Book1.xlsx"}, Format: "pdf"}
89-
data, _, err := instance.PutConvertWorkbook(&request)
90-
if err == nil {
91-
file, _ := os.OpenFile("Book1.pdf", os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
92-
file.Write(data)
93-
defer file.Close()
94-
}
95-
}
96-
```
108+
The Aspose.Cells Cloud SDK is available in multiple popular programming languages, enabling developers to integrate spreadsheet processing capabilities across various development environments.
97109

98-
- Initialize project go.mod , fetch the dependencies for your project, and run your created application..
110+
[![Go](https://img.shields.io/badge/Go-00ADD8.svg?style=for-the-badge&logo=go&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) [![Go](https://img.shields.io/badge/Go-Install%20go%20get%20package--asposecellscloud-%2300ADD8?logo=go&style=for-the-badge)](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v25)
99111

100-
```bash
101-
go mod init main
102-
go mod tidy
103-
go run main.go
104-
```
112+
[![Java](https://img.shields.io/badge/Java-red?logo=openjdk&style=for-the-badge&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) [![Java](https://img.shields.io/badge/Maven-Aspose.Cells%20Cloud.pom.xml-red?logo=apache-maven&style=for-the-badge)]()
113+
114+
[![C#](https://img.shields.io/badge/.NET-%23512BD4?style=for-the-badge&logo=dotnet&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) [![.NET](https://img.shields.io/badge/NuGet-Install%20Aspose.Cells--Cloud-%23512BD4?logo=nuget&style=for-the-badge)](https://www.nuget.org/packages/Aspose.cells-Cloud/#readme-body-tab)
115+
116+
[![Node.js](https://img.shields.io/badge/Node.js-43853D.svg?style=for-the-badge&logo=node.js&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) [![Node.js](https://img.shields.io/badge/npm-install%20asposecellscloud-orange?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/asposecellscloud)
117+
118+
[![Perl](https://img.shields.io/badge/Perl-39457E.svg?style=for-the-badge&logo=perl&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) [![Perl](https://img.shields.io/badge/CPAN-Install%20AsposeCellsCloud--CellsApi-blue?logo=perl&style=for-the-badge)](https://metacpan.org/dist/AsposeCellsCloud-CellsApi)
105119

106-
## Aspose.Cells Cloud SDKs in Popular Languages
120+
[![PHP](https://img.shields.io/badge/PHP-777BB4.svg?style=for-the-badge&logo=php&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) [![PHP](https://img.shields.io/badge/Composer-require%20aspose/cells--sdk--php-8892BF?logo=php&style=for-the-badge)](https://packagist.org/packages/aspose/cells-sdk-php)
107121

108-
| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift | Perl |
109-
|---|---|---|---|---|---|---|---|---|
110-
| [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) |
111-
| [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) |
122+
[![Python](https://img.shields.io/badge/Python-14354C.svg?style=for-the-badge&logo=python&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) [![Python](https://img.shields.io/badge/pip-install%20asposecellscloud-blue?logo=pypi&style=for-the-badge)](https://pypi.org/project/asposecellscloud/)
112123

113-
[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)
124+
[![Ruby](https://img.shields.io/badge/Ruby-CC342D.svg?style=for-the-badge&logo=ruby&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) [![Ruby](https://img.shields.io/badge/Gem-install%20aspose__cells__cloud-red?logo=ruby&style=for-the-badge)](https://rubygems.org/gems/aspose_cells_cloud)
114125

115126
## [Release history version](HistoryVersion.md)

0 commit comments

Comments
 (0)