web.py is not based on CherryPy. web.py uses WSGI server provided by
CherryPy as development web server and it not used when you are
running your app with apache, lighttpd or app engine.
Anand
class foo_handler:
def GET(self):
# do whatever
POST = GET
-- Chris