bottle.request.cookies

Here are the examples of the python api bottle.request.cookies taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : avrateNG.py
with GNU General Public License v3.0
from Telecommunication-Telemedia-Assessment

def reset_cookies(db, config):
    """
    perfrom a reset of the cookies, this is only for internal usage,
    in case avrateNG needs to be resetted
    """
    for cookie in request.cookies:
        response.set_cookie(cookie, '', expires=0)


def get_and_check_playlist(playlistfilename):