File size: 197 Bytes
11e9b5d
 
 
d3f3543
11e9b5d
 
d3f3543
11e9b5d
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# app.py

from UI import create_interface
from interface import process_and_plot

def main():
    demo = create_interface(process_and_plot)
    demo.launch()

if __name__ == "__main__":
    main()