Update app.py
Browse files
app.py
CHANGED
|
@@ -259,12 +259,9 @@ html = """
|
|
| 259 |
"""
|
| 260 |
st.markdown(html, unsafe_allow_html=True)
|
| 261 |
|
| 262 |
-
st.sidebar.subheader("Topics")
|
| 263 |
-
st.sidebar.write(clusters.keys())
|
| 264 |
-
st.sidebar.write(clusters['Russia'])
|
| 265 |
-
st.sidebar.write(len(clusters['Russia']))
|
| 266 |
for i in list(clusters.keys()):
|
| 267 |
-
print(f"{i} : {clusters[i]}")
|
| 268 |
|
| 269 |
st.session_state['dt'] = dt.now()
|
| 270 |
# Form used to take 3 menu inputs
|
|
|
|
| 259 |
"""
|
| 260 |
st.markdown(html, unsafe_allow_html=True)
|
| 261 |
|
| 262 |
+
st.sidebar.subheader("Topics")
|
|
|
|
|
|
|
|
|
|
| 263 |
for i in list(clusters.keys()):
|
| 264 |
+
print(f"{i} : {len(clusters[i])}")
|
| 265 |
|
| 266 |
st.session_state['dt'] = dt.now()
|
| 267 |
# Form used to take 3 menu inputs
|