Spaces:
Running
Running
bradley6597
commited on
Commit
•
85f6a59
1
Parent(s):
ad38218
Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,7 @@ english_dict = pd.read_csv("dictionary.txt",
|
|
12 |
english_dict = english_dict.reset_index(drop = True)
|
13 |
english_dict = english_dict.dropna()
|
14 |
|
|
|
15 |
url = 'https://spellbee.org'
|
16 |
def spell_bee_solver(no_centre, centre):
|
17 |
full_set = set(no_centre.lower() + centre.lower())
|
@@ -31,6 +32,7 @@ def spell_bee_solver(no_centre, centre):
|
|
31 |
return(final_word_df)
|
32 |
|
33 |
def get_spellbee_answers(x):
|
|
|
34 |
today = date.today().strftime("%Y-%m-%d")
|
35 |
|
36 |
content = requests.get(url)._content
|
|
|
12 |
english_dict = english_dict.reset_index(drop = True)
|
13 |
english_dict = english_dict.dropna()
|
14 |
|
15 |
+
print('TESTING')
|
16 |
url = 'https://spellbee.org'
|
17 |
def spell_bee_solver(no_centre, centre):
|
18 |
full_set = set(no_centre.lower() + centre.lower())
|
|
|
32 |
return(final_word_df)
|
33 |
|
34 |
def get_spellbee_answers(x):
|
35 |
+
print("TESTING")
|
36 |
today = date.today().strftime("%Y-%m-%d")
|
37 |
|
38 |
content = requests.get(url)._content
|