├── .gitignore ├── Pipfile ├── README.md ├── data_sources ├── __init__.py ├── aws_s3_boto.py ├── big_query.py ├── google_sheet.py ├── snowflake.py └── supabase.py ├── streamlit_app.py └── utils ├── __init__.py ├── intro.py └── ui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/README.md -------------------------------------------------------------------------------- /data_sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_sources/aws_s3_boto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/data_sources/aws_s3_boto.py -------------------------------------------------------------------------------- /data_sources/big_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/data_sources/big_query.py -------------------------------------------------------------------------------- /data_sources/google_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/data_sources/google_sheet.py -------------------------------------------------------------------------------- /data_sources/snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/data_sources/snowflake.py -------------------------------------------------------------------------------- /data_sources/supabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/data_sources/supabase.py -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/streamlit_app.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/utils/intro.py -------------------------------------------------------------------------------- /utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/data_sources_app/HEAD/utils/ui.py --------------------------------------------------------------------------------