├── .idea ├── .gitignore ├── 08-Sales Dashboard in Python by Plotly Dash 3.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── README.md ├── assets ├── corona-logo-1.jpg ├── s1.css └── style.css └── index.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/08-Sales Dashboard in Python by Plotly Dash 3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/.idea/08-Sales Dashboard in Python by Plotly Dash 3.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/README.md -------------------------------------------------------------------------------- /assets/corona-logo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/assets/corona-logo-1.jpg -------------------------------------------------------------------------------- /assets/s1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/assets/s1.css -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/assets/style.css -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mubeen31/Covid-19-Dashboard-in-Python-by-Plotly-Dash/HEAD/index.py --------------------------------------------------------------------------------