The cherrypy.request object contains request-related objects:
from cherrypy import request
The available information includes:
and so on, see the CherryPy Documentation on the request object for more information.
The cherrypy.response object contains response-related objects:
from cherrypy import response
For example, you can set the following response properties:
and so on, see the CherryPy Documentation on the response object for more information.