Rename app.py to Home.py
Browse files
Home.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.set_page_config(page_title='News Dashboard', layout='wide', page_icon='π')
|
5 |
+
st.title("π News Dashboard")
|
6 |
+
st.write(
|
7 |
+
"""
|
8 |
+
Welcome to the **π News Dashboard App**!
|
9 |
+
"""
|
10 |
+
)
|
app.py
DELETED
@@ -1,10 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
|
4 |
-
st.set_page_config(page_title='Classification - News Analysis and Prediction', layout='wide', page_icon='π')
|
5 |
-
st.title("π Classification - News Analysis and Prediction")
|
6 |
-
st.write(
|
7 |
-
"""
|
8 |
-
Welcome to the **π Classification - News Analysis and Prediction App**!
|
9 |
-
"""
|
10 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|