New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

asposecellscloud

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asposecellscloud

Python Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Microsoft Excel® spreadsheet generation, manipulation, conversion & inspection features into your own Python applications.

  • 25.1
  • PyPI
  • Socket score

Maintainers
2

PyPI PyPI - Python Version PyPI - Downloads GitHub license GitHub commits since latest release (by date)

Aspose.Cells Cloud for Python 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.

Python package for Aspose.Cells Cloud

Enhance your Python 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 25.1

Full list of issues covering all changes in this release:

  • Add the new API for splitting text in the cell.
  • Optimize pivot table filter-related APIs.

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 begin with Aspose.Cells Cloud, here's what you need to do:

  1. Sign up for an account at Aspose for Cloud to obtain your application details.
  2. Install the Aspose.Cells Cloud Python package from the pypi.
   pip install asposecellscloud
  1. Use the conversion code provided below as a reference to add or modify your application.

Convert Excel to PDF Using Python

import os
import sys
from asposecellscloud.apis.cells_api import CellsApi
from asposecellscloud.models import *
from asposecellscloud.requests import *

api  = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'),"v3.0",os.getenv('CellsCloudApiBaseUrl'))
remote_folder = 'TestData/In'

local_name = 'Book1.xlsx'
remote_name = 'Book1.xlsx'

format = 'csv'

mapFiles = { 
    local_name: os.path.dirname(os.path.realpath(__file__)) + "/../TestData/" +local_name             
}
mapFiles = { 
    local_name:  local_name             
}
request =  UploadFileRequest( mapFiles, remote_folder + '/' + remote_name,storage_name= '')
api.upload_file(request)

request =  PutConvertWorkbookRequest( mapFiles,format= format)
api.put_convert_workbook(request)

.NETJavaPHPRubyNode.jsAndroidSwiftPerlGO
GitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHub
NuGetMavenComposerGEMNPMMavenPODCPANGO

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

Release history version

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc