markpeace commited on
Commit
e9107c4
·
1 Parent(s): e40dba1
Files changed (2) hide show
  1. __pycache__/app.cpython-39.pyc +0 -0
  2. app.py +7 -7
__pycache__/app.cpython-39.pyc ADDED
Binary file (399 Bytes). View file
 
app.py CHANGED
@@ -1,11 +1,11 @@
1
- # app.py
2
- from flask import Flask
3
 
 
 
 
4
  app = Flask(__name__)
5
 
6
- @app.route("/")
7
- def hello_worlds():
8
- return "hello d,, world!"
9
 
10
- #if __name__ == '__main__':
11
- # app.run(debug=True, host='0.0.0.0')
 
 
1
+ #import json
 
2
 
3
+ from flask import Flask,request
4
+
5
+ # Initializing flask app
6
  app = Flask(__name__)
7
 
 
 
 
8
 
9
+ @app.route('/', methods=['GET','POST'])
10
+ def index():
11
+ return {"response":"just some junk response"}