def parse_response(self, response): response_dict = AWSQueryRequest.parse_response(self, response) useful_keys = list(filter(lambda x: x != "ResponseMetadata", response_dict.keys())) if len(useful_keys) == 1: return response_dict[useful_keys[0]] or {} else: return response_dict
def parse_response(self, response): response_dict = AWSQueryRequest.parse_response(self, response) useful_keys = list( filter(lambda x: x != 'ResponseMetadata', response_dict.keys())) if len(useful_keys) == 1: return response_dict[useful_keys[0]] or {} else: return response_dict
def parse_response(self, response): response_dict = AWSQueryRequest.parse_response(self, response) return strip_response_metadata(response_dict)
def __init__(self, **kwargs): AWSQueryRequest.__init__(self, **kwargs)