Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Check out: <a href="http://www.voidspace.org.uk/python/articles/urllib2.shtml" rel="nofollow">http://www.voidspace.org.uk/python/articles/urllib2.shtml</a></p> <pre><code>&gt;&gt;&gt; import urllib2 &gt;&gt;&gt; import json &gt;&gt;&gt; req = urllib2.Request("http://vimeo.com/api/v2/video/31161781.json") &gt;&gt;&gt; response = urllib2.urlopen(req) &gt;&gt;&gt; content_string = response.read() &gt;&gt;&gt; content_string '[{"id":31161781,"title":"Kevin Fanning talks about hiring for Boston startups","description":"CogoLabs.com talent developer and author Kevin Fanning talks about hiring for small teams in Boston, how job seekers can make themselves more attractive, and why recruiters should go the extra mile to attract talent.","url":"http:\\/\\/vimeo.com\\/31161781","upload_date":"2011-10-26 15:37:35","thumbnail_small":"http:\\/\\/b.vimeocdn.com\\/ts\\/209\\/777\\/209777866_100.jpg","thumbnail_medium":"http:\\/\\/b.vimeocdn.com\\/ts\\/209\\/777\\/209777866_200.jpg","thumbnail_large":"http:\\/\\/b.vimeocdn.com\\/ts\\/209\\/777\\/209777866_640.jpg","user_name":"Venture Cafe","user_url":"http:\\/\\/vimeo.com\\/venturecafe","user_portrait_small":"http:\\/\\/b.vimeocdn.com\\/ps\\/605\\/605070_30.jpg","user_portrait_medium":"http:\\/\\/b.vimeocdn.com\\/ps\\/605\\/605070_75.jpg","user_portrait_large":"http:\\/\\/b.vimeocdn.com\\/ps\\/605\\/605070_100.jpg","user_portrait_huge":"http:\\/\\/b.vimeocdn.com\\/ps\\/605\\/605070_300.jpg","stats_number_of_likes":0,"stats_number_of_plays":43,"stats_number_of_comments":0,"duration":531,"width":640,"height":360,"tags":"startup stories, entrepreneurship, interview, Venture Cafe, jobs","embed_privacy":"anywhere"}]' &gt;&gt;&gt; loaded_content = json.loads(content_string) &gt;&gt;&gt; type(content_string) &lt;type 'str'&gt; &gt;&gt;&gt; type(loaded_content) &lt;type 'list'&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload