====== checking the ip ====== * main.py def hello_world(request): """Responds to any HTTP request. Args: request (flask.Request): HTTP request object. Returns: The response text or any set of values that can be turned into a Response object using `make_response http://flask.pocoo.org/docs/1.0/api/#flask.Flask.make_response`. """ import requests r = requests.get('https://10.142.0.25:8443') request_json = request.get_json() if request.args and 'message' in request.args: return request.args.get('message') elif request_json and 'message' in request_json: return request_json['message'] else: #return f"