class Flask(Scaffold):
The flask object implements a WSGI application and acts as the central object. It is passed the name of the module or package of the application. Once it is created it will act as a central registry for the view functions, the URL rules, template configuration and much more.
The name of the package is used to resolve resources from inside the package or the folder the module is contained in depending on if the package parameter resolves to an actual python package (a folder with an :file:`__init__.py` file inside) or a standard module (just a .py file).
For more information about resource loading, see open_resource
.
Usually you create a Flask
instance in your main module or
in the :file:`__init__.py` file of your package like this:
from flask import Flask app = Flask(__name__)
About the First Parameter
The idea of the first parameter is to give Flask an idea of what belongs to your application. This name is used to find resources on the filesystem, can be used by extensions to improve debugging information and a lot more.
So it's important what you provide there. If you are using a single
module, __name__
is always the correct value. If you however are
using a package, it's usually recommended to hardcode the name of
your package there.
For example if your application is defined in :file:`yourapplication/app.py` you should create it with one of the two versions below:
app = Flask('yourapplication') app = Flask(__name__.split('.')[0])
Why is that? The application will work even with __name__
, thanks
to how resources are looked up. However it will make debugging more
painful. Certain extensions can make assumptions based on the
import name of your application. For example the Flask-SQLAlchemy
extension will look for the code in your application that triggered
an SQL query in debug mode. If the import name is not properly set
up, that debugging information is lost. (For example it would only
pick up SQL queries in yourapplication.app
and not
yourapplication.views.frontend
)
static_url_path
, static_folder
, and template_folder
parameters were added.instance_path
and instance_relative_config
parameters were
added.root_path
parameter was added.SERVER_NAME
does not implicitly enable it.Parameters | |
import_name | the name of the application package |
static_url_path | can be used to specify a different path for the
static files on the web. Defaults to the name
of the static_folder folder. |
static_folder | The folder with static files that is served at static_url_path. Relative to the application root_path or an absolute path. Defaults to 'static'. |
static_host | the host to use when adding the static route. Defaults to None. Required when using host_matching=True with a static_folder configured. |
host_matching | set url_map.host_matching attribute. Defaults to False. |
subdomain_matching | consider the subdomain relative to
SERVER_NAME when matching routes. Defaults to False. |
template_folder | the folder that contains the templates that should be used by the application. Defaults to 'templates' folder in the root path of the application. |
instance_path | An alternative instance path for the application. By default the folder 'instance' next to the package or module is assumed to be the instance path. |
instance_relative_config | if set to True relative filenames for loading the config are assumed to be relative to the instance path instead of the application root. |
root_path | The path to the root of the application files. This should only be set manually when it can't be detected automatically, such as for namespace packages. |
Method | __call__ |
The WSGI server calls the Flask application object as the WSGI application. This calls wsgi_app , which can be wrapped to apply middleware. |
Method | __init__ |
Undocumented |
Method | _find_error_handler |
No summary |
Method | _is_setup_finished |
Undocumented |
Method | add_template_filter |
Register a custom template filter. Works exactly like the template_filter decorator. |
Method | add_template_global |
Register a custom template global function. Works exactly like the template_global decorator. |
Method | add_template_test |
Register a custom template test. Works exactly like the template_test decorator. |
Method | add_url_rule |
Register a rule for routing incoming requests and building URLs. The route decorator is a shortcut to call this with the view_func argument. These are equivalent: |
Method | app_context |
Create an ~flask.ctx.AppContext . Use as a with block to push the context, which will make current_app point at this application. |
Method | async_to_sync |
Return a sync function that will run the coroutine function. |
Method | auto_find_instance_path |
No summary |
Method | before_first_request |
Registers a function to be run before the first request to this instance of the application. |
Method | create_global_jinja_loader |
No summary |
Method | create_jinja_environment |
No summary |
Method | create_url_adapter |
Creates a URL adapter for the given request. The URL adapter is created at a point where the request context is not yet set up so the request is passed explicitly. |
Method | debug.setter |
Undocumented |
Method | dispatch_request |
No summary |
Method | do_teardown_appcontext |
Called right before the application context is popped. |
Method | do_teardown_request |
Called after the request is dispatched and the response is returned, right before the request context is popped. |
Method | ensure_sync |
Ensure that the function is synchronous for WSGI workers. Plain def functions are returned as-is. async def functions are wrapped to run and wait for the response. |
Method | finalize_request |
No summary |
Method | full_dispatch_request |
Dispatches the request and on top of that performs request pre and postprocessing as well as HTTP exception catching and error handling. |
Method | handle_exception |
Handle an exception that did not have an error handler associated with it, or that was raised from an error handler. This always causes a 500 InternalServerError. |
Method | handle_http_exception |
Handles an HTTP exception. By default this will invoke the registered error handlers and fall back to returning the exception as response. |
Method | handle_url_build_error |
Handle ~werkzeug.routing.BuildError on url_for . |
Method | handle_user_exception |
No summary |
Method | inject_url_defaults |
Injects the URL defaults for the given endpoint directly into the values dictionary passed. This is used internally and automatically called on URL building. |
Method | iter_blueprints |
Iterates over all blueprints by the order they were registered. |
Method | log_exception |
No summary |
Method | make_config |
No summary |
Method | make_default_options_response |
This method is called to create the default OPTIONS response. This can be changed through subclassing to change the default behavior of OPTIONS responses. |
Method | make_response |
Convert the return value from a view function to an instance of response_class . |
Method | make_shell_context |
Returns the shell context for an interactive shell for this application. This runs all the registered shell context processors. |
Method | open_instance_resource |
No summary |
Method | preprocess_request |
No summary |
Method | process_response |
Can be overridden in order to modify the response object before it's sent to the WSGI server. By default this will call all the after_request decorated functions. |
Method | raise_routing_exception |
No summary |
Method | register_blueprint |
Register a ~flask.Blueprint on the application. Keyword arguments passed to this method will override the defaults set on the blueprint. |
Method | request_context |
Create a ~flask.ctx.RequestContext representing a WSGI environment. Use a with block to push the context, which will make request point at this request. |
Method | run |
Runs the application on a local development server. |
Method | select_jinja_autoescape |
Returns True if autoescaping should be active for the given template name. If no template name is given, returns True . |
Method | shell_context_processor |
Registers a shell context processor function. |
Method | should_ignore_error |
No summary |
Method | teardown_appcontext |
Registers a function to be called when the application context ends. These functions are typically also called when the request context is popped. |
Method | template_filter |
A decorator that is used to register custom template filter. You can specify a name for the filter, otherwise the function name will be used. Example: |
Method | template_global |
A decorator that is used to register a custom template global function. You can specify a name for the global function, otherwise the function name will be used. Example: |
Method | template_test |
A decorator that is used to register custom template test. You can specify a name for the test, otherwise the function name will be used. Example: |
Method | templates_auto_reload.setter |
Undocumented |
Method | test_cli_runner |
Create a CLI runner for testing CLI commands. See :ref:`testing-cli`. |
Method | test_client |
Creates a test client for this application. For information about unit testing head over to :doc:`/testing`. |
Method | test_request_context |
No summary |
Method | trap_http_exception |
No summary |
Method | try_trigger_before_first_request_functions |
Called before each request and will ensure that it triggers the before_first_request_funcs and only exactly once per application instance (which means process usually). |
Method | update_template_context |
No summary |
Method | wsgi_app |
The actual WSGI application. This is not implemented in __call__ so that middlewares can be applied without losing a reference to the app object. Instead of doing this: |
Class Variable | default_config |
Undocumented |
Class Variable | jinja_options |
Undocumented |
Class Variable | permanent_session_lifetime |
Undocumented |
Class Variable | secret_key |
Undocumented |
Class Variable | send_file_max_age_default |
Undocumented |
Class Variable | session_cookie_name |
Undocumented |
Class Variable | session_interface |
Undocumented |
Class Variable | test_cli_runner_class |
Undocumented |
Class Variable | test_client_class |
Undocumented |
Class Variable | testing |
Undocumented |
Class Variable | use_x_sendfile |
Undocumented |
Instance Variable | _before_request_lock |
Undocumented |
Instance Variable | _got_first_request |
Undocumented |
Instance Variable | before_first_request_funcs |
Undocumented |
Instance Variable | blueprints |
Undocumented |
Instance Variable | config |
Undocumented |
Instance Variable | debug |
No summary |
Instance Variable | env |
Undocumented |
Instance Variable | extensions |
Undocumented |
Instance Variable | instance_path |
Undocumented |
Instance Variable | shell_context_processors |
Undocumented |
Instance Variable | subdomain_matching |
Undocumented |
Instance Variable | teardown_appcontext_funcs |
Undocumented |
Instance Variable | url_build_error_handlers |
Undocumented |
Instance Variable | url_map |
Undocumented |
Property | got_first_request |
This attribute is set to True if the application started handling the first request. |
Property | jinja_env |
The Jinja environment used to load templates. |
Property | logger |
A standard Python ~logging.Logger for the app, with the same name as name . |
Property | name |
No summary |
Property | preserve_context_on_exception |
Returns the value of the PRESERVE_CONTEXT_ON_EXCEPTION configuration value in case it's set, otherwise a sensible default is returned. |
Property | propagate_exceptions |
Returns the value of the PROPAGATE_EXCEPTIONS configuration value in case it's set, otherwise a sensible default is returned. |
Property | templates_auto_reload |
Reload templates when they are changed. Used by create_jinja_environment . |
Inherited from Scaffold
:
Static Method | _get_exc_class_and_code |
Get the exception class being handled. For HTTP status codes or HTTPException subclasses, return both the exception and status code. |
Method | __repr__ |
Undocumented |
Method | _method_route |
Undocumented |
Method | after_request |
Register a function to run after each request to this object. |
Method | before_request |
Register a function to run before each request. |
Method | context_processor |
Registers a template context processor function. |
Method | delete |
Shortcut for route with methods=["DELETE"]. |
Method | endpoint |
Decorate a view function to register it for the given endpoint. Used if a rule is added without a view_func with add_url_rule . |
Method | errorhandler |
Register a function to handle errors by code or exception class. |
Method | get |
Shortcut for route with methods=["GET"]. |
Method | get_send_file_max_age |
Used by send_file to determine the max_age cache value for a given file path if it wasn't passed. |
Method | open_resource |
Open a resource file relative to root_path for reading. |
Method | patch |
Shortcut for route with methods=["PATCH"]. |
Method | post |
Shortcut for route with methods=["POST"]. |
Method | put |
Shortcut for route with methods=["PUT"]. |
Method | register_error_handler |
Alternative error attach function to the errorhandler decorator that is more straightforward to use for non decorator usage. |
Method | route |
Decorate a view function to register it with the given URL rule and options. Calls add_url_rule , which has more details about the implementation. |
Method | send_static_file |
No summary |
Method | static_folder.setter |
Undocumented |
Method | static_url_path.setter |
Undocumented |
Method | teardown_request |
No summary |
Method | url_defaults |
Callback function for URL defaults for all view functions of the application. It's called with the endpoint and values and should update the values passed in place. |
Method | url_value_preprocessor |
Register a URL value preprocessor function for all view functions in the application. These functions will be called before the before_request functions. |
Class Variable | json_decoder |
Undocumented |
Class Variable | json_encoder |
Undocumented |
Instance Variable | _static_folder |
Undocumented |
Instance Variable | _static_url_path |
Undocumented |
Instance Variable | after_request_funcs |
Undocumented |
Instance Variable | before_request_funcs |
Undocumented |
Instance Variable | cli |
Undocumented |
Instance Variable | error_handler_spec |
Undocumented |
Instance Variable | import_name |
Undocumented |
Instance Variable | root_path |
Undocumented |
Instance Variable | teardown_request_funcs |
Undocumented |
Instance Variable | template_context_processors |
Undocumented |
Instance Variable | template_folder |
Undocumented |
Instance Variable | url_default_functions |
Undocumented |
Instance Variable | url_value_preprocessors |
Undocumented |
Instance Variable | view_functions |
Undocumented |
Property | has_static_folder |
True if static_folder is set. |
Property | jinja_loader |
The Jinja loader for this object's templates. By default this is a class jinja2.loaders.FileSystemLoader to template_folder if it is set. |
Property | static_folder |
The absolute path to the configured static folder. None if no static folder is set. |
Property | static_url_path |
The URL prefix that the static route will be accessible from. |
wsgi_app
, which can be
wrapped to apply middleware.Parameters | |
environ:dict | Undocumented |
start_response:t.Callable | Undocumented |
Returns | |
t.Any | Undocumented |
flask.scaffold.Scaffold.__init__
Undocumented
Parameters | |
import_name:str | Undocumented |
static_url_path:t.Optional[ | Undocumented |
static_folder:t.Optional[ | Undocumented |
static_host:t.Optional[ | Undocumented |
host_matching:bool | Undocumented |
subdomain_matching:bool | Undocumented |
template_folder:t.Optional[ | Undocumented |
instance_path:t.Optional[ | Undocumented |
instance_relative_config:bool | Undocumented |
root_path:t.Optional[ | Undocumented |
Parameters | |
e:Exception | Undocumented |
Returns | |
t.Optional[ | Undocumented |
template_filter
decorator.Parameters | |
f:TemplateFilterCallable | Undocumented |
name:t.Optional[ | the optional name of the filter, otherwise the function name will be used. |
Register a custom template global function. Works exactly like the
template_global
decorator.
Parameters | |
f:TemplateGlobalCallable | Undocumented |
name:t.Optional[ | the optional name of the global function, otherwise the function name will be used. |
Register a custom template test. Works exactly like the
template_test
decorator.
Parameters | |
f:TemplateTestCallable | Undocumented |
name:t.Optional[ | the optional name of the test, otherwise the function name will be used. |
flask.scaffold.Scaffold.add_url_rule
Register a rule for routing incoming requests and building
URLs. The route
decorator is a shortcut to call this
with the view_func argument. These are equivalent:
@app.route("/") def index(): ...
def index(): ... app.add_url_rule("/", view_func=index)
See :ref:`url-route-registrations`.
The endpoint name for the route defaults to the name of the view function if the endpoint parameter isn't passed. An error will be raised if a function has already been registered for the endpoint.
The methods parameter defaults to ["GET"]. HEAD is always added automatically, and OPTIONS is added automatically by default.
view_func does not necessarily need to be passed, but if the
rule should participate in routing an endpoint name must be
associated with a view function at some point with the
endpoint
decorator.
app.add_url_rule("/", endpoint="index") @app.endpoint("index") def index(): ...
If view_func has a required_methods attribute, those methods are added to the passed and automatic methods. If it has a provide_automatic_methods attribute, it is used as the default if the parameter is not passed.
Parameters | |
rule:str | The URL rule string. |
endpoint:t.Optional[ | The endpoint name to associate with the rule and view function. Used when routing and building URLs. Defaults to view_func.__name__. |
view_func:t.Optional[ | The view function to associate with the endpoint name. |
provide_automatic_options:t.Optional[ | Add the OPTIONS method and respond to OPTIONS requests automatically. |
**options:t.Any | Extra options passed to the
~werkzeug.routing.Rule object. |
Create an ~flask.ctx.AppContext
. Use as a with
block to push the context, which will make current_app
point at this application.
An application context is automatically pushed by
RequestContext.push()
when handling a request, and when running a CLI command. Use
this to manually create a context outside of these situations.
with app.app_context(): init_db()
See :doc:`/appcontext`.
Returns | |
AppContext | Undocumented |
Return a sync function that will run the coroutine function.
result = app.async_to_sync(func)(*args, **kwargs)
Override this method to change how the app converts async code to be synchronously callable.
Parameters | |
func:t.Callable[ | Undocumented |
Returns | |
t.Callable[ | Undocumented |
Tries to locate the instance path if it was not provided to the constructor of the application class. It will basically calculate the path to a folder named instance next to your main file or the package.
Returns | |
str | Undocumented |
Registers a function to be run before the first request to this instance of the application.
The function will be called without any arguments and its return value is ignored.
Parameters | |
f:BeforeFirstRequestCallable | Undocumented |
Returns | |
BeforeFirstRequestCallable | Undocumented |
Creates the loader for the Jinja2 environment. Can be used to
override just the loader and keeping the rest unchanged. It's
discouraged to override this function. Instead one should override
the jinja_loader
function instead.
The global loader dispatches between the loaders of the application and the individual blueprints.
Returns | |
DispatchingJinjaLoader | Undocumented |
Create the Jinja environment based on jinja_options
and the various Jinja-related methods of the app. Changing
jinja_options
after this will have no effect. Also adds
Flask-related globals and filters to the environment.
Returns | |
Environment | Undocumented |
Creates a URL adapter for the given request. The URL adapter is created at a point where the request context is not yet set up so the request is passed explicitly.
SERVER_NAME
no longer implicitly enables subdomain
matching. Use subdomain_matching
instead.Parameters | |
request:t.Optional[ | Undocumented |
Returns | |
t.Optional[ | Undocumented |
Does the request dispatching. Matches the URL and returns the
return value of the view or error handler. This does not have to
be a response object. In order to convert the return value to a
proper response object, call make_response
.
full_dispatch_request
.Returns | |
ResponseReturnValue | Undocumented |
Called right before the application context is popped.
When handling a request, the application context is popped
after the request context. See do_teardown_request
.
This calls all functions decorated with
teardown_appcontext
. Then the
appcontext_tearing_down
signal is sent.
This is called by
AppContext.pop()
.
Parameters | |
exc:t.Optional[ | Undocumented |
Called after the request is dispatched and the response is returned, right before the request context is popped.
This calls all functions decorated with
teardown_request
, and Blueprint.teardown_request
if a blueprint handled the request. Finally, the
request_tearing_down
signal is sent.
This is called by
RequestContext.pop()
,
which may be delayed during testing to maintain access to
resources.
Parameters | |
exc:t.Optional[ | An unhandled exception raised while dispatching the request. Detected from the current exception information if not passed. Passed to each teardown function. |
Ensure that the function is synchronous for WSGI workers. Plain def functions are returned as-is. async def functions are wrapped to run and wait for the response.
Override this method to change how the app runs async views.
Parameters | |
func:t.Callable | Undocumented |
Returns | |
t.Callable | Undocumented |
Given the return value from a view function this finalizes the request by converting it into a response and invoking the postprocessing functions. This is invoked for both normal request dispatching as well as error handlers.
Because this means that it might be called as a result of a
failure a special safe mode is available which can be enabled
with the from_error_handler
flag. If enabled, failures in
response processing will be logged and otherwise ignored.
Parameters | |
rv:t.Union[ | Undocumented |
from_error_handler:bool | Undocumented |
Returns | |
Response | Undocumented |
Unknown Field: internal | |
Dispatches the request and on top of that performs request pre and postprocessing as well as HTTP exception catching and error handling.
Returns | |
Response | Undocumented |
Handle an exception that did not have an error handler associated with it, or that was raised from an error handler. This always causes a 500 InternalServerError.
Always sends the got_request_exception
signal.
If propagate_exceptions
is True, such as in debug
mode, the error will be re-raised so that the debugger can
display it. Otherwise, the original exception is logged, and
an ~werkzeug.exceptions.InternalServerError
is returned.
If an error handler is registered for InternalServerError or 500, it will be used. For consistency, the handler will always receive the InternalServerError. The original unhandled exception is available as e.original_exception.
Parameters | |
e:Exception | Undocumented |
Returns | |
Response | Undocumented |
Handles an HTTP exception. By default this will invoke the registered error handlers and fall back to returning the exception as response.
Parameters | |
e:HTTPException | Undocumented |
Returns | |
t.Union[ | Undocumented |
~werkzeug.routing.BuildError
on
url_for
.Parameters | |
error:Exception | Undocumented |
endpoint:str | Undocumented |
values:dict | Undocumented |
Returns | |
str | Undocumented |
This method is called whenever an exception occurs that
should be handled. A special case is ~werkzeug
.exceptions.HTTPException
which is forwarded to the
handle_http_exception
method. This function will either
return a response value or reraise the exception with the same
traceback.
Parameters | |
e:Exception | Undocumented |
Returns | |
t.Union[ | Undocumented |
Injects the URL defaults for the given endpoint directly into the values dictionary passed. This is used internally and automatically called on URL building.
Parameters | |
endpoint:str | Undocumented |
values:dict | Undocumented |
Iterates over all blueprints by the order they were registered.
Returns | |
t.ValuesView[ | Undocumented |
Logs an exception. This is called by handle_exception
if debugging is disabled and right before the handler is called.
The default implementation logs the exception as error on the
logger
.
Parameters | |
exc_info:t.Union[ | Undocumented |
Used to create the config attribute by the Flask constructor.
The instance_relative
parameter is passed in from the constructor
of Flask (there named instance_relative_config
) and indicates if
the config should be relative to the instance path or the root path
of the application.
Parameters | |
instance_relative:bool | Undocumented |
Returns | |
Config | Undocumented |
This method is called to create the default OPTIONS response. This can be changed through subclassing to change the default behavior of OPTIONS responses.
Returns | |
Response | Undocumented |
Convert the return value from a view function to an instance of
response_class
.
Parameters | |
rv:ResponseReturnValue | the return value from the view function. The view function must return a response. Returning None, or the view ending without returning, is not allowed. The following types are allowed for view_rv:
|
Returns | |
Response | Undocumented |
Returns the shell context for an interactive shell for this application. This runs all the registered shell context processors.
Returns | |
dict | Undocumented |
instance_path
). Otherwise works like
open_resource
. Instance resources can also be opened for
writing.Parameters | |
resource:str | the name of the resource. To access resources within subfolders use forward slashes as separator. |
mode:str | resource file opening mode, default is 'rb'. |
Returns | |
t.IO[ | Undocumented |
Called before the request is dispatched. Calls
url_value_preprocessors
registered with the app and the
current blueprint (if any). Then calls before_request_funcs
registered with the app and the blueprint.
If any before_request
handler returns a non-None value, the
value is handled as if it was the return value from the view, and
further request handling is stopped.
Returns | |
t.Optional[ | Undocumented |
Can be overridden in order to modify the response object
before it's sent to the WSGI server. By default this will
call all the after_request
decorated functions.
Parameters | |
response:Response | a response_class object. |
Returns | |
Response | a new response object or the same, has to be an
instance of response_class . |
Parameters | |
request:Request | Undocumented |
Returns | |
te.NoReturn | Undocumented |
Unknown Field: internal | |
Register a ~flask.Blueprint
on the application. Keyword
arguments passed to this method will override the defaults set on the
blueprint.
Calls the blueprint's ~flask.Blueprint.register
method after
recording the blueprint in the application's blueprints
.
Parameters | |
blueprint:Blueprint | The blueprint to register. |
**options:t.Any | Additional keyword arguments are passed to
~flask.blueprints.BlueprintSetupState . They can be
accessed in ~flask.Blueprint.record callbacks. |
url_prefix | Blueprint routes will be prefixed with this. |
subdomain | Blueprint routes will match on this subdomain. |
url_defaults | Blueprint routes will use these default values for view arguments. |
Create a ~flask.ctx.RequestContext
representing a
WSGI environment. Use a with block to push the context,
which will make request
point at this request.
See :doc:`/reqcontext`.
Typically you should not call this from your own code. A request
context is automatically pushed by the wsgi_app
when
handling a request. Use test_request_context
to create
an environment and context instead of this method.
Parameters | |
environ:dict | a WSGI environment |
Returns | |
RequestContext | Undocumented |
Runs the application on a local development server.
Do not use run() in a production setting. It is not intended to meet security and performance requirements for a production server. Instead, see :doc:`/deploying/index` for WSGI server recommendations.
If the debug
flag is set the server will automatically reload
for code changes and show a debugger in case an exception happened.
If you want to run the application in debug mode, but disable the code execution on the interactive debugger, you can pass use_evalex=False as parameter. This will keep the debugger's traceback screen active, but disable code execution.
It is not recommended to use this function for development with automatic reloading as this is badly supported. Instead you should be using the :command:`flask` command line script's run support.
Keep in Mind
Flask will suppress any server error with a generic error page
unless it is in debug mode. As such to enable just the
interactive debugger without the code reloading, you have to
invoke run
with debug=True and use_reloader=False.
Setting use_debugger to True without being in debug mode
won't catch any exceptions because there won't be any to
catch.
Changed in version 1.0: If installed, python-dotenv will be used to load environment variables from :file:`.env` and :file:`.flaskenv` files.
If set, the :envvar:`FLASK_ENV` and :envvar:`FLASK_DEBUG`
environment variables will override env
and
debug
.
Threaded mode is enabled by default.
Parameters | |
host:t.Optional[ | the hostname to listen on. Set this to '0.0.0.0' to have the server available externally as well. Defaults to '127.0.0.1' or the host in the SERVER_NAME config variable if present. |
port:t.Optional[ | the port of the webserver. Defaults to 5000 or the port defined in the SERVER_NAME config variable if present. |
debug:t.Optional[ | if given, enable or disable debug mode. See
debug . |
load_dotenv:bool | Load the nearest :file:`.env` and :file:`.flaskenv` files to set environment variables. Will also change the working directory to the directory containing the first file found. |
**options:t.Any | the options to be forwarded to the underlying Werkzeug
server. See werkzeug.serving.run_simple for more
information. |
Returns True if autoescaping should be active for the given
template name. If no template name is given, returns True
.
Parameters | |
filename:str | Undocumented |
Returns | |
bool | Undocumented |
Registers a shell context processor function.
Parameters | |
f:t.Callable | Undocumented |
Returns | |
t.Callable | Undocumented |
This is called to figure out if an error should be ignored or not as far as the teardown system is concerned. If this function returns True then the teardown handlers will not be passed the error.
Parameters | |
error:t.Optional[ | Undocumented |
Returns | |
bool | Undocumented |
Registers a function to be called when the application context ends. These functions are typically also called when the request context is popped.
Example:
ctx = app.app_context() ctx.push() ... ctx.pop()
When ctx.pop() is executed in the above example, the teardown functions are called just before the app context moves from the stack of active contexts. This becomes relevant if you are using such constructs in tests.
Since a request context typically also manages an application context it would also be called when you pop a request context.
When a teardown function was called because of an unhandled exception
it will be passed an error object. If an errorhandler
is
registered, it will handle the exception and the teardown will not
receive it.
The return values of teardown functions are ignored.
Parameters | |
f:TeardownCallable | Undocumented |
Returns | |
TeardownCallable | Undocumented |
A decorator that is used to register custom template filter. You can specify a name for the filter, otherwise the function name will be used. Example:
@app.template_filter() def reverse(s): return s[::-1]
Parameters | |
name:t.Optional[ | the optional name of the filter, otherwise the function name will be used. |
Returns | |
t.Callable[ | Undocumented |
A decorator that is used to register a custom template global function. You can specify a name for the global function, otherwise the function name will be used. Example:
@app.template_global() def double(n): return 2 * n
Parameters | |
name:t.Optional[ | the optional name of the global function, otherwise the function name will be used. |
Returns | |
t.Callable[ | Undocumented |
A decorator that is used to register custom template test. You can specify a name for the test, otherwise the function name will be used. Example:
@app.template_test() def is_prime(n): if n == 2: return True for i in range(2, int(math.ceil(math.sqrt(n))) + 1): if n % i == 0: return False return True
Parameters | |
name:t.Optional[ | the optional name of the test, otherwise the function name will be used. |
Returns | |
t.Callable[ | Undocumented |
Create a CLI runner for testing CLI commands. See :ref:`testing-cli`.
Returns an instance of test_cli_runner_class
, by default
~flask.testing.FlaskCliRunner
. The Flask app object is
passed as the first argument.
Parameters | |
**kwargs:t.Any | Undocumented |
Returns | |
FlaskCliRunner | Undocumented |
Creates a test client for this application. For information about unit testing head over to :doc:`/testing`.
Note that if you are testing for assertions or exceptions in your
application code, you must set app.testing = True in order for the
exceptions to propagate to the test client. Otherwise, the exception
will be handled by the application (not visible to the test client) and
the only indication of an AssertionError or other exception will be a
500 status code response to the test client. See the testing
attribute. For example:
app.testing = True client = app.test_client()
The test client can be used in a with block to defer the closing down of the context until the end of the with block. This is useful if you want to access the context locals for testing:
with app.test_client() as c: rv = c.get('/?vodka=42') assert request.args['vodka'] == '42'
Additionally, you may pass optional keyword arguments that will then
be passed to the application's test_client_class
constructor.
For example:
from flask.testing import FlaskClient class CustomClient(FlaskClient): def __init__(self, *args, **kwargs): self._authentication = kwargs.pop("authentication") super(CustomClient,self).__init__( *args, **kwargs) app.test_client_class = CustomClient client = app.test_client(authentication='Basic ....')
See ~flask.testing.FlaskClient
for more information.
use_cookies
parameter was added as well as the ability
to override the client to be used by setting the
test_client_class
attribute.**kwargs
to support passing additional keyword arguments to
the constructor of test_client_class
.Parameters | |
use_cookies:bool | Undocumented |
**kwargs:t.Any | Undocumented |
Returns | |
FlaskClient | Undocumented |
Create a ~flask.ctx.RequestContext
for a WSGI
environment created from the given values. This is mostly useful
during testing, where you may want to run a function that uses
request data without dispatching a full request.
See :doc:`/reqcontext`.
Use a with block to push the context, which will make
request
point at the request for the created
environment.
with test_request_context(...): generate_report()
When using the shell, it may be easier to push and pop the context manually to avoid indentation.
ctx = app.test_request_context(...) ctx.push() ... ctx.pop()
Takes the same arguments as Werkzeug's
~werkzeug.test.EnvironBuilder
, with some defaults from
the application. See the linked Werkzeug docs for most of the
available arguments. Flask-specific behavior is listed here.
Parameters | |
*args:t.Any | other positional arguments passed to
~werkzeug.test.EnvironBuilder . |
**kwargs:t.Any | other keyword arguments passed to
~werkzeug.test.EnvironBuilder . |
path | URL path being requested. |
base_url | Base URL where the app is being served, which
path is relative to. If not given, built from
PREFERRED_URL_SCHEME , subdomain,
SERVER_NAME , and APPLICATION_ROOT . |
subdomain | Subdomain name to append to
SERVER_NAME . |
url_scheme | Scheme to use instead of
PREFERRED_URL_SCHEME . |
data | The request body, either as a string or a dict of form keys and values. |
json | If given, this is serialized as JSON and passed as data. Also defaults content_type to application/json. |
Returns | |
RequestContext | Undocumented |
Checks if an HTTP exception should be trapped or not. By default this will return False for all exceptions except for a bad request key error if TRAP_BAD_REQUEST_ERRORS is set to True. It also returns True if TRAP_HTTP_EXCEPTIONS is set to True.
This is called for all HTTP exceptions raised by a view function. If it returns True for any exception the error handler for this exception is not called and it shows up as regular exception in the traceback. This is helpful for debugging implicitly raised HTTP exceptions.
Parameters | |
e:Exception | Undocumented |
Returns | |
bool | Undocumented |
before_first_request_funcs
and only exactly once per
application instance (which means process usually).Unknown Field: internal | |
Parameters | |
context:dict | the context as a dictionary that is updated in place to add extra variables. |
The actual WSGI application. This is not implemented in
__call__
so that middlewares can be applied without
losing a reference to the app object. Instead of doing this:
app = MyMiddleware(app)
It's a better idea to do this instead:
app.wsgi_app = MyMiddleware(app.wsgi_app)
Then you still have the original application object around and can continue to call methods on it.
Parameters | |
environ:dict | A WSGI environment. |
start_response:t.Callable | A callable accepting a status code, a list of headers, and an optional exception context to start the response. |
Returns | |
t.Any | Undocumented |
Whether debug mode is enabled. When using flask run to start
the development server, an interactive debugger will be shown for
unhandled exceptions, and the server will be reloaded when code
changes. This maps to the DEBUG
config key. This is
enabled when env
is 'development' and is overridden
by the FLASK_DEBUG environment variable. It may not behave as
expected if set in code.
Do not enable debug mode when deploying in production.
Default: True if env
is 'development', or
False otherwise.
bool
=
This attribute is set to True if the application started handling the first request.
The Jinja environment used to load templates.
The environment is created the first time this property is
accessed. Changing jinja_options
after that will have no
effect.
A standard Python ~logging.Logger
for the app, with
the same name as name
.
In debug mode, the logger's ~logging.Logger.level
will
be set to ~logging.DEBUG
.
If there are no handlers configured, a default handler will be added. See :doc:`/logging` for more information.
name
rather than
hard-coding "flask.app".flask.scaffold.Scaffold.name
The name of the application. This is usually the import name with the difference that it's guessed from the run file if the import name is main. This name is used as a display name when Flask needs the name of the application. It can be set and overridden to change the value.
bool
=
Returns the value of the PRESERVE_CONTEXT_ON_EXCEPTION configuration value in case it's set, otherwise a sensible default is returned.
bool
=
Returns the value of the PROPAGATE_EXCEPTIONS configuration value in case it's set, otherwise a sensible default is returned.
bool
=
Reload templates when they are changed. Used by
create_jinja_environment
.
This attribute can be configured with TEMPLATES_AUTO_RELOAD
. If
not set, it will be enabled in debug mode.