loongson/pypi/: flask-1.1.2 metadata and description

Homepage Simple index Newer version available

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
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Topic :: Internet :: WWW/HTTP :: WSGI :: Application
  • Topic :: Software Development :: Libraries :: Application Frameworks
  • Topic :: Software Development :: Libraries :: Python Modules
license BSD-3-Clause
maintainer Pallets
maintainer_email contact@palletsprojects.com
project_urls
  • Documentation, https://flask.palletsprojects.com/
  • Code, https://github.com/pallets/flask
  • Issue tracker, https://github.com/pallets/flask/issues
provides_extras dotenv
requires_dist
  • Werkzeug (>=0.15)
  • Jinja2 (>=2.10.1)
  • itsdangerous (>=0.24)
  • click (>=5.1)
  • pytest ; extra == 'dev'
  • coverage ; extra == 'dev'
  • tox ; extra == 'dev'
  • sphinx ; extra == 'dev'
  • pallets-sphinx-themes ; extra == 'dev'
  • sphinxcontrib-log-cabinet ; extra == 'dev'
  • sphinx-issues ; extra == 'dev'
  • sphinx ; extra == 'docs'
  • pallets-sphinx-themes ; extra == 'docs'
  • sphinxcontrib-log-cabinet ; extra == 'docs'
  • sphinx-issues ; extra == 'docs'
  • python-dotenv ; extra == 'dotenv'
requires_python >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*

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

File Tox results History
Flask-1.1.2-py2.py3-none-any.whl
Size
92 KB
Type
Python Wheel
Python
2.7
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-08 02:37:07

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

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello, World!"
$ env FLASK_APP=hello.py flask run
 * Serving Flask app "hello"
 * 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.