Spaces:
Sleeping
Sleeping
File size: 703 Bytes
8906346 fcc6774 8906346 f165257 |
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 |
import streamlit as st
import time
def main():
st.title("File Upload Example")
# File upload section
uploaded_file = st.file_uploader("Upload a file")
if uploaded_file is not None:
st.markdown("### Uploaded File Contents:")
file_contents = uploaded_file.read().decode("utf-8")
st.markdown(file_contents)
# Wait for 5 seconds
with st.spinner("Processing..."):
time.sleep(5)
# Show completed message
st.success("Processing completed!")
if __name__ == "__main__":
main()
#Sourced from https://huggingface.co/spaces/awacke1/ChatGPT-Memory-Chat-Story-Generator as part of Data Track - AI Pair Programming session with Aaron C Wacker |