File size: 342 Bytes
03465f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st

from logic import get_links,get_documents,get_topics,get_figure

st.write("Getting Links")
links = get_links()

st.write("Getting Documents")
docs = get_documents(links)

st.write("Getting Topics with topic_model")
topic_model = get_topics(docs)

st.write("Creating Visual")
fig = get_figure(topic_model)
st.image(fig)