File size: 572 Bytes
aa96a63
6f8fb25
aa96a63
63b616b
 
6f8fb25
 
 
63b616b
 
 
6f8fb25
 
63b616b
 
6f8fb25
63b616b
 
 
 
6f8fb25
63b616b
6f8fb25
 
 
 
63b616b
 
6f8fb25
63b616b
 
 
6f8fb25
 
 
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
26
27
28
29
30
31
32
33
34
35
import streamlit as st
import time

 

def main():
    st.title("File Upload and Display")

 

    # File upload
    uploaded_file = st.file_uploader("Upload a file")

 

    if uploaded_file is not None:
        # Display file contents using st.markdown()
        file_contents = uploaded_file.read().decode("utf-8")
        st.markdown("### File Contents:")
        st.markdown(f"```{file_contents}```")

 

    # Wait for 5 seconds
    time.sleep(5)

 

    # Show completed message
    st.success("File processing completed!")

 

if __name__ == "__main__":
    main()