Skip to content

LaoDie1/godot-excel-reader

Repository files navigation

Plugin Logo

Godot Excel Reader

Godot Engine 4.2.1 MIT license

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.