def internal_server_error(self, request): return Response("<h1>error: %s</h1>" % request.description)
def get(self, request): return Response("<h1>hello first response!</h1>")
def delete(self, request): return Response("Method is not supported", status=405)