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/
Links
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.5.2.tar.gz
(369.8 kB
view details)
File details
Details for the file Flask-0.5.2.tar.gz.
File metadata
- Download URL: Flask-0.5.2.tar.gz
- Upload date:
- Size: 369.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a78e498cb9cdb104429ed2ff8823b8a4dd10db32ff9a20bb3ef3132a3885e8d
|
|
| MD5 |
002b8ff41fa14d82662b1d7763f77855
|
|
| BLAKE2b-256 |
1cb503c412ba48148e6c222e238201a0924360a85d755ce9597acbd99a1a6240
|