flask/docs/patterns/index.rst

41 lines
961 B
ReStructuredText
Raw Permalink Normal View History

2010-04-18 13:35:40 +02:00
Patterns for Flask
==================
Certain features and interactions are common enough that you will find
them in most web applications. For example, many applications use a
relational database and user authentication. They will open a database
connection at the beginning of the request and get the information for
the logged in user. At the end of the request, the database connection
is closed.
2010-04-18 13:35:40 +02:00
These types of patterns may be a bit outside the scope of Flask itself,
but Flask makes it easy to implement them. Some common patterns are
collected in the following pages.
2010-04-18 13:35:40 +02:00
.. toctree::
:maxdepth: 2
packages
2010-05-27 17:55:57 +02:00
appfactories
2011-03-14 14:19:12 -04:00
appdispatch
urlprocessors
2010-04-18 13:35:40 +02:00
sqlite3
sqlalchemy
2010-04-24 20:36:06 +02:00
fileuploads
2010-04-25 18:55:01 +02:00
caching
viewdecorators
2010-04-19 02:22:59 +02:00
wtforms
2010-04-18 13:35:40 +02:00
templateinheritance
flashing
2022-06-11 13:44:46 -07:00
javascript
lazyloading
mongoengine
favicon
2011-07-27 22:34:18 +02:00
streaming
2011-09-18 12:50:56 +02:00
deferredcallbacks
methodoverrides
requestchecksum
2013-01-27 00:38:25 +00:00
celery
subclassing
2018-11-13 15:41:48 -06:00
singlepageapplications