0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

Refactor code to improve readability

This commit is contained in:
Ben Puls 2024-08-29 18:52:02 +05:00
parent 4ac238a00c
commit dbcf4e76f4

View File

@ -7,7 +7,8 @@ if len(sys.argv) < 3:
file_name = sys.argv[1]
save_file_name = sys.argv[2]
def build_html(data, first_launch=False):
html = ""
for i, element in enumerate(data):
@ -23,6 +24,7 @@ def build_html(data, first_launch=False):
html += f"<{element['value']}>{build_html(element['children'])}</{element['value']}>"
return html
with open(file_name, "r", encoding='utf-8') as file:
translation = json.load(file)
@ -34,4 +36,4 @@ for element_key in translation.keys():
notes[element_key] = build_html(translation[element_key], True)
with open(save_file_name, "w", encoding='utf-8') as file:
file.write(json.dumps(notes, ensure_ascii=False, indent=4))
file.write(json.dumps(notes, ensure_ascii=False, indent=4))