0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-24 19:36:55 +01:00
flags/flags.py

19 lines
405 B
Python
Raw Normal View History

2021-10-22 22:26:29 +02:00
import os
import json
flags_dir = os.path.join("flags", "4x3")
f = []
for (dirpath, dirnames, filenames) in os.walk(flags_dir):
f.extend(filenames)
break
codes = [name.replace('.svg', '') for name in f]
country_json = open("country.json")
flags = json.load(country_json)
flags.sort(key=lambda x: x["flag_1x1"])
with open('country.json', 'w') as output:
json.dump(flags, output, indent=2)