adilsaleem commited on
Commit
f3d2a53
1 Parent(s): 669fbe4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from flask import Flask
3
+
4
+ app = Flask(__name__)
5
+
6
+ @app.route('/')
7
+ def hello_world():
8
+ return 'Hello World'
9
+
10
+ if __name__ == '__main__':
11
+ app.run(host='0.0.0.0',port=7680)