Spaces:
Build error
Build error
File size: 339 Bytes
c14d52f |
1 2 3 4 5 6 7 8 9 10 11 12 |
import requests
def download_word_list():
print("Downloading English word list...")
url = "https://raw.githubusercontent.com/dwyl/english-words/master/words_alpha.txt"
response = requests.get(url)
words = set(response.text.split())
print("Word list downloaded.")
return words
english_words = download_word_list() |