
| Current Path : /var/www/web-klick.de/dsh/hereapi3/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/web-klick.de/dsh/hereapi3/app.py |
from flask import Flask
from flask import request
app = Flask(__name__)
@app.route("/dummy",methods=["POST","GET"])
def dummy():
return(200,"OK")
@app.route("/test1",methods=["POST","GET"])
def test1 ():
print("here is teststub 333")
print("hallo")
return("333","Teststub")
if __name__ == "__main__":
app.run(host='0.0.0.0')