diff --git a/website/index.html b/website/index.html new file mode 100755 index 00000000..220b10ef --- /dev/null +++ b/website/index.html @@ -0,0 +1,56 @@ + +Flask (A Python Microframework) + +
+

Flask

+

because sometimes a pocket knife is not enough +

+ Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. + And before you ask: It's BSD licensed! +
+

Flask is Fun

+
from flask import Flask
+app = Flask(__name__)
+
+@app.route("/")
+def hello():
+    return "Hello World!"
+
+if __name__ == "__main__":
+    app.run()
+

And Easy to Setup

+
$ easy_install Flask
+$ python hello.py
+ * Running on http://localhost:5000/
+

Interested?

+ +

Contribute

+

Found a bug? Have a good idea for improving Flask? Head over to + Flask's github page and + create a new ticket or fork. If you just want to chat with the + developers, go to #pocoo on irc.freenode.net +

+ +Fork me on GitHub diff --git a/website/logo.png b/website/logo.png new file mode 100755 index 00000000..f255eece Binary files /dev/null and b/website/logo.png differ