vote up 1 vote down star

How can I add a hook before and after processing a request on twisted.web (twisted.web2 is fine too)? The equivalent of webpy's:

app = web.application(urls, globals())
app.add_processor(web.loadhook(my_attach_callback))
app.add_processor(web.unloadhook(my_detach_callback))

Thanks!

flag
Can you provide some background on why you'd want to do this? I have read the documentation for web.py's add_processor, but it's rather thin. There are a couple of different points in twisted.web where you could stick a function that would be called. Which one you want depends largely on what you intend to do with it. – Glyph Jul 6 at 14:42

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.