flask/docs/index.rst

90 lines
2.0 KiB
ReStructuredText
Raw Normal View History

2019-01-06 06:59:25 +08:00
.. rst-class:: hide-header
Welcome to Flask
================
2025-06-10 05:31:31 +08:00
.. image:: _static/flask-horizontal.svg
2018-09-17 23:35:28 +08:00
:align: center
2025-06-10 05:31:31 +08:00
:height: 200px
Welcome to Flask's documentation. 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.
Get started with :doc:`installation`
and then get an overview with the :doc:`quickstart`. There is also a
more detailed :doc:`tutorial/index` that shows how to create a small but
complete application with Flask. Common patterns are described in the
:doc:`patterns/index` section. The rest of the docs describe each
component of Flask in detail, with a full reference in the :doc:`api`
section.
2023-04-21 02:34:48 +08:00
Flask depends on the `Werkzeug`_ WSGI toolkit, the `Jinja`_ template engine, and the
`Click`_ CLI toolkit. Be sure to check their documentation as well as Flask's when
looking for information.
2010-04-16 18:21:31 +08:00
2023-04-21 02:34:48 +08:00
.. _Werkzeug: https://werkzeug.palletsprojects.com
.. _Jinja: https://jinja.palletsprojects.com
.. _Click: https://click.palletsprojects.com
2010-04-16 18:21:31 +08:00
2019-06-24 03:27:25 +08:00
User's Guide
------------
2022-08-06 02:28:22 +08:00
Flask provides configuration and conventions, with sensible defaults, to get started.
This section of the documentation explains the different parts of the Flask framework
and how they can be used, customized, and extended. Beyond Flask itself, look for
community-maintained extensions to add even more functionality.
2019-06-24 03:27:25 +08:00
.. toctree::
:maxdepth: 2
installation
quickstart
tutorial/index
templating
testing
errorhandling
debugging
2019-06-24 03:27:25 +08:00
logging
config
signals
views
lifecycle
2019-06-24 03:27:25 +08:00
appcontext
reqcontext
blueprints
extensions
cli
server
shell
patterns/index
web-security
2019-06-24 03:27:25 +08:00
deploying/index
2021-04-07 06:31:28 +08:00
async-await
2019-06-24 03:27:25 +08:00
API Reference
-------------
If you are looking for information on a specific function, class or
method, this part of the documentation is for you.
.. toctree::
:maxdepth: 2
api
Additional Notes
----------------
.. toctree::
:maxdepth: 2
design
extensiondev
contributing
2021-02-25 02:09:38 +08:00
license
changes