Spaces:
Sleeping
Sleeping
Keith Bourne commited on
Commit ·
23b62f2
1
Parent(s): 8a06f97
Add google sheets test fix
Browse files
app.py
CHANGED
|
@@ -9,14 +9,14 @@ typestring = os.environ.getattribute("type")
|
|
| 9 |
st.write(f"type :{typestring}:")
|
| 10 |
|
| 11 |
# Create a connection object.
|
| 12 |
-
conn = st.connection("gsheets", type=GSheetsConnection)
|
| 13 |
|
| 14 |
-
df = conn.read()
|
| 15 |
|
| 16 |
-
# Print results.
|
| 17 |
-
for row in df.itertuples():
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
| 9 |
st.write(f"type :{typestring}:")
|
| 10 |
|
| 11 |
# Create a connection object.
|
| 12 |
+
# conn = st.connection("gsheets", type=GSheetsConnection)
|
| 13 |
|
| 14 |
+
# df = conn.read()
|
| 15 |
|
| 16 |
+
# # Print results.
|
| 17 |
+
# for row in df.itertuples():
|
| 18 |
+
# st.write(f"{row.name} has a :{row.pet}:")
|
| 19 |
|
| 20 |
+
st.title("Basic Streamlit App")
|
| 21 |
+
name = st.text_input("Enter your name", '')
|
| 22 |
+
st.write(f"Salutations {name}!")
|