1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-21 17:22:29 +00:00
gists/Flask server that returns GET parameters and values /server.py

16 lines
320 B
Python
Raw Normal View History

2015-02-25 20:37:47 +00:00
#!/usr/bin/python
from flask import Flask, request, Markup
app = Flask("prueba")
@app.route("/")
def home():
args = ("<pre>")
for i in request.args:
a = request.args[i]
args += u"{} [{}]: {}\n".format(i, Markup.escape(str(type(a))), a)
args += "</pre>"
return args
app.run(debug=True)