-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverTest.py
30 lines (29 loc) · 1.06 KB
/
serverTest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding: utf-8
# Developer: Deiner Zapata Silva.
# Date: 19/11/2018
# Description: Server to show everything to received.
#########################################################################################
import sys, requests
from datetime import datetime, timedelta
from flask import Flask, request, abort
#######################################################################################
app = Flask(__name__)
#######################################################################################
@app.route('/', methods=['GET','POST'])
def webhook():
print("DEF webhook()-> "+ str(sys.stdout.flush()) )
#print( request.data )
if request.method == 'GET':
print("GET->")
print(request.data)
return '', 200
if request.method == 'POST':
print("POST->")
print(request.data)
#print(request.json)
return '', 200
else:
abort(400)
#######################################################################################
if __name__ == '__main__':
app.run(host="172.30.0.35",port=8080)