## install depends first and then
cd excelconverter
pip install .
- convert from xlsx to json:
from excelconverter import convertXlsx2Json
convertXlsx2Json(xlsx_filepath_name)
- convert from xlsx to lua:
from excelconverter import convertJson2Xlsx
convertJson2Xlsx(json_filepath_name)
- convert from json to xlsx:
from excelconverter import convertJson2Xlsx
convertJson2Xlsx(json_filepath_name)