├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── streamlit_app.py /.gitignore: -------------------------------------------------------------------------------- 1 | .streamlit 2 | 3 | .envrc 4 | .direnv/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-bug-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-bug-report/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | google_api_python_client 3 | streamlit==1.13.0 4 | -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/example-app-bug-report/HEAD/streamlit_app.py --------------------------------------------------------------------------------