mirror of
https://github.com/lipis/flag-icons.git
synced 2024-11-24 11:17:29 +01:00
ISO
This commit is contained in:
parent
3fd30007c4
commit
f5f2e02c22
258
country.json
258
country.json
File diff suppressed because it is too large
Load Diff
25
flags.py
25
flags.py
@ -8,31 +8,30 @@ for (dirpath, dirnames, filenames) in os.walk(flags_dir):
|
||||
files.extend(filenames)
|
||||
break
|
||||
|
||||
file_codes = [name.replace('.svg', '') for name in files]
|
||||
file_codes = [name.replace(".svg", "") for name in files]
|
||||
|
||||
country_json = open("country.json")
|
||||
flags = json.load(country_json)
|
||||
flags.sort(key=lambda x: x["code"])
|
||||
|
||||
with open('country.json', 'w') as output:
|
||||
json.dump(flags, output, indent=2, sort_keys=True)
|
||||
|
||||
# Check if all files have names
|
||||
country_codes = [flag["code"] for flag in flags]
|
||||
|
||||
with open("country.json", "w") as output:
|
||||
json.dump(flags, output, indent=2, sort_keys=True)
|
||||
|
||||
all_good = True
|
||||
|
||||
# Check if all files have names
|
||||
for code in file_codes:
|
||||
if code not in country_codes:
|
||||
print('Code not found in country.json:', code)
|
||||
all_good = False
|
||||
if code not in country_codes:
|
||||
print("Code not found in country.json:", code)
|
||||
all_good = False
|
||||
|
||||
# Check if all countries have files
|
||||
for code in country_codes:
|
||||
if code not in file_codes:
|
||||
print('Flag icon not found for:', code)
|
||||
all_good = False
|
||||
if code not in file_codes:
|
||||
print("Flag icon not found for:", code)
|
||||
all_good = False
|
||||
|
||||
|
||||
if all_good:
|
||||
print('All flag icons and country.json are in sync.')
|
||||
print("All flag icons and country.json are in sync.")
|
||||
|
Loading…
Reference in New Issue
Block a user