Spaces:
Sleeping
Sleeping
kmaurinjones
commited on
Commit
•
e410fea
1
Parent(s):
d3ba825
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,10 @@ import random
|
|
3 |
from wordle_functions import *
|
4 |
|
5 |
|
|
|
|
|
|
|
|
|
6 |
### Loading in official word list
|
7 |
official_words = []
|
8 |
with open("data/official_words_processed.txt", "r", encoding = "utf-8") as f:
|
|
|
3 |
from wordle_functions import *
|
4 |
|
5 |
|
6 |
+
### Page header
|
7 |
+
st.title("Wordle Wizard")
|
8 |
+
|
9 |
+
|
10 |
### Loading in official word list
|
11 |
official_words = []
|
12 |
with open("data/official_words_processed.txt", "r", encoding = "utf-8") as f:
|