ddnet/scripts/wordlist.py
def 7379a64004 [WIP] Require Python 3.6 (f-strings) and fix pylints
So far only done scripts directory, will do the rest if this is
considered good
2022-07-27 09:37:24 +02:00

10 lines
313 B
Python

print("#ifndef GENERATED_WORDLIST_H")
print("#define GENERATED_WORDLIST_H")
print("const char g_aFallbackWordlist[][32] = {")
with open("data/wordlist.txt", encoding="utf-8") as f:
for line in f:
word = line.strip().split("\t")[1]
print(f"\t\"{word}\", ")
print("};")
print("#endif // GENERATED_WORDLIST_H")