Питон странная ошибка
Делаю запрос и решил сделать replace чтобы сделать потом обход капчи, но проблема в том, что делаю replace, а нечего не исчезает( помогите пожалуйста
r = requests.get('https://api.vk.com/method/messages.getHistory?peer_id=-198159163&count=1&access_token=ненене&v=5.131')
resp = r.text
resp = resp.replace('{"response":{"count":10262,"items":[{"date":1624029665,"from_id":-198159163,"id":1732452,"out":0,"peer_id":-198159163,"text":"', '')
resp = resp.replace('","conversation_message_id":10262,"fwd_messages":[],"keyboard":{"one_time":false,"author_id":-198159163,"buttons":[[{"action":{"type":"open_link","label":"Наш магазин VKCOIN","link":"https:\\/\\/vk.com\\/public198787347","payload":"{\"command\":\"test\"}"},"color":"default"}]],"inline":true},"important":false,"random_id":0,"attachments":[],"is_hidden":false}]}}', '')
print(resp)
if 'Вы кликнули и получили 110' in resp:
print('response: Captcha is None')
else:
print('response: Captcha decided')