├── .DS_Store ├── Chapter01 ├── clt_app │ ├── clt_demo.py │ ├── example.py │ └── hello_world.py └── plotting_app │ └── plot_demo.py ├── Chapter02 └── penguin_app │ ├── penguins.csv │ ├── penguins.py │ └── requirements.txt ├── Chapter03 └── trees_app │ ├── .streamlit │ └── config.toml │ ├── trees.csv │ └── trees.py ├── Chapter04 └── penguin_ml │ ├── feature_importance.png │ ├── output_penguin.pickle │ ├── penguins.csv │ ├── penguins_ml.py │ ├── penguins_streamlit.py │ ├── random_forest_penguin.pickle │ └── requirements.txt ├── Chapter05 └── penguin_ml │ ├── feature_importance.png │ ├── output_penguin.pickle │ ├── penguins.csv │ ├── penguins_ml.py │ ├── penguins_streamlit.py │ ├── random_forest_penguin.pickle │ └── requirements.txt ├── Chapter06 └── pretty_trees │ ├── pretty_trees.py │ └── trees.csv ├── Chapter07 └── components_example │ ├── gist_example.py │ ├── penguin_animated.py │ ├── penguins.csv │ ├── tree_animated.py │ └── trees.csv ├── Chapter08 └── penguin_ml │ ├── feature_importance.png │ ├── output_penguin.pickle │ ├── penguins.csv │ ├── penguins_ml.py │ ├── penguins_streamlit.py │ ├── random_forest_penguin.pickle │ └── requirements.txt ├── Chapter09 └── job_application_example │ ├── Screen Shot 2020-11-30 at 1.48.16 PM.png │ ├── airport_location.csv │ ├── haversine.png │ ├── job_problems.md │ └── job_streamlit.py ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/.DS_Store -------------------------------------------------------------------------------- /Chapter01/clt_app/clt_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter01/clt_app/clt_demo.py -------------------------------------------------------------------------------- /Chapter01/clt_app/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter01/clt_app/example.py -------------------------------------------------------------------------------- /Chapter01/clt_app/hello_world.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | 3 | st.write('Hello World') -------------------------------------------------------------------------------- /Chapter01/plotting_app/plot_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter01/plotting_app/plot_demo.py -------------------------------------------------------------------------------- /Chapter02/penguin_app/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter02/penguin_app/penguins.csv -------------------------------------------------------------------------------- /Chapter02/penguin_app/penguins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter02/penguin_app/penguins.py -------------------------------------------------------------------------------- /Chapter02/penguin_app/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/trees_app/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter03/trees_app/.streamlit/config.toml -------------------------------------------------------------------------------- /Chapter03/trees_app/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter03/trees_app/trees.csv -------------------------------------------------------------------------------- /Chapter03/trees_app/trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter03/trees_app/trees.py -------------------------------------------------------------------------------- /Chapter04/penguin_ml/feature_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/feature_importance.png -------------------------------------------------------------------------------- /Chapter04/penguin_ml/output_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/output_penguin.pickle -------------------------------------------------------------------------------- /Chapter04/penguin_ml/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/penguins.csv -------------------------------------------------------------------------------- /Chapter04/penguin_ml/penguins_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/penguins_ml.py -------------------------------------------------------------------------------- /Chapter04/penguin_ml/penguins_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/penguins_streamlit.py -------------------------------------------------------------------------------- /Chapter04/penguin_ml/random_forest_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/random_forest_penguin.pickle -------------------------------------------------------------------------------- /Chapter04/penguin_ml/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter04/penguin_ml/requirements.txt -------------------------------------------------------------------------------- /Chapter05/penguin_ml/feature_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/feature_importance.png -------------------------------------------------------------------------------- /Chapter05/penguin_ml/output_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/output_penguin.pickle -------------------------------------------------------------------------------- /Chapter05/penguin_ml/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/penguins.csv -------------------------------------------------------------------------------- /Chapter05/penguin_ml/penguins_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/penguins_ml.py -------------------------------------------------------------------------------- /Chapter05/penguin_ml/penguins_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/penguins_streamlit.py -------------------------------------------------------------------------------- /Chapter05/penguin_ml/random_forest_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/random_forest_penguin.pickle -------------------------------------------------------------------------------- /Chapter05/penguin_ml/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter05/penguin_ml/requirements.txt -------------------------------------------------------------------------------- /Chapter06/pretty_trees/pretty_trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter06/pretty_trees/pretty_trees.py -------------------------------------------------------------------------------- /Chapter06/pretty_trees/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter06/pretty_trees/trees.csv -------------------------------------------------------------------------------- /Chapter07/components_example/gist_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter07/components_example/gist_example.py -------------------------------------------------------------------------------- /Chapter07/components_example/penguin_animated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter07/components_example/penguin_animated.py -------------------------------------------------------------------------------- /Chapter07/components_example/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter07/components_example/penguins.csv -------------------------------------------------------------------------------- /Chapter07/components_example/tree_animated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter07/components_example/tree_animated.py -------------------------------------------------------------------------------- /Chapter07/components_example/trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter07/components_example/trees.csv -------------------------------------------------------------------------------- /Chapter08/penguin_ml/feature_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/feature_importance.png -------------------------------------------------------------------------------- /Chapter08/penguin_ml/output_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/output_penguin.pickle -------------------------------------------------------------------------------- /Chapter08/penguin_ml/penguins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/penguins.csv -------------------------------------------------------------------------------- /Chapter08/penguin_ml/penguins_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/penguins_ml.py -------------------------------------------------------------------------------- /Chapter08/penguin_ml/penguins_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/penguins_streamlit.py -------------------------------------------------------------------------------- /Chapter08/penguin_ml/random_forest_penguin.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/random_forest_penguin.pickle -------------------------------------------------------------------------------- /Chapter08/penguin_ml/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter08/penguin_ml/requirements.txt -------------------------------------------------------------------------------- /Chapter09/job_application_example/Screen Shot 2020-11-30 at 1.48.16 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter09/job_application_example/Screen Shot 2020-11-30 at 1.48.16 PM.png -------------------------------------------------------------------------------- /Chapter09/job_application_example/airport_location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter09/job_application_example/airport_location.csv -------------------------------------------------------------------------------- /Chapter09/job_application_example/haversine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter09/job_application_example/haversine.png -------------------------------------------------------------------------------- /Chapter09/job_application_example/job_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter09/job_application_example/job_problems.md -------------------------------------------------------------------------------- /Chapter09/job_application_example/job_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/Chapter09/job_application_example/job_streamlit.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Getting-started-with-Streamlit-for-Data-Science/HEAD/README.md --------------------------------------------------------------------------------