Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
C2MV
/
Biotech2
like
1
Running
on
Zero
App
Files
Files
Community
9d0c2b1
Biotech2
/
app.py
C2MV
Update app.py
d3f3543
verified
3 months ago
raw
Copy download link
history
blame
Safe
197 Bytes
# 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()