Skip to main content

A 100% standalone Excel Python API for Processing Excel Files

Project description

Python API for Processing Excel Files

Foo

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Spire.XLS for Python is a professional Excel Python API that can be used to create, read, write, and convert Excel files in any type of Python applications without installing Microsoft Office.

The API supports both the old Excel 97-2003 format (.xls) and the new Excel 2007, Excel 2010, Excel 2013, Excel 2016 and Excel 2019 (.xlsx, .xlsb, .xlsm), along with Open Office(.ods) format. It features fast and reliably compared with developing your own spreadsheet manipulation solution or using Microsoft Automation.

100% Standalone Python API

Spire.XLS for Python is a 100% standalone Excel Python class library without requiring Microsoft Excel or Microsoft Office to be installed on the system.

Freely Operate Excel Files

Create/Save/Merge/Split/Get Excel files. Encrypt/Decrypt Excel files, add/delete digital signature, tracking changes, lock/unlock worksheets. Create/Add/Rename/Edit/Delete/Move worksheets. Insert/Modify/Remove hyperlinks. Add/Remove/Change/Hide/Show comments in Excel. Merge/Unmerge Excel cells, freeze/unfreeze Excel panes, insert/delete Excel rows and columns. Add/Read/Calculate/Remove Excel formulas. Create/Refresh pivot table. Apply/Remove conditional format in Excel. Add/Set/Change Excel header and footer.

Easily Manipulate Cells & Excel Calculation Engine at Runtime

Developers can easily manipulate Excel cells and Evaluate formula value in Python at runtime. Super-fast, scalable excel calculation engine is compatible with the 97-2003/2007/2010/2013/2016/2019 Excel. Cell Styles are supported by this Excel Python API, such as cell merging/unmerging, text wrapping/unwrapping, text alignment, rotation, interior, borders, lock/unlock and etc. Font formats, like setting font type, size, color, bold, italic, strikeout and underlining etc. is also fully supported. Conditional formatting, text search and replace, filter and data validation can be applied to cells as easily as you expect.

Powerful & High Quality Excel File Conversion

Convert Excel to PDF/Excel to HTML/Excel to XML/Excel to CSV/Excel to Image/Excel to XPS/Excel to SVG Convert CSV to Excel/CSV toPDF/Datatable Convert selected range of cells to PDF Convert XLS to XLSM and maintain macro Convert Excel to OpenDocument Spreadsheet(.ods) format Save Excel chart sheet to SVG/Image Convert HTML to Excel

Chart, Data and other Elements

Spire.XLS for Python provides a wide range of Chart: Pie Chart, Bar Chart, Column Chart, Line Chart, Radar Chart and etc. This Excel Python API also supports data transportation between database and Excel in Python. Hyperlinks and templates are also supported by Spire.XLS for Python.

Examples

Create an Excel File in Python

from spire.common import *
from spire.xls import *


outputFile = "CreateAnExcelWithFiveSheet.xlsx"

workbook = Workbook()
workbook.CreateEmptySheets(5)
for i in range(0, 5):
    sheet = workbook.Worksheets[i]
    sheet.Name = "Sheet" + str(i)
    for row in range(1, 151):
        for col in range(1, 51):
            sheet.Range[row,col].Text = "row" + str(row) + " col" + str(col)

workbook.SaveToFile(outputFile, ExcelVersion.Version2010)
workbook.Dispose()

Convert Excel to PDF in Python

from spire.xls import *
from spire.common import *


inputFile = "./Demos/Data/ToPDF.xlsx"
outputFile = "ToPDF.pdf"

#create a workbook
workbook = Workbook()
#load a excel document
workbook.LoadFromFile(inputFile)
workbook.ConverterSetting.SheetFitToPage = True
#convert to PDF file
workbook.SaveToFile(outputFile, FileFormat.PDF)
workbook.Dispose()

Convert Excel to Image in Python

from spire.xls import *
from spire.common import *


inputFile = "./Demos/Data/SheetToImage.xlsx"
outputFile = "SheetToImage.png"

workbook = Workbook()
workbook.LoadFromFile(inputFile)
sheet = workbook.Worksheets[0]
sheet.ToImage(sheet.FirstRow, sheet.FirstColumn, sheet.LastRow, sheet.LastColumn).Save(outputFile)
workbook.Dispose()

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

Spire.Xls-13.12.6-py3-none-win_amd64.whl (23.8 MB view details)

Uploaded Python 3Windows x86-64

Spire.Xls-13.12.6-py3-none-manylinux1_x86_64.whl (37.1 MB view details)

Uploaded Python 3

File details

Details for the file Spire.Xls-13.12.6-py3-none-win_amd64.whl.

File metadata

  • Download URL: Spire.Xls-13.12.6-py3-none-win_amd64.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.11

File hashes

Hashes for Spire.Xls-13.12.6-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 de8f10d7e9e0232fca6bf2719ff14b65838a39103762447c05def3d64f0c014c
MD5 401c765821009e2c4c9aa9a897a6d744
BLAKE2b-256 e7ae5433d64c615c510186050a6a0717cbd2d0b869e32ac98ba30475a478ef13

See more details on using hashes here.

File details

Details for the file Spire.Xls-13.12.6-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for Spire.Xls-13.12.6-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5dd0ef89968ff69c02c22a1bc50381c302280e575fc7acf846590b2988756d36
MD5 81fc3589ca8f66e3d0a0854c84dc6a54
BLAKE2b-256 11332fd62c207873abe92faa5b40b13f4c8c0dbaf21e00e0b1ae54f6fb818314

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page