Skip to content

Latest commit

 

History

History
 
 

excel

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

robocorp-excel

This library provides a simple way to deal with both legacy .xls files and newer .xlsx files directly. It can be used to read and edit them directly without having Microsoft Excel installed.

Getting started

from robocorp import excel
from robocorp.tasks import task

@task
def inspect_workbook():
    workbook = excel.open_workbook("orders.xlsx")
    worksheet = workbook.worksheet("Sheet1")

    for row in worksheet.as_table(header=True):
    	print(row)

Further user guides and tutorials can be found in Robocorp Docs.

API Reference

Information on specific functions or classes: robocorp.excel

Changelog

A list of releases and corresponding changes can be found in the changelog.