def __str__( self ): ''' Return a str representation of this fuzzable request. ''' strRes = '[[JSON]] ' strRes += self._url strRes += ' | Method: ' + self._method strRes += ' | JSON: (' strRes += json.dumps(self._dc) strRes += ')' return strRes
def getData( self ): ''' @return: A string that represents the JSON data saved in the dc. ''' res = json.dumps(self._dc) return res