├── Chapter03 ├── Chapter03.py ├── SampleVideo_1280x720_1mb.mp4 ├── auto.csv ├── packt.jpeg └── sample1.mp3 ├── Chapter04 └── Chapter04.py ├── Chapter05 ├── Chapter05.py └── nlp.jpg ├── Chapter06 └── Chapter06.py ├── Chapter07 ├── Chapter07.py ├── README.md ├── nlp.jpg └── requirements.txt ├── Chapter08 ├── Chapter08.py ├── Images │ └── covid19.jpeg └── covid1.jpg ├── Chapter09 └── Chapter09.py ├── Chapter10 ├── Chapter10.py └── Covid19_CNN_Classifier.h5 ├── Chapter11 └── requirements.txt ├── Chapter12 ├── chapter12.py ├── example.docx ├── example.pdf └── example.txt ├── Chapter13 ├── Chapter13.py └── login.png ├── Chapter14 ├── Chapter14-1.py └── Multipages │ ├── 01_page1.py │ ├── 03_new_feature.py │ ├── app.py │ └── page2.py ├── Chapter15 ├── Chapter15-forms.py └── Chapter15-session_state.py └── README.md /Chapter03/Chapter03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter03/Chapter03.py -------------------------------------------------------------------------------- /Chapter03/SampleVideo_1280x720_1mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter03/SampleVideo_1280x720_1mb.mp4 -------------------------------------------------------------------------------- /Chapter03/auto.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter03/auto.csv -------------------------------------------------------------------------------- /Chapter03/packt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter03/packt.jpeg -------------------------------------------------------------------------------- /Chapter03/sample1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter03/sample1.mp3 -------------------------------------------------------------------------------- /Chapter04/Chapter04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter04/Chapter04.py -------------------------------------------------------------------------------- /Chapter05/Chapter05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter05/Chapter05.py -------------------------------------------------------------------------------- /Chapter05/nlp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter05/nlp.jpg -------------------------------------------------------------------------------- /Chapter06/Chapter06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter06/Chapter06.py -------------------------------------------------------------------------------- /Chapter07/Chapter07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter07/Chapter07.py -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter07/nlp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter07/nlp.jpg -------------------------------------------------------------------------------- /Chapter07/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter07/requirements.txt -------------------------------------------------------------------------------- /Chapter08/Chapter08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter08/Chapter08.py -------------------------------------------------------------------------------- /Chapter08/Images/covid19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter08/Images/covid19.jpeg -------------------------------------------------------------------------------- /Chapter08/covid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter08/covid1.jpg -------------------------------------------------------------------------------- /Chapter09/Chapter09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter09/Chapter09.py -------------------------------------------------------------------------------- /Chapter10/Chapter10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter10/Chapter10.py -------------------------------------------------------------------------------- /Chapter10/Covid19_CNN_Classifier.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter10/Covid19_CNN_Classifier.h5 -------------------------------------------------------------------------------- /Chapter11/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter11/requirements.txt -------------------------------------------------------------------------------- /Chapter12/chapter12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter12/chapter12.py -------------------------------------------------------------------------------- /Chapter12/example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter12/example.docx -------------------------------------------------------------------------------- /Chapter12/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter12/example.pdf -------------------------------------------------------------------------------- /Chapter12/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter12/example.txt -------------------------------------------------------------------------------- /Chapter13/Chapter13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter13/Chapter13.py -------------------------------------------------------------------------------- /Chapter13/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter13/login.png -------------------------------------------------------------------------------- /Chapter14/Chapter14-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter14/Chapter14-1.py -------------------------------------------------------------------------------- /Chapter14/Multipages/01_page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter14/Multipages/01_page1.py -------------------------------------------------------------------------------- /Chapter14/Multipages/03_new_feature.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | 3 | st.subheader("New Feature") -------------------------------------------------------------------------------- /Chapter14/Multipages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter14/Multipages/app.py -------------------------------------------------------------------------------- /Chapter14/Multipages/page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter14/Multipages/page2.py -------------------------------------------------------------------------------- /Chapter15/Chapter15-forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter15/Chapter15-forms.py -------------------------------------------------------------------------------- /Chapter15/Chapter15-session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/Chapter15/Chapter15-session_state.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Web-App-Development-Made-Simple-with-Streamlit/HEAD/README.md --------------------------------------------------------------------------------