.. _frameworks: =========================== How To Use Formular With... =========================== This article gives you information on how to use Formular with web frameworks. ... Werkzeug_ ------------- As a `session` you can use a :class:`SecureCookie ` or a :class:`Session ` as provided by the :class:`FilesystemSessionStore ` or the :class:`SesionMiddleware `. As `action` you should the the :attr:`Request.path `. For validation you can use the form data stored in the :attr:`Request.values `, which holds the data for `GET` and `POST` requests. .. seealso:: :ref:`Werkzeug application example ` ... Bottle_ ----------- Bottle doesn't have any session because as the bottle FAQ states it "[...]there is no *right* way to do it". Therefore you don't have any CSRF protection as long as you don't have any other solution for it. For validation you can get the form data store in the :attr:`bottle.request.params`. .. seealso:: :ref:`Bottle application example `