local p = {}
function p.retrieval(frame)
local list=mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist CC' } )
local object=tonumber(frame.args.object)
local title=tonumber(frame.args.title)
return tostring(list['songs'][title][object])
end
return p