darwin (owner)

Revisions

  • 95abbf woid Fri Nov 28 09:23:21 -0800 2008
  • 098b92 woid Fri Nov 28 09:22:43 -0800 2008
gist: 30025 Download_button fork
public
Public Clone URL: git://gist.github.com/30025.git
Embed All Files: show embed
Python #
1
2
3
4
5
6
7
8
9
from google.appengine.api import urlfetch
 
...
 
r = urlfetch.fetch('http://api.flickr.com/services/rest/?'+parameters)
response = simplejson.loads(r.content, object_hook = Response)
#response = simplejson.load(urllib.urlopen('http://api.flickr.com/services/rest/', parameters), object_hook = Response)