Abduuu commited on
Commit
8bb14ba
1 Parent(s): e022e50

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def tempConversion(Cel):
4
+ F = Cel * (9/5) + 32
5
+ return F
6
+
7
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+ demo.launch()