Spaces:
Sleeping
Sleeping
Arts-of-coding
commited on
Commit
•
393bc94
1
Parent(s):
34849bb
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,13 @@
|
|
1 |
import dash
|
2 |
-
from dash import
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
-
app = Dash(__name__, use_pages=True)
|
5 |
|
6 |
app.layout = html.Div([
|
7 |
html.H1('Multi-page app with Dash Pages'),
|
@@ -14,4 +20,4 @@ app.layout = html.Div([
|
|
14 |
])
|
15 |
|
16 |
if __name__ == '__main__':
|
17 |
-
app.run(debug=
|
|
|
1 |
import dash
|
2 |
+
from dash import dcc, html, Output, Input
|
3 |
+
import plotly.express as px
|
4 |
+
import dash_callback_chain
|
5 |
+
import yaml
|
6 |
+
import polars as pl
|
7 |
+
import os
|
8 |
+
pl.enable_string_cache(False)
|
9 |
|
10 |
+
app = dash.Dash(__name__, use_pages=True)
|
11 |
|
12 |
app.layout = html.Div([
|
13 |
html.H1('Multi-page app with Dash Pages'),
|
|
|
20 |
])
|
21 |
|
22 |
if __name__ == '__main__':
|
23 |
+
app.run(debug=False, use_reloader=False, host='0.0.0.0', port=5000)
|