-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
flag-ids.py
31 lines (24 loc) · 835 Bytes
/
flag-ids.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os
import json
dir_1x1 = os.path.join("flags", "1x1")
dir_4x3 = os.path.join("flags", "4x3")
files = []
for (dirpath, dirnames, filenames) in os.walk(dir_1x1):
files.extend(filenames)
break
def add_ids(directory):
for f in files:
filename = os.path.join(directory, f)
update = False
flag_id = "flag-icons-%s" % (f.replace(".svg", ""))
with open(filename, "r") as flag:
lines = flag.readlines()
if lines[0].find("id") == -1 and lines[0].find("viewBox") > 0:
lines[0] = lines[0].replace("viewBox", 'id="%s" viewBox' % flag_id)
update = True
if update:
print("Adding ID to", filename)
with open(filename, "w") as flag:
flag.writelines(lines)
add_ids(dir_1x1)
add_ids(dir_4x3)