Skip to content

Instantly share code, notes, and snippets.

@zoni
Last active March 7, 2019 00:04
Show Gist options
  • Save zoni/6164386 to your computer and use it in GitHub Desktop.
Save zoni/6164386 to your computer and use it in GitHub Desktop.
Example Python WSGI app which displays the hostname of the system it runs on when accessing /hostname
import socket
from flask import Flask, request
app = Flask(__name__)
@app.route("/hostname/")
def return_hostname():
return "This is an example wsgi app served from {} to {}".format(socket.gethostname(), request.remote_addr)
if __name__ == "__main__":
app.run(host='0.0.0.0')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment