Excel Reader
by Apprentice
47
Godot Excel Reader
Reading excel files.
During the writing function test, there may be risks associated with its use.
写入功能试验中,使用可能会有风险!
Example
Load xlsx file data
#var excel_data = load(xlsx_path) as ExcelFileData
var excel_data = ExcelFileData.load_file(xlsx_path)
var table_data = excel_data.get_sheet_data("Sheet1")
print(JSON.stringify(table_data, "\t"))
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.
Download
Version1.0
Download Now
Support
If you need help or have questions about this plugin, please contact the author.
Contact Author