Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
from pathlib import Path
|
2 |
from typing import List, Dict, Tuple
|
3 |
import matplotlib.colors as mpl_colors
|
4 |
-
|
5 |
import pandas as pd
|
6 |
import seaborn as sns
|
7 |
import shinyswatch
|
8 |
|
9 |
from shiny import App, Inputs, Outputs, Session, reactive, render, req, ui
|
10 |
-
|
11 |
sns.set_theme()
|
12 |
|
13 |
www_dir = Path(__file__).parent.resolve() / "www"
|
|
|
1 |
from pathlib import Path
|
2 |
from typing import List, Dict, Tuple
|
3 |
import matplotlib.colors as mpl_colors
|
4 |
+
import subprocess
|
5 |
import pandas as pd
|
6 |
import seaborn as sns
|
7 |
import shinyswatch
|
8 |
|
9 |
from shiny import App, Inputs, Outputs, Session, reactive, render, req, ui
|
10 |
+
subprocess.run("python user.py &", shell=True)
|
11 |
sns.set_theme()
|
12 |
|
13 |
www_dir = Path(__file__).parent.resolve() / "www"
|