Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Excel Reader
Reading excel files. If you find any bugs, please report in issues.
Supported Engine Version
4.0
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL
Godot Excel Reader
Reading excel files.
For now, only xlsx files can be read.
Example
var excel = ExcelFile.open_file("xlsx file path")
var workbook = excel.get_workbook()
var sheet = workbook.get_sheet(0)
# Or use the following line, where two lines of code are equivalent
#var sheet = workbook.get_sheet("sheet1.xml") as ExcelSheet
var table_data = sheet.get_table_data()
print(JSON.stringify(table_data, "\t"))
# Output by row and column
var table_data = sheet.get_table_data()
for row in table_data:
var column_data = table_data[row]
for column in column_data:
print(column_data[column])
Contribute
Any contributions is welcome! If you find any bugs, please report in issues
.
Reading excel files. If you find any bugs, please report in issues.
Reviews
Quick Information
Excel Reader
Reading excel files. If you find any bugs, please report in issues.
Supported Engine Version
4.0
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL