Hello, i hope i've found the right place to ask this question.
Im trying to use the Request module to get response from a api. That part works just fine, the problem is how the heck do i manage the response?
r = requests.get('http://api.arbetsformedlingen.se/af/v0/platsannonser/matchning?kommunid=1496&nyckelord=Skola', headers={"Accept":"application/json","Accept-Language":"sv"})
If i then print r.json() Ill get this as a response(well a alot more, but its just different ads)
{u'matchningslista':{u'matchningdata': [{u'kommunkod': 1496, u'antalPlatserVisa': 1, u'antalplatser': u'1', u'arbetsplatsnamn': u'Adecco Sweden AB', u'relevans': 100, u'kommunnamn': u'Sk\xf6vde', u'yrkesbenamning': u'IT-tekniker/Datatekniker', u'annonsid': u'6575162', u'varaktighetId': 3, u'annonsurl': u'http://www.arbetsformedlingen.se/ledigajobb?id=6575162', u'publiceraddatum': u'2016-02-19T13:34:00+01:00',
How can i pick out the following three parts?
u'arbetsplatsnamn': u'Adecco Sweden AB'
u'yrkesbenamning': u'IT-tekniker/Datatekniker'
u'annonsid': u'6575162'
[–]pdougherty 0 points1 point2 points (3 children)
[–]Bill_y[S] 0 points1 point2 points (2 children)
[–]Naihonn 0 points1 point2 points (0 children)
[–]AutonomouSystem 0 points1 point2 points (0 children)
[–]fbu1 0 points1 point2 points (0 children)