wordle-analyzer/scripts/make_all_lowercase.py
Christoph J. Scherr 2fcdc062c8
All checks were successful
cargo devel CI / cargo CI (push) Successful in 2m16s
chore(wlist): make all wordlist json sources lowercase #20
2024-08-02 17:10:35 +02:00

10 lines
331 B
Python

import json
with open('../data/wordlists/german_SUBTLEX-DE_small.json', 'r') as f:
word_freqs: dict[str,float] = json.load(f)
nd: dict[str, float] = dict()
for k in word_freqs:
nd[k.lower()] = word_freqs[k]
with open('../data/wordlists/german_SUBTLEX-DE_small.json', 'w') as f:
json.dump(nd, f, indent=4)