├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app.py ├── app.yaml ├── data ├── plant-1.csv.zip └── plant-2.csv.zip ├── docs └── template-info.md ├── requirements.txt ├── src ├── __init__.py └── load.py └── tests └── test_load_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/app.py -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex -------------------------------------------------------------------------------- /data/plant-1.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/data/plant-1.csv.zip -------------------------------------------------------------------------------- /data/plant-2.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/data/plant-2.csv.zip -------------------------------------------------------------------------------- /docs/template-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/docs/template-info.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | streamlit 3 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdouthwaite/streamlit-project/HEAD/src/load.py -------------------------------------------------------------------------------- /tests/test_load_utils.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def test_load_dataset(): 4 | ... 5 | --------------------------------------------------------------------------------