forked from pythonhealthdatascience/stars-streamlit-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.67 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>STARS: Stlite deployment of simpy</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@stlite/mountable@0.69.2/build/stlite.css"
/>
</head>
<body>
<div id="root"></div>
<script src="https://cdn.jsdelivr.net/npm/@stlite/mountable@0.69.2/build/stlite.js"></script>
<script>
stlite.mount(
{
requirements: ["simpy", "pandas", "numpy", "plotly", "asyncio", "treat-sim==2.1.0"],
entrypoint: "Overview.py",
files: {
"Overview.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/Overview.py"
},
"pages/0_🎱_Interactive_Simulation.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/0_🎱_Interactive_Simulation.py"
},
"pages/1_💾_Preset_Experiments.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/1_💾_Preset_Experiments.py"
},
"pages/2_🔗_Upload.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/2_🔗_Upload.py"
},
"pages/3_💫_About.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/3_💫_About.py"
},
"pages/4_📖_Citation.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/4_📖_Citation.py"
},
"pages/5_🪪_License.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/5_🪪_License.py"
},
"pages/6_🔧_Resources.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/6_🔧_Resources.py"
},
"pages/7_🗒️_Change_Log.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/pages/7_🗒️_Change_Log.py"
},
"model.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/model.py"
},
"more_plot.py": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/more_plot.py"
},
"img/nihr.png": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/img/nihr.png"
},
"img/process_flow_img.png": {
url: "https://raw.githubusercontent.com/pythonhealthdatascience/stars-stlite-example/main/img/process_flow_img.png"
}
},
},
document.getElementById("root")
);
</script>
</body>
</html>