loongson/pypi/: flask-2.0.2 metadata and description

Homepage Simple index

A simple framework for building complex web applications.

author Armin Ronacher
author_email armin.ronacher@active-4.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Web Environment
  • Framework :: Flask
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Topic :: Internet :: WWW/HTTP :: WSGI
  • Topic :: Internet :: WWW/HTTP :: WSGI :: Application
  • Topic :: Software Development :: Libraries :: Application Frameworks
description_content_type text/x-rst
license BSD-3-Clause
maintainer Pallets
maintainer_email contact@palletsprojects.com
project_urls
  • Donate, https://palletsprojects.com/donate
  • Documentation, https://flask.palletsprojects.com/
  • Changes, https://flask.palletsprojects.com/changes/
  • Source Code, https://github.com/pallets/flask/
  • Issue Tracker, https://github.com/pallets/flask/issues/
  • Twitter, https://twitter.com/PalletsTeam
  • Chat, https://discord.gg/pallets
provides_extras dotenv
requires_dist
  • Werkzeug (>=2.0)
  • Jinja2 (>=3.0)
  • itsdangerous (>=2.0)
  • click (>=7.1.2)
  • asgiref (>=3.2) ; extra == 'async'
  • python-dotenv ; extra == 'dotenv'
requires_python >=3.6

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
Flask-2.0.2-py3-none-any.whl
Size
93 KB
Type
Python Wheel
Python
3

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.