Spaces:
Running
Running
Commit ·
4f30ec9
1
Parent(s): a72382a
Forgot to add SpellBee url
Browse files
app.py
CHANGED
|
@@ -26,6 +26,7 @@ def spell_bee_solver(no_centre, centre):
|
|
| 26 |
return(final_word_df)
|
| 27 |
|
| 28 |
def get_todays_answers():
|
|
|
|
| 29 |
with HTMLSession() as session:
|
| 30 |
page = session.get(url)
|
| 31 |
valid_words = page.html.render(script = 'game.validWords')
|
|
|
|
| 26 |
return(final_word_df)
|
| 27 |
|
| 28 |
def get_todays_answers():
|
| 29 |
+
url = 'https://spellbee.org/'
|
| 30 |
with HTMLSession() as session:
|
| 31 |
page = session.get(url)
|
| 32 |
valid_words = page.html.render(script = 'game.validWords')
|