with CLASS perfect

This commit is contained in:
Alexander Popov 2017-02-14 02:03:22 +03:00
parent 297dc95835
commit 59790480ef
1 changed files with 6 additions and 4 deletions

View File

@ -3,7 +3,7 @@
import json
__author__ = 'Alexander Popov'
__version__ = '0.1.0'
__version__ = '1.0.0'
__license__ = 'Unlicense'
exportData = list()
@ -14,15 +14,17 @@ def loadStrings():
jsonData = json.loads(f.read())
for string in jsonData:
exportData.append(jsonData[string]['localizedName'])
exportData.append('%s\n%s' %
(string,
jsonData[string]['localizedName']))
return('Complete!')
def saveStrings():
with open('result.txt', 'w+', encoding='utf-8') as f:
with open('result.txt', 'w+', encoding='utf-8', newline='\n') as f:
for string in exportData:
f.write('%s\n' % string)
f.write('%s%s' % (string, '\n' * 3,))
return('Complete!')