Categorygithub.com/aspose-cells-cloud/aspose-cells-cloud-go/v24

# Packages

No description provided by the author

# README

GitHub license

Aspose.Cells Cloud for Go enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.

Go package for Aspose.Cells Cloud

Enhance your Go applications with the Aspose.Cells Cloud , enabling seamless integration with Excel, ODS, CSV, Json and other spreadsheet document 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

Manipulate Excel and other spreadsheet files in the Cloud

  • File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
  • Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
  • Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
  • Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
  • Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
  • Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
  • Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
  • Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
  • Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
  • 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.

Feature & Enhancements in Version 24.12

Full list of issues covering all changes in this release:

  • Add the new remove duplicates api.
  • Add the new extract text API.
  • The pivot filter could not be created successfully.

Support file format

FormatDescriptionLoadSave
XLSExcel 95/5.0 - 2003 Workbook.
XLSXOffice Open XML SpreadsheetML Workbook or template file, with or without macros.
XLSBExcel Binary Workbook.
XLSMExcel Macro-Enabled Workbook.
XLTExcel 97 - Excel 2003 Template.
XLTXExcel Template.
XLTMExcel Macro-Enabled Template.
XLAMAn Excel Macro-Enabled Add-In file that's used to add new functions to Excel. 
CSVCSV (Comma Separated Value) file.
TSVTSV (Tab-separated values) file.
TabDelimitedTab-delimited text file, same with TSV file.
TXTDelimited plain text file.
HTMLHTML format.
MHTMLMHTML file.
ODSODS (OpenDocument Spreadsheet).
SpreadsheetMLExcel 2003 XML file.
NumbersThe 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.
JSONJavaScript Object Notation
DIFData Interchange Format. 
PDFAdobe Portable Document Format. 
XPSXML Paper Specification Format. 
SVGScalable Vector Graphics Format. 
TIFFTagged Image File Format 
PNGPortable Network Graphics Format 
BMPBitmap Image Format 
EMFEnhanced metafile Format 
JPEGJPEG is a type of image format that is saved using the method of lossy compression. 
GIFGraphical Interchange Format 
MARKDOWNRepresents a markdown document. 
SXCAn XML based format used by OpenOffice and StarOffice
FODSThis is an Open Document format stored as flat XML.
DOCXA well-known format for Microsoft Word documents that is a combination of XML and binary files.
PPTXThe PPTX format is based on the Microsoft PowerPoint open XML presentation file format.

Quick Start Guide

To get started with Aspose.Cells Cloud for Go, follow these steps:

  1. Create an account at Aspose for Cloud and obtain your application information.
  2. Download the code and add or modify your application by referring to cells_cloud_test.go.
  3. If you prefer to use Go Module, import "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v24" in your code.
 remoteFolder := "TestData/In"
 localFolder := "testdata/"
 localName := "Book1.xlsx"
 remoteName := "Book1.xlsx"
 instance := asposecellscloud.NewCellsApiService(os.Getenv("ProductClientId"), os.Getenv("ProductClientSecret"), "https://api.aspose.cloud", "v3.0")

 localNameRequest := new(asposecellscloud.UploadFileRequest)
 localNameRequest.UploadFiles = make(map[string]string)
 localNameRequest.UploadFiles[localName] = localFolder + localName
 localNameRequest.Path = remoteFolder + "/" + remoteName
 localNameRequest.StorageName = ""
 instance.UploadFile(localNameRequest)

 newfilename := "TestData/OutResult/PostExcelSaveAs.pdf"

 var saveOptions = new(asposecellscloud.PdfSaveOptions)
 saveOptions.SaveFormat = "pdf"

 request := new(asposecellscloud.PostWorkbookSaveAsRequest)
 request.Name = remoteName
 request.Newfilename = newfilename
 request.SaveOptions = saveOptions
 request.Folder = remoteFolder
 _, httpResponse, err := instance.PostWorkbookSaveAs(request)
 if err != nil {
  println(err)
 }
 println(httpResponse.StatusCode)

Aspose.Cells Cloud SDKs in Popular Languages

.NETJavaPHPPythonRubyNode.jsAndroidSwiftPerl
GitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHub
NuGetMavenComposerPIPGEMNPMMavenPODCPAN

Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial

Release history version