mharikmert/data-labeling-system

Reading student list

Closed this issue · 1 comments

Reading student list from xls file to json file is handled but I have a problem with Turkish characters , you can find .py file in python_project branch

WhatsApp Image 2021-01-07 at 00 04 26

bycia commented

Additional parameter to json.dump fixed that. it seems by default non-ascii chracters are not permitted

json.dump(data_list, writeJsonfile, indent=4, default=str,ensure_ascii=False)