Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Aspose.Cells-toolset is a toolkit used to handle the conversion between spreadsheets, numpy, and pandas. Aspose.Cells for Python via .NET is a scalable and feature-rich API to process Excel® spreadsheets using Python. API offers Excel® file creation, manipulation, conversion and rendering. Developers can format worksheets, rows, columns or cells to the most granular level, create manipulate chart and pivot tables, render worksheets, charts and specific data ranges to PDF or images, add calculate Excel®'s built-in and custom formulas and much more - all without any dependency on Microsoft Office or Excel® application.
- Spreadsheet generation & manipulation via API.
- High-quality file format conversion & rendering.
- Print Microsoft Excel® files to physical or virtual printers.
- Combine, modify, protect, or parse Excel® sheets.
- Apply worksheet formatting.
- Configure and apply page setup for the worksheets.
- Create & customize Excel® charts, Pivot Tables, conditional formatting rules, slicers, tables & spark-lines.
- Convert Excel® charts to images & PDF.
- Convert Excel® files to various other formats.
- Formula calculation engine that supports all basic and advanced Excel® functions.
Please visit the official documentation for a more detailed list of features.
Microsoft Excel®: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM, CSV, TSV, TabDelimited, SpreadsheetML
OpenOffice: ODS, SXC, FODS
Text: TXT
Web: HTML, MHTML
iWork®: Numbers
Other: SXC, FODS
Microsoft Word®: DOCX
Microsoft PowerPoint®: PPTX
Microsoft Excel®: XLAM
Fixed Layout: PDF, XPS
Data Interchange: DIF
Vector Graphics: SVG
Image: TIFF,PNG, BMP, JPEG, GIF
Meta File: EMF
Markdown: MD
Please visit Supported File Formats for further details.
Your machine does not need to have Microsoft Excel® or OpenOffice® software installed.
Microsoft Windows®: Windows Desktop & Server (x64
, x86
)
Linux: Ubuntu, OpenSUSE, CentOS, and others
Other: Any operating system (OS) that can install Mono(.NET 4.0 Framework support) or use .NET core.
The Aspose.Cells for Python via .NET is available at pypi.org. To install it, please run the following command:
pip install aspose-cells-python
The pandas is available at pypi.org. To install it, please run the following command:
pip install pandas
The numpy is available at pypi.org. To install it, please run the following command:
pip install numpy
#import the python package
import numpy as np
import aspose.cells
from aspose.cells import License,Workbook,FileFormatType
import_tool = CellsImportUtility()
workbook = Workbook()
data = np.array([1,2,3,4,5,6,7,8,9])
import_tool.import_data_into_workbook( workbook ,data, is_vertical=True)
workbook.save("import_numarray_int_vertical.xlsx")
#import the python package
import numpy as np
import pandas as pd
import aspose.cells
from aspose.cells import License,Workbook,FileFormatType
dates = pd.date_range("20130101", periods=6)
df = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list("ABCD"))
import_tool = CellsImportUtility()
workbook = Workbook()
import_tool.import_data_into_workbook( workbook ,df, is_vertical=True)
workbook.save("import_dataframe_vertical.xlsx")
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License