Update app.py
Browse files
app.py
CHANGED
@@ -148,4 +148,10 @@ else:
|
|
148 |
|
149 |
|
150 |
if st.button('Submit'):
|
151 |
-
run_query(text, country=country)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
|
150 |
if st.button('Submit'):
|
151 |
+
run_query(text, country=country)
|
152 |
+
|
153 |
+
import sys
|
154 |
+
import streamlit as st
|
155 |
+
|
156 |
+
python_version = sys.version
|
157 |
+
st.text(f"Python Version: {python_version}")
|