I am making a request to a URL using python requests and getting the following response
{
"content": {
"root": {
"details":"http://localhost:8080/****/root",
"content": {
"A": {
"details":"http://localhost:8080/***"
},
"B":{
"details":"http://localhost:8080/***"
},
"C":{
"details":"http://localhost:8080/****"
}
}
}
}
}
I want to get the values A, B, C in a list. How can I do that? Any inputs would be of great help.