import json
import requests
import sys
exampleURL = 'https://apps.runescape.com/runemetrics/quests?user=Marebelle'
questName = 'All Fired Up'
response = requests.get(exampleURL)
if response.status_code==200:
questData = response.content.decode('utf-8')
how can I search for questName and have it print this only {"title":"All Fired Up","status":"COMPLETED","difficulty":1,"members":true,"questPoints":1,"userEligible":true}
sorry for bad formatting, any help is appreciated, thanks!