Источник: http://www.tipfy.org/wiki/guide/request/
Объект Запрос содержит всю информацию, переданную клиентом приложения. Из него вы получите значения GET и POST, загруженные файлы, файлы cookie и информацию заголовка и многое другое. Все эти вещи настолько распространены, что вы к этому привыкнете.
Чтобы получить доступ к объекту Request , просто импортируйте переменную request из tipfy:
from tipfy import request
# GET
request.args.get('foo')
# POST
request.form.get('bar')
# FILES
image = request.files.get('image_upload')
if image:
# User uploaded a file. Process it.
# This is the filename as uploaded by the user.
filename = image.filename
# This is the file data to process and/or save.
filedata = image.read()
else:
# User didn't select any file. Show an error if it is required.
pass