textTree / app.py
rockerritesh's picture
Update app.py
76e98df verified
raw
history blame contribute delete
304 Bytes
import streamlit as st
import os
def main():
pg = st.navigation([
st.Page("texttree.py", title="Text Tree", icon="πŸ“š"),
st.Page("spacy_app.py", title="Text Graph", icon="πŸ”₯"),
])
pg.run()
if __name__ == "__main__":
main()