Tornado iframe src

Estoy tratando de usar un iframe de la siguiente manera:

<iframe src="????" width="350" height="500"></iframe>

donde el servidor Tornado se ve así:

class FrameHandler(RequestHandler):
    def get(self):
        user = self.get_argument("username")
        self.set_cookie("user", user)
        out = tableizer(user)
        self.render('messages.html',table=out)

application = tornado.web.Application(
    [
        (r"/frame", FrameHandler),
    ], 
    debug=True,
    template_path=os.path.join(os.path.dirname(__file__), ""),
    static_path=os.path.join(os.path.dirname(__file__), "static"),
)

¿Cómo consigo que mi iframe muestre messages.html?

Respuestas a la pregunta(1)

Su respuesta a la pregunta