Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ st.subheader("You can tag your input CSV file of theses and dissertations with L
|
|
44 |
tab1, tab2, tab3 = st.tabs(["π Load Data", "π Tagged ETDs", "π Download Data"])
|
45 |
with tab1:
|
46 |
#===load data===
|
47 |
-
if uploaded_file is not None:
|
48 |
df = pd.read_csv(uploaded_file, encoding='latin-1')
|
49 |
st.dataframe(df)
|
50 |
|
@@ -65,7 +65,7 @@ return prediction
|
|
65 |
with tab3:
|
66 |
#===download result===
|
67 |
# Create a download button
|
68 |
-
if st.sidebar.button("Download"):
|
69 |
csv = df.to_csv(index=False)
|
70 |
b64 = base64.b64encode(csv.encode()).decode()
|
71 |
href = f'<a href="data:file/csv;base64,{b64}" download="results.csv">Download csv file</a>'
|
|
|
44 |
tab1, tab2, tab3 = st.tabs(["π Load Data", "π Tagged ETDs", "π Download Data"])
|
45 |
with tab1:
|
46 |
#===load data===
|
47 |
+
if uploaded_file is not None:
|
48 |
df = pd.read_csv(uploaded_file, encoding='latin-1')
|
49 |
st.dataframe(df)
|
50 |
|
|
|
65 |
with tab3:
|
66 |
#===download result===
|
67 |
# Create a download button
|
68 |
+
if st.sidebar.button("Download"):
|
69 |
csv = df.to_csv(index=False)
|
70 |
b64 = base64.b64encode(csv.encode()).decode()
|
71 |
href = f'<a href="data:file/csv;base64,{b64}" download="results.csv">Download csv file</a>'
|