A microframework based on Werkzeug, Jinja2 and good intentions
Project description
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
Save in a hello.py:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
And Easy to Setup
And run it:
$ pip install Flask
$ python hello.py
* Running on http://localhost:5000/
Ready for production? `Read this first <http://flask.pocoo.org/docs/deploying/>`.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-0.12.3.tar.gz
(531.4 kB
view hashes)
Built Distribution
Flask-0.12.3-py2.py3-none-any.whl
(88.4 kB
view hashes)
Close
Hashes for Flask-0.12.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74bb782687731332b86aa8ab0817be14c9e63e5fa837934de8be4f9236d6d0d2 |
|
MD5 | 7ff37015d2c34754c92bcbc7afeb94ae |
|
BLAKE2b-256 | 243e1b6aa496fa9bb119f6b22263ca5ca9e826aaa132431fd78f413c8bcc18e3 |