C2MV commited on
Commit
11e9b5d
1 Parent(s): 5fb28ed

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
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()