Essentially I have a dictionary that looks like this.
dictionary = { 'key': [ { 'key': 'value', etc.. } etc...] }
I want a list of just 'value'. I'm quite new, so how can I go about this? Thanks.
dictionary = {
"candles":[
{
"open": 78.21,
"high": 78.28,
"low": 78.12,
"close": 78.2,
"volume": 16417,
"datetime": 1620385200000
},
{
"open": 78.19,
"high": 78.26,
"low": 78.17,
"close": 78.2,
"volume": 5928,
"datetime": 1620387000000
}
[
}