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/
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.11.1.tar.gz
(565.0 kB
view details)
Built Distribution
File details
Details for the file Flask-0.11.1.tar.gz
.
File metadata
- Download URL: Flask-0.11.1.tar.gz
- Upload date:
- Size: 565.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b4713f2bfb9ebc2966b8a49903ae0d3984781d5c878591cf2f7b484d28756b0e
|
|
MD5 |
d2af95d8fe79cf7da099f062dd122a08
|
|
BLAKE2b-256 |
558a78e165d30f0c8bb5d57c429a30ee5749825ed461ad6c959688872643ffb3
|
File details
Details for the file Flask-0.11.1-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask-0.11.1-py2.py3-none-any.whl
- Upload date:
- Size: 80.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a4f97abd30d289e548434ef42317a793f58087be1989eab96f2c647470e77000
|
|
MD5 |
920be5772ee6399f70794d33a9eb9a13
|
|
BLAKE2b-256 |
632b01f5ed23a78391f6e3e73075973da0ecb467c831376a0b09c0ec5afd7977
|