-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
25 lines (21 loc) · 786 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# INIT STREAMLIT CONFIG
import streamlit as st
st.set_page_config(page_title='ArticPy',
page_icon='❄',
menu_items={
'Report a bug': 'https://github.com/asdfghjkxd/ArticPy/issues',
'About': '## ArticPy ❄ \n'
'An app built to simplify and condense NLP tasks into one simple yet powerful '
'Interface.\n\n'
'### Project Contributors: \n\n'
'Ong Jung Yi, PNSD & George Tay, PNSD'
})
# CUSTOM PAGE IMPORTS
from pyfiles.multipage import MultiPage
# INSTANTIATE THE APP
app = MultiPage()
# RUN THE APP
try:
app.run()
except ValueError:
app.run()