├── .gitignore ├── README.md ├── multi_page_basics ├── app.py ├── app_dbc.py ├── app_ddk.py ├── assets │ ├── app.jpeg │ ├── birds.jpeg │ ├── home.jpeg │ └── logo.jpeg └── pages │ ├── __init__.py │ ├── historical_archive.py │ ├── not_found_404.py │ ├── outlook.py │ ├── path_variables.py │ ├── query_string.py │ ├── redirect.py │ └── snapshot.py ├── multi_page_basics_pathname_prefix ├── app.py ├── assets │ ├── app.jpeg │ ├── birds.jpeg │ ├── home.jpeg │ └── logo.jpeg └── pages │ ├── __init__.py │ ├── historical_archive.py │ ├── not_found_404.py │ ├── outlook.py │ ├── path_variables.py │ ├── query_string.py │ └── redirect.py ├── multi_page_cache_background_callback ├── app.py └── pages │ ├── example_1.py │ ├── example_2.py │ └── example_3.py ├── multi_page_dash_auth ├── app.py └── pages │ ├── __init__.py │ ├── bar_charts.py │ ├── heatmaps.py │ ├── histograms.py │ └── not_found_404.py ├── multi_page_example1 ├── app.py └── pages │ ├── __init__.py │ ├── bar_charts.py │ ├── heatmaps.py │ ├── histograms.py │ └── not_found_404.py ├── multi_page_flask_login ├── .env ├── app.py └── pages │ ├── home.py │ ├── login.py │ ├── logout.py │ ├── page-1.py │ └── page-2.py ├── multi_page_flask_login2 ├── .env ├── app.py ├── pages │ ├── home.py │ ├── login.py │ ├── logout.py │ ├── page-1.py │ └── page-2.py └── utils │ └── login_handler.py ├── multi_page_layout_functions ├── app.py └── pages │ ├── about.py │ ├── home.py │ ├── side_bar.py │ ├── topic_1.py │ ├── topic_2.py │ └── topic_3.py ├── multi_page_meta_tags ├── app.py ├── app_dbc.py ├── assets │ ├── app.jpeg │ ├── birdhouse.jpeg │ ├── birds.jpeg │ └── logo.jpeg └── pages │ ├── __init__.py │ ├── a_page.py │ ├── birds.py │ └── home.py ├── multi_page_nested_folders ├── app.py └── pages │ ├── __init__.py │ ├── chapter1 │ ├── bar-charts.py │ └── pie-chart.py │ ├── chapter2 │ ├── heatmaps.py │ └── histograms.py │ └── home.py ├── multi_page_no_pages_folder └── app.py ├── multi_page_path_variables ├── app.py └── pages │ ├── about.py │ ├── home.py │ ├── side_bar.py │ ├── topic_1.py │ ├── topic_2.py │ └── topic_3.py ├── multi_page_query_strings ├── app.py └── pages │ ├── bar_chart.py │ ├── home.py │ └── not_found_404.py ├── multi_page_store ├── app.py └── pages │ ├── __init__.py │ ├── graph.py │ └── grid.py ├── multi_page_sync_components ├── app.py └── pages │ ├── page1.py │ ├── page2.py │ └── page3.py ├── multi_page_sync_components2 ├── app.py └── pages │ ├── page1.py │ ├── page2.py │ └── page3.py ├── multi_page_table_links ├── app.py ├── assets │ └── dashAgGridComponentFunctions.js └── pages │ ├── not_found_404.py │ ├── portfolio.py │ └── stocks.py ├── multi_page_theme_switch ├── app.py └── pages │ ├── bar_charts.py │ ├── default_fig.py │ ├── heatmaps.py │ ├── histograms.py │ └── not_found_404.py ├── multi_page_update_url_from_figure ├── app.py └── pages │ ├── airports.py │ ├── flight_status.py │ └── not_found_404.py ├── multi_page_update_url_from_figure_V292 ├── app.py └── pages │ ├── flight_status.py │ └── home.py ├── multi_page_update_url_in_callback ├── app.py └── pages │ ├── home.py │ ├── not_found_404.py │ └── stocks.py ├── multi_page_update_url_in_callback_V292 ├── app.py └── pages │ ├── home.py │ ├── not_found_404.py │ └── stocks.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/README.md -------------------------------------------------------------------------------- /multi_page_basics/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/app.py -------------------------------------------------------------------------------- /multi_page_basics/app_dbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/app_dbc.py -------------------------------------------------------------------------------- /multi_page_basics/app_ddk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/app_ddk.py -------------------------------------------------------------------------------- /multi_page_basics/assets/app.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/assets/app.jpeg -------------------------------------------------------------------------------- /multi_page_basics/assets/birds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/assets/birds.jpeg -------------------------------------------------------------------------------- /multi_page_basics/assets/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/assets/home.jpeg -------------------------------------------------------------------------------- /multi_page_basics/assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/assets/logo.jpeg -------------------------------------------------------------------------------- /multi_page_basics/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics/pages/historical_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/historical_archive.py -------------------------------------------------------------------------------- /multi_page_basics/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_basics/pages/outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/outlook.py -------------------------------------------------------------------------------- /multi_page_basics/pages/path_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/path_variables.py -------------------------------------------------------------------------------- /multi_page_basics/pages/query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/query_string.py -------------------------------------------------------------------------------- /multi_page_basics/pages/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/redirect.py -------------------------------------------------------------------------------- /multi_page_basics/pages/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics/pages/snapshot.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/app.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/assets/app.jpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/assets/birds.jpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/assets/home.jpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/assets/logo.jpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/historical_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/historical_archive.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/outlook.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/path_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/path_variables.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/query_string.py -------------------------------------------------------------------------------- /multi_page_basics_pathname_prefix/pages/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_basics_pathname_prefix/pages/redirect.py -------------------------------------------------------------------------------- /multi_page_cache_background_callback/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_cache_background_callback/app.py -------------------------------------------------------------------------------- /multi_page_cache_background_callback/pages/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_cache_background_callback/pages/example_1.py -------------------------------------------------------------------------------- /multi_page_cache_background_callback/pages/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_cache_background_callback/pages/example_2.py -------------------------------------------------------------------------------- /multi_page_cache_background_callback/pages/example_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_cache_background_callback/pages/example_3.py -------------------------------------------------------------------------------- /multi_page_dash_auth/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_dash_auth/app.py -------------------------------------------------------------------------------- /multi_page_dash_auth/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_dash_auth/pages/bar_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_dash_auth/pages/bar_charts.py -------------------------------------------------------------------------------- /multi_page_dash_auth/pages/heatmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_dash_auth/pages/heatmaps.py -------------------------------------------------------------------------------- /multi_page_dash_auth/pages/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_dash_auth/pages/histograms.py -------------------------------------------------------------------------------- /multi_page_dash_auth/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_dash_auth/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_example1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_example1/app.py -------------------------------------------------------------------------------- /multi_page_example1/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_example1/pages/bar_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_example1/pages/bar_charts.py -------------------------------------------------------------------------------- /multi_page_example1/pages/heatmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_example1/pages/heatmaps.py -------------------------------------------------------------------------------- /multi_page_example1/pages/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_example1/pages/histograms.py -------------------------------------------------------------------------------- /multi_page_example1/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_example1/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_flask_login/.env: -------------------------------------------------------------------------------- 1 | SECRET_KEY=291a47103f3cd8fc26d05ffc7b31e33f73ca3d459d6259bd -------------------------------------------------------------------------------- /multi_page_flask_login/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/app.py -------------------------------------------------------------------------------- /multi_page_flask_login/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/pages/home.py -------------------------------------------------------------------------------- /multi_page_flask_login/pages/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/pages/login.py -------------------------------------------------------------------------------- /multi_page_flask_login/pages/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/pages/logout.py -------------------------------------------------------------------------------- /multi_page_flask_login/pages/page-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/pages/page-1.py -------------------------------------------------------------------------------- /multi_page_flask_login/pages/page-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login/pages/page-2.py -------------------------------------------------------------------------------- /multi_page_flask_login2/.env: -------------------------------------------------------------------------------- 1 | SECRET_KEY=291a47103f3cd8fc26d05ffc7b31e33f73ca3d459d6259bd -------------------------------------------------------------------------------- /multi_page_flask_login2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/app.py -------------------------------------------------------------------------------- /multi_page_flask_login2/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/pages/home.py -------------------------------------------------------------------------------- /multi_page_flask_login2/pages/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/pages/login.py -------------------------------------------------------------------------------- /multi_page_flask_login2/pages/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/pages/logout.py -------------------------------------------------------------------------------- /multi_page_flask_login2/pages/page-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/pages/page-1.py -------------------------------------------------------------------------------- /multi_page_flask_login2/pages/page-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/pages/page-2.py -------------------------------------------------------------------------------- /multi_page_flask_login2/utils/login_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_flask_login2/utils/login_handler.py -------------------------------------------------------------------------------- /multi_page_layout_functions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/app.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/about.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/home.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/side_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/side_bar.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/topic_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/topic_1.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/topic_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/topic_2.py -------------------------------------------------------------------------------- /multi_page_layout_functions/pages/topic_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_layout_functions/pages/topic_3.py -------------------------------------------------------------------------------- /multi_page_meta_tags/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/app.py -------------------------------------------------------------------------------- /multi_page_meta_tags/app_dbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/app_dbc.py -------------------------------------------------------------------------------- /multi_page_meta_tags/assets/app.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/assets/app.jpeg -------------------------------------------------------------------------------- /multi_page_meta_tags/assets/birdhouse.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/assets/birdhouse.jpeg -------------------------------------------------------------------------------- /multi_page_meta_tags/assets/birds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/assets/birds.jpeg -------------------------------------------------------------------------------- /multi_page_meta_tags/assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/assets/logo.jpeg -------------------------------------------------------------------------------- /multi_page_meta_tags/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_meta_tags/pages/a_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/pages/a_page.py -------------------------------------------------------------------------------- /multi_page_meta_tags/pages/birds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/pages/birds.py -------------------------------------------------------------------------------- /multi_page_meta_tags/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_meta_tags/pages/home.py -------------------------------------------------------------------------------- /multi_page_nested_folders/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/app.py -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/chapter1/bar-charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/pages/chapter1/bar-charts.py -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/chapter1/pie-chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/pages/chapter1/pie-chart.py -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/chapter2/heatmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/pages/chapter2/heatmaps.py -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/chapter2/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/pages/chapter2/histograms.py -------------------------------------------------------------------------------- /multi_page_nested_folders/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_nested_folders/pages/home.py -------------------------------------------------------------------------------- /multi_page_no_pages_folder/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_no_pages_folder/app.py -------------------------------------------------------------------------------- /multi_page_path_variables/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/app.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/about.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/home.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/side_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/side_bar.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/topic_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/topic_1.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/topic_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/topic_2.py -------------------------------------------------------------------------------- /multi_page_path_variables/pages/topic_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_path_variables/pages/topic_3.py -------------------------------------------------------------------------------- /multi_page_query_strings/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_query_strings/app.py -------------------------------------------------------------------------------- /multi_page_query_strings/pages/bar_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_query_strings/pages/bar_chart.py -------------------------------------------------------------------------------- /multi_page_query_strings/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_query_strings/pages/home.py -------------------------------------------------------------------------------- /multi_page_query_strings/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_query_strings/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_store/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_store/app.py -------------------------------------------------------------------------------- /multi_page_store/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multi_page_store/pages/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_store/pages/graph.py -------------------------------------------------------------------------------- /multi_page_store/pages/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_store/pages/grid.py -------------------------------------------------------------------------------- /multi_page_sync_components/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components/app.py -------------------------------------------------------------------------------- /multi_page_sync_components/pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components/pages/page1.py -------------------------------------------------------------------------------- /multi_page_sync_components/pages/page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components/pages/page2.py -------------------------------------------------------------------------------- /multi_page_sync_components/pages/page3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components/pages/page3.py -------------------------------------------------------------------------------- /multi_page_sync_components2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components2/app.py -------------------------------------------------------------------------------- /multi_page_sync_components2/pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components2/pages/page1.py -------------------------------------------------------------------------------- /multi_page_sync_components2/pages/page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components2/pages/page2.py -------------------------------------------------------------------------------- /multi_page_sync_components2/pages/page3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_sync_components2/pages/page3.py -------------------------------------------------------------------------------- /multi_page_table_links/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_table_links/app.py -------------------------------------------------------------------------------- /multi_page_table_links/assets/dashAgGridComponentFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_table_links/assets/dashAgGridComponentFunctions.js -------------------------------------------------------------------------------- /multi_page_table_links/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_table_links/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_table_links/pages/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_table_links/pages/portfolio.py -------------------------------------------------------------------------------- /multi_page_table_links/pages/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_table_links/pages/stocks.py -------------------------------------------------------------------------------- /multi_page_theme_switch/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/app.py -------------------------------------------------------------------------------- /multi_page_theme_switch/pages/bar_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/pages/bar_charts.py -------------------------------------------------------------------------------- /multi_page_theme_switch/pages/default_fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/pages/default_fig.py -------------------------------------------------------------------------------- /multi_page_theme_switch/pages/heatmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/pages/heatmaps.py -------------------------------------------------------------------------------- /multi_page_theme_switch/pages/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/pages/histograms.py -------------------------------------------------------------------------------- /multi_page_theme_switch/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_theme_switch/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure/app.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure/pages/airports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure/pages/airports.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure/pages/flight_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure/pages/flight_status.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure_V292/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure_V292/app.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure_V292/pages/flight_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure_V292/pages/flight_status.py -------------------------------------------------------------------------------- /multi_page_update_url_from_figure_V292/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_from_figure_V292/pages/home.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback/app.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback/pages/home.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback/pages/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback/pages/stocks.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback_V292/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback_V292/app.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback_V292/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback_V292/pages/home.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback_V292/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback_V292/pages/not_found_404.py -------------------------------------------------------------------------------- /multi_page_update_url_in_callback_V292/pages/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/multi_page_update_url_in_callback_V292/pages/stocks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-multi-page-app-demos/HEAD/requirements.txt --------------------------------------------------------------------------------