Update app.py
Browse files
app.py
CHANGED
|
@@ -5,15 +5,6 @@ import dash_core_components as dcc
|
|
| 5 |
import dash_html_components as html
|
| 6 |
from dash.dependencies import Input, Output
|
| 7 |
|
| 8 |
-
modifiedStylesheetValue= [
|
| 9 |
-
{
|
| 10 |
-
'href': 'https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css',
|
| 11 |
-
'rel': 'stylesheet',
|
| 12 |
-
'integrity': 'sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh',
|
| 13 |
-
'crossorigin': 'anonymous'
|
| 14 |
-
}
|
| 15 |
-
]
|
| 16 |
-
|
| 17 |
csvFileCovidDataset = pd.read_csv('diseaseOutbreakData.csv')
|
| 18 |
indianStatesFocus=pd.read_csv('uniqueDataCity.csv')
|
| 19 |
|
|
@@ -59,7 +50,7 @@ indianStatesValue=[
|
|
| 59 |
|
| 60 |
|
| 61 |
|
| 62 |
-
app = dash.Dash(__name__
|
| 63 |
|
| 64 |
app.layout=html.Div([
|
| 65 |
html.Div([
|
|
@@ -218,4 +209,4 @@ def update_graph(type2):
|
|
| 218 |
return generatedDrawing
|
| 219 |
|
| 220 |
if __name__ == '__main__':
|
| 221 |
-
app.run_server(debug=
|
|
|
|
| 5 |
import dash_html_components as html
|
| 6 |
from dash.dependencies import Input, Output
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
csvFileCovidDataset = pd.read_csv('diseaseOutbreakData.csv')
|
| 9 |
indianStatesFocus=pd.read_csv('uniqueDataCity.csv')
|
| 10 |
|
|
|
|
| 50 |
|
| 51 |
|
| 52 |
|
| 53 |
+
app = dash.Dash(__name__)
|
| 54 |
|
| 55 |
app.layout=html.Div([
|
| 56 |
html.Div([
|
|
|
|
| 209 |
return generatedDrawing
|
| 210 |
|
| 211 |
if __name__ == '__main__':
|
| 212 |
+
app.run_server(host= 0.0.0.0, debug=False)
|