app === .. py:module:: app .. autoapi-nested-parse:: Mail List Shield Flask application factory and extensions. This module provides the Flask application factory function and initializes Flask extensions used throughout the application. Submodules ---------- .. toctree:: :maxdepth: 1 /autoapi/app/config/index /autoapi/app/decorators/index /autoapi/app/emails/index /autoapi/app/forms/index /autoapi/app/models/index /autoapi/app/utilities/index /autoapi/app/views/index /autoapi/app/views_api/index /autoapi/app/views_auth/index /autoapi/app/views_private/index Attributes ---------- .. autoapisummary:: app.mail app.db app.bc app.lm app.csrf Functions --------- .. autoapisummary:: app.create_app Package Contents ---------------- .. py:data:: mail .. py:data:: db .. py:data:: bc .. py:data:: lm .. py:data:: csrf .. py:function:: create_app(config_class='app.config.Config', test_config=False) Application factory to create a Flask application instance with the specified configuration. :param config_class: Reference to the configuration object to use. :param test_config: If True, apply the test configuration. :returns: The Flask application instance. :rtype: Flask