Sou novo no Python e estou "agarrado" em um problema, segue o código :
response = requests.get("http://www.testecliente.com.br/ApiTeste/GetDadosCartaoCliente?CL_COD=1" )
retorno = response.content
retorno = retorno.decode("utf-8")
json_data = json.loads(retorno)
CL_NOME = json_data['CL_NOME']
print ("NOME=" + CL_NOME)
aparece o seguinte erro :
TypeError : string indices must be integers
se eu mando imprimir o json_data aparece :
{"CC_COD":16,"CL_COD":40,"CC_NUMERO_CARTAO":"68453217628884","CC_BANDEIRA":"visa","CC_VALIDADE":"09/21","CC_COD_SEGURANCA":"188","CC_FUNCAO":"C","CC_PRINCIPAL":"S","CL_NOME":"Alexandre Luiz"}
Se eu mando imprimir o tipo print (type(json_data)) aparece : <class 'str'>
alguém pode me ajudar ?