Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,7 +6,6 @@ st.set_page_config(
|
|
| 6 |
page_icon="🥥",
|
| 7 |
layout="wide"
|
| 8 |
)
|
| 9 |
-
st.title('🥥 File Checker')
|
| 10 |
|
| 11 |
hide_streamlit_style = """
|
| 12 |
<style>
|
|
@@ -16,6 +15,7 @@ hide_streamlit_style = """
|
|
| 16 |
"""
|
| 17 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 18 |
|
|
|
|
| 19 |
|
| 20 |
def reset_data():
|
| 21 |
st.cache_data.clear()
|
|
@@ -47,7 +47,7 @@ def conv_txt(extype):
|
|
| 47 |
return keywords
|
| 48 |
|
| 49 |
|
| 50 |
-
st.subheader('Put your file here...')
|
| 51 |
|
| 52 |
#===read data===
|
| 53 |
uploaded_file = st.file_uploader("Choose your a file", type=['csv','txt'], on_change=reset_data)
|
|
|
|
| 6 |
page_icon="🥥",
|
| 7 |
layout="wide"
|
| 8 |
)
|
|
|
|
| 9 |
|
| 10 |
hide_streamlit_style = """
|
| 11 |
<style>
|
|
|
|
| 15 |
"""
|
| 16 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 17 |
|
| 18 |
+
st.title('🥥 File Checker', anchor=False)
|
| 19 |
|
| 20 |
def reset_data():
|
| 21 |
st.cache_data.clear()
|
|
|
|
| 47 |
return keywords
|
| 48 |
|
| 49 |
|
| 50 |
+
st.subheader('Put your file here...', anchor=False)
|
| 51 |
|
| 52 |
#===read data===
|
| 53 |
uploaded_file = st.file_uploader("Choose your a file", type=['csv','txt'], on_change=reset_data)
|