52.8 The excelapi module
The excelapi module provides scripting access to Excel workbooks from
Server script nodes. It is based on
Apache POI and supports the XLSX format.
To use the module, import it at the top of your script:
import excelapi wb = excelapi.newWorkbook()
excelapi module in Jythonimport excelapi def wb = excelapi.newWorkbook()
excelapi module in Groovy
The workbook objects returned by this module are Apache POI Workbook
instances. Refer to the
Apache POI API documentation
for details on how to work with sheets, rows, and cells.