User:-JSON example-
Revision as of 11:54, 30 September 2013 by Luisa Moura (talk | contribs) (Luisa Moura moved page -JSON example- to User:-JSON example-)
import turtle
import urllib2
import json
url = "http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?v=2&alt=jsonc"
f = urllib2.urlopen(url)
data = json.load(f)
things = data['data']['items']
for i in things:
print i['category']