I have this json response:
"dataDeNascimento":"1980-03-30T00:00:00",
What i need is to the response be like this:
30/03/1980
The part of my code how represente this json:
response = session.get(url, headers=headers)
resp_json2 = response.json()
nascimento = resp_json2['dataDeNacimento']
If you guys can help me i appreciate.