User:-JSON example-: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "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(...")
 
m (Luisa Moura moved page -JSON example- to User:-JSON example-)
(No difference)

Revision as of 12:54, 30 September 2013

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']