This commit is contained in:
Kenneth Reitz
2011-06-12 14:47:49 -04:00
parent 3cadb17e81
commit f8a3afd05f
2 changed files with 20 additions and 0 deletions
View File
+20
View File
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
"""
httpbin.core
~~~~~~~~~~~~
This module provides the core HttpBin experience.
"""
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()