Skip to content

Instantly share code, notes, and snippets.

@DasIch
Created May 1, 2013 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DasIch/5492983 to your computer and use it in GitHub Desktop.
Save DasIch/5492983 to your computer and use it in GitHub Desktop.
from flask import Flask, request
app = Flask(__name__)
@app.route("/")
def index():
return "<br>".join("%s = %r" % item for item in request.args.items())
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment