Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# app.py
|
2 |
+
|
3 |
+
from interface import generate_analysis, process_and_plot
|
4 |
+
from UI import create_interface
|
5 |
+
|
6 |
+
def main():
|
7 |
+
demo = create_interface(process_and_plot)
|
8 |
+
demo.launch()
|
9 |
+
|
10 |
+
if __name__ == "__main__":
|
11 |
+
main()
|