8fcdd1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st import os def main(): pg = st.navigation([ st.Page("texttree.py", title="Text Tree", icon="📚"), st.Page("spacy.py", title="Text Graph", icon="🔥"), ]) pg.run() if __name__ == "__main__": main()