Skip to content

Latest commit

 

History

History
292 lines (191 loc) · 8.37 KB

api.rst

File metadata and controls

292 lines (191 loc) · 8.37 KB

API

flask

This part of the documentation covers all the interfaces of Flask. For parts where Flask depends on external libraries, we document the most important right here and provide links to the canonical documentation.

Application Object

Flask

Module Objects

Module

Incoming Request Data

Request

To access incoming request data, you can use the global request object. Flask parses incoming request data for you and gives you access to it through that global object. Internally Flask makes sure that you always get the correct data for the active thread if you are in a multithreaded environment.

The request object is an instance of a ~werkzeug.Request subclass and provides all of the attributes Werkzeug defines. This just shows a quick overview of the most important ones.

form

A ~werkzeug.MultiDict with the parsed form data from POST or PUT requests. Please keep in mind that file uploads will not end up here, but instead in the files attribute.

args

A ~werkzeug.MultiDict with the parsed contents of the query string. (The part in the URL after the question mark).

values

A ~werkzeug.CombinedMultiDict with the contents of both form and args.

cookies

A dict with the contents of all cookies transmitted with the request.

stream

If the incoming form data was not encoded with a known mimetype the data is stored unmodified in this stream for consumption. Most of the time it is a better idea to use data which will give you that data as a string. The stream only returns the data once.

data

Contains the incoming request data as string in case it came with a mimetype Flask does not handle.

files

A ~werkzeug.MultiDict with files uploaded as part of a POST or PUT request. Each file is stored as ~werkzeug.FileStorage object. It basically behaves like a standard file object you know from Python, with the difference that it also has a ~werkzeug.FileStorage.save function that can store the file on the filesystem.

environ

The underlying WSGI environment.

method

The current request method (POST, GET etc.)

path

script_root

url

base_url

url_root

Provides different ways to look at the current URL. Imagine your application is listening on the following URL:

http://www.example.com/myapplication

And a user requests the following URL:

http://www.example.com/myapplication/page.html?x=y

In this case the values of the above mentioned attributes would be the following:

path /page.html
script_root /myapplication
base_url http://www.example.com/myapplication/page.html
url http://www.example.com/myapplication/page.html?x=y
url_root http://www.example.com/myapplication/

is_xhr

True if the request was triggered via a JavaScript XMLHttpRequest. This only works with libraries that support the X-Requested-With header and set it to XMLHttpRequest. Libraries that do that are prototype, jQuery and Mochikit and probably some more.

json

Contains the parsed body of the JSON request if the mimetype of the incoming data was application/json. This requires Python 2.6 or an installed version of simplejson.

Response Objects

flask.Response

headers

A Headers object representing the response headers.

status_code

The response status as integer.

Sessions

If you have the Flask.secret_key set you can use sessions in Flask applications. A session basically makes it possible to remember information from one request to another. The way Flask does this is by using a signed cookie. So the user can look at the session contents, but not modify it unless he knows the secret key, so make sure to set that to something complex and unguessable.

To access the current session you can use the session object:

The session object works pretty much like an ordinary dict, with the difference that it keeps track on modifications.

The following attributes are interesting:

new

True if the session is new, False otherwise.

modified

True if the session object detected a modification. Be advised that modifications on mutable structures are not picked up automatically, in that situation you have to explicitly set the attribute to True yourself. Here an example:

# this change is not picked up because a mutable object (here
# a list) is changed.
session['objects'].append(42)
# so mark it as modified yourself
session.modified = True

permanent

If set to True the session life for ~flask.Flask.permanent_session_lifetime seconds. The default is 31 days. If set to False (which is the default) the session will be deleted when the user closes the browser.

Application Globals

To share data that is valid for one request only from one function to another, a global variable is not good enough because it would break in threaded environments. Flask provides you with a special object that ensures it is only valid for the active request and that will return different values for each request. In a nutshell: it does the right thing, like it does for request and session.

g

Just store on this whatever you want. For example a database connection or the user that is currently logged in.

Useful Functions and Classes

current_app

Points to the application handling the request. This is useful for extensions that want to support multiple applications running side by side.

url_for

abort(code)

Raises an ~werkzeug.exception.HTTPException for the given status code. For example to abort request handling with a page not found exception, you would call abort(404).

param code

the HTTP error code.

redirect

send_file

escape

Markup

Message Flashing

flash

get_flashed_messages

Returning JSON

jsonify

json

If JSON support is picked up, this will be the module that Flask is using to parse and serialize JSON. So instead of doing this yourself:

try:
    import simplejson as json
except ImportError:
    import json

You can instead just do this:

from flask import json

For usage examples, read the json documentation.

The ~json.dumps function of this json module is also available as filter called |tojson in Jinja2. Note that inside script tags no escaping must take place, so make sure to disable escaping with |safe if you intend to use it inside script tags:

html+jinja

<script type=text/javascript>

doSomethingWith({{ user.usernamesafe }});

</script>

Note that the |tojson filter escapes forward slashes properly.

Template Rendering

render_template

render_template_string

get_template_attribute

Configuration

Config