I am trying to parse a response.text that I get when I make a request using the Python Requests library. For example:
response.text
request
def check_user(s
Since the output, response, appears to be a dictionary, you should be able to do
response
result = self.response.json().get('result') print(result)
and have it print
'success'