All Projects → pallets → Flask

pallets / Flask

Licence: bsd-3-clause
The Python micro framework for building web applications.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Flask

Werkzeug
The comprehensive WSGI web application library.
Stars: ✭ 5,910 (-89.71%)
Mutual labels:  wsgi, werkzeug, pallets
Flask bestpractices
Flask最佳实践
Stars: ✭ 100 (-99.83%)
Mutual labels:  flask, web-framework, wsgi
Pyramid
Pyramid - A Python web framework
Stars: ✭ 3,615 (-93.7%)
Mutual labels:  web-framework, wsgi
secure-cookie
Secure cookies and sessions for WSGI
Stars: ✭ 30 (-99.95%)
Mutual labels:  wsgi, werkzeug
website
Website for the Pallets projects
Stars: ✭ 126 (-99.78%)
Mutual labels:  werkzeug, pallets
Serverless Wsgi
Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages
Stars: ✭ 377 (-99.34%)
Mutual labels:  flask, wsgi
Flask Peewee
flask integration for peewee, including admin, authentication, rest api and more
Stars: ✭ 739 (-98.71%)
Mutual labels:  flask, web-framework
Docker Nginx Gunicorn Flask Letsencrypt
Boilerplate code for setting up Nginx + Gunicorn + Flask + automated LetsEncrypt certificates (https) using docker-compose.
Stars: ✭ 117 (-99.8%)
Mutual labels:  flask, wsgi
Clastic
🏔️ A functional web framework that streamlines explicit development practices while eliminating global state.
Stars: ✭ 131 (-99.77%)
Mutual labels:  web-framework, wsgi
Ok
ok.py supports programming projects by running tests, tracking progress, and assisting in debugging.
Stars: ✭ 229 (-99.6%)
Mutual labels:  flask
Cancan
cancan is a tiny permission controller base on ruby cancan library.
Stars: ✭ 244 (-99.57%)
Mutual labels:  flask
Snap N Eat
Food detection and recommendation with deep learning
Stars: ✭ 229 (-99.6%)
Mutual labels:  flask
Moa
A Mastodon, Twitter, and Instagram Cross-poster
Stars: ✭ 232 (-99.6%)
Mutual labels:  flask
Clevergo
👅 CleverGo is a lightweight, feature rich and high performance HTTP router for Go.
Stars: ✭ 246 (-99.57%)
Mutual labels:  web-framework
Micromsg Bot
微信表情机器人
Stars: ✭ 230 (-99.6%)
Mutual labels:  flask
Gowut
Go Web UI Toolkit - Public Releases and Development
Stars: ✭ 251 (-99.56%)
Mutual labels:  web-framework
Sanic
Async Python 3.7+ web server/framework | Build fast. Run fast.
Stars: ✭ 15,660 (-72.72%)
Mutual labels:  web-framework
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (-72.84%)
Mutual labels:  flask
Formspree
Easy HTML form without PHP or JavaScript
Stars: ✭ 2,749 (-95.21%)
Mutual labels:  flask
Flask Boilerplate
Simple flask boilerplate with Postgres, Docker, and Heroku/Zeit now
Stars: ✭ 251 (-99.56%)
Mutual labels:  flask

Flask

Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks.

Flask offers suggestions, but doesn't enforce any dependencies or project layout. It is up to the developer to choose the tools and libraries they want to use. There are many extensions provided by the community that make adding new functionality easy.

Installing

Install and update using pip:

$ pip install -U Flask

A Simple Example

# save this as app.py
from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello, World!"
$ flask run
  * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

Contributing

For guidance on setting up a development environment and how to make a contribution to Flask, see the contributing guidelines.

Donate

The Pallets organization develops and supports Flask and the libraries it uses. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.

Links

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].