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.tar.gz
(563.9 kB
view details)
Built Distribution
Flask-0.11-py2.py3-none-any.whl
(80.6 kB
view details)
File details
Details for the file Flask-0.11.tar.gz
.
File metadata
- Download URL: Flask-0.11.tar.gz
- Upload date:
- Size: 563.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
29a7405a7f0de178232fe48cd9b2a2403083bf03bd34eabe12168863d4cdb493
|
|
MD5 |
89fbdcb04b7b96c5b24625ae299cf48b
|
|
BLAKE2b-256 |
dccac0ed9cc90c079085c698e284b672edbc1ffd6866b1830574095cbc5b7752
|
File details
Details for the file Flask-0.11-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask-0.11-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 |
6b221aef9684a92209628c8ffeba35fc60a0c89e4424662809e7da6035f257a7
|
|
MD5 |
fa0c2ac5c6980fc92e2591ebfcad706c
|
|
BLAKE2b-256 |
ac0b191c5dc6b3e22dfacb8e1eba2bb8dc211c16972b23a0b419f8a33b3deb71
|