This commit is contained in:
Aevann1 2022-02-22 14:40:43 +02:00
parent 05c1bd713b
commit 632e875101
2 changed files with 5 additions and 0 deletions

View file

@ -17,6 +17,10 @@ import requests
from shutil import copyfile
from json import loads
from collections import Counter
import nltk
nltk.download('words')
from nltk.corpus import words
words = set(WORDLE_LIST) | set(words.words())