atlas/tools/allCharacters.py
2017-04-18 15:30:28 -04:00

20 lines
286 B
Python

outfile = open('allCharacters.txt', 'w')
chars = set()
with open('./web/_js/atlas.js') as f:
while True:
c = f.read(1)
if not c:
chars = list(chars)
chars = sorted(chars)
string = ""
for i in chars:
string += i
outfile.write(string)
break
chars.add(c)