from mod_python import apache, Session def index(req): req.content_type = "text/html" str = """ Kirjautumispalvelu

Tervetuloa %s

test2.py

uloskirjautuminen

""" %req.session["name"] return str