Delete Home.py
Browse files
Home.py
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
#import module
|
2 |
-
import streamlit as st
|
3 |
-
from PIL import Image
|
4 |
-
|
5 |
-
#===config===
|
6 |
-
st.set_page_config(
|
7 |
-
page_title="ETDs Tagging",
|
8 |
-
page_icon="",
|
9 |
-
layout="wide"
|
10 |
-
)
|
11 |
-
st.title('ETDs Tagging Tool')
|
12 |
-
st.sidebar.success('Select page above')
|
13 |
-
|
14 |
-
#===page===
|
15 |
-
mt1, mt2, mt3 = st.tabs(["About", "How to", "Behind this app"])
|
16 |
-
|
17 |
-
with mt1:
|
18 |
-
st.header("🌌 Hello ")
|
19 |
-
st.write('You can tag your input CSV file of theses and dissertations with Library Science, Archival Studies, and Information Science categories. The screen will show the output.')
|
20 |
-
st.text('')
|
21 |
-
st.text('')
|
22 |
-
st.text('')
|
23 |
-
st.text('')
|
24 |
-
st.divider()
|
25 |
-
st.error("This app works on CSV file having 'Abstract' field", icon="🚨")
|
26 |
-
|
27 |
-
with mt2:
|
28 |
-
st.header("Before you start")
|
29 |
-
option = st.selectbox(
|
30 |
-
'Please choose....',
|
31 |
-
('Tagging Categories', 'Tagging Sub-Categories'))
|
32 |
-
|
33 |
-
if option == 'Tagging Categories':
|
34 |
-
tab1 = st.tabs(["Prologue"])
|
35 |
-
with tab1:
|
36 |
-
st.text("""
|
37 |
-
+----------------+------------------------+---------------------------------+
|
38 |
-
| S.No. | Category name |
|
39 |
-
+----------------+------------------------+---------------------------------+
|
40 |
-
| 1 | Library Science |
|
41 |
-
+----------------+------------------------+---------------------------------+
|
42 |
-
| 2 | Information Science |
|
43 |
-
+----------------+------------------------+---------------------------------+
|
44 |
-
| 3 | Archival Studies ' |
|
45 |
-
+----------------+------------------------+---------------------------------+
|
46 |
-
""")
|
47 |
-
|
48 |
-
with mt3:
|
49 |
-
st.header('Behind this app')
|
50 |
-
st.subheader('Dr. Manika Lamba')
|
51 |
-
st.text('Elected Standing Committee Member & Chair of Professional Development Sub-Committee at IFLA STL Section | Editor-in-Chief for IJLIS (IGI Global).')
|
52 |
-
st.text('')
|
53 |
-
st.text('')
|
54 |
-
st.divider()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|