| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 | Metadata-Version: 2.1Name: FlaskVersion: 2.2.5Summary: A simple framework for building complex web applications.Home-page: https://palletsprojects.com/p/flaskAuthor: Armin RonacherAuthor-email: armin.ronacher@active-4.comMaintainer: PalletsMaintainer-email: contact@palletsprojects.comLicense: BSD-3-ClauseProject-URL: Donate, https://palletsprojects.com/donateProject-URL: Documentation, https://flask.palletsprojects.com/Project-URL: Changes, https://flask.palletsprojects.com/changes/Project-URL: Source Code, https://github.com/pallets/flask/Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/Project-URL: Twitter, https://twitter.com/PalletsTeamProject-URL: Chat, https://discord.gg/palletsClassifier: Development Status :: 5 - Production/StableClassifier: Environment :: Web EnvironmentClassifier: Framework :: FlaskClassifier: Intended Audience :: DevelopersClassifier: License :: OSI Approved :: BSD LicenseClassifier: Operating System :: OS IndependentClassifier: Programming Language :: PythonClassifier: Topic :: Internet :: WWW/HTTP :: Dynamic ContentClassifier: Topic :: Internet :: WWW/HTTP :: WSGIClassifier: Topic :: Internet :: WWW/HTTP :: WSGI :: ApplicationClassifier: Topic :: Software Development :: Libraries :: Application FrameworksRequires-Python: >=3.7Description-Content-Type: text/x-rstLicense-File: LICENSE.rstRequires-Dist: Werkzeug (>=2.2.2)Requires-Dist: Jinja2 (>=3.0)Requires-Dist: itsdangerous (>=2.0)Requires-Dist: click (>=8.0)Requires-Dist: importlib-metadata (>=3.6.0) ; python_version < "3.10"Provides-Extra: asyncRequires-Dist: asgiref (>=3.2) ; extra == 'async'Provides-Extra: dotenvRequires-Dist: python-dotenv ; extra == 'dotenv'Flask=====Flask is a lightweight `WSGI`_ web application framework. It is designedto make getting started quick and easy, with the ability to scale up tocomplex applications. It began as a simple wrapper around `Werkzeug`_and `Jinja`_ and has become one of the most popular Python webapplication frameworks.Flask offers suggestions, but doesn't enforce any dependencies orproject layout. It is up to the developer to choose the tools andlibraries they want to use. There are many extensions provided by thecommunity that make adding new functionality easy... _WSGI: https://wsgi.readthedocs.io/.. _Werkzeug: https://werkzeug.palletsprojects.com/.. _Jinja: https://jinja.palletsprojects.com/Installing----------Install and update using `pip`_:.. code-block:: text    $ pip install -U Flask.. _pip: https://pip.pypa.io/en/stable/getting-started/A Simple Example----------------.. code-block:: python    # save this as app.py    from flask import Flask    app = Flask(__name__)    @app.route("/")    def hello():        return "Hello, World!".. code-block:: text    $ 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 acontribution to Flask, see the `contributing guidelines`_... _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rstDonate------The Pallets organization develops and supports Flask and the librariesit uses. In order to grow the community of contributors and users, andallow the maintainers to devote more time to the projects, `pleasedonate today`_... _please donate today: https://palletsprojects.com/donateLinks------   Documentation: https://flask.palletsprojects.com/-   Changes: https://flask.palletsprojects.com/changes/-   PyPI Releases: https://pypi.org/project/Flask/-   Source Code: https://github.com/pallets/flask/-   Issue Tracker: https://github.com/pallets/flask/issues/-   Website: https://palletsprojects.com/p/flask/-   Twitter: https://twitter.com/PalletsTeam-   Chat: https://discord.gg/pallets
 |