From f8a3afd05fc682d28c6583512009ff4b62d94a8a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 12 Jun 2011 14:47:49 -0400 Subject: [PATCH] arch --- httpbin/__init__.py | 0 httpbin/core.py | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 httpbin/__init__.py create mode 100644 httpbin/core.py diff --git a/httpbin/__init__.py b/httpbin/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/httpbin/core.py b/httpbin/core.py new file mode 100644 index 0000000..702787b --- /dev/null +++ b/httpbin/core.py @@ -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() \ No newline at end of file