Skip to content

Instantly share code, notes, and snippets.

View WestFR's full-sized avatar
🎯
Focusing

Steven Francony WestFR

🎯
Focusing
View GitHub Profile
@WestFR
WestFR / localization-csv-to-json.py
Created December 20, 2019 14:27 — forked from phoenleo/localization-csv-to-json.py
Convert Localization CSV to JSON
import csv
import json
import collections
csvfile = open('file.csv', 'r')
def isKeyEmptyOrComment (stringKey):
if not stringKey: return True
if stringKey[0] == "@": return True
return False