I think it is easier and faster to work with json instead of xml. For
flick api, you can change response to json easily:
http://www.flickr.com/services/api/response.json.html

As for how to process json in your app:

from django.utils import simplejson
from google.appengine.api import urlfetch

url = 'your flickr url'
try:
  response = urlfetch.fetch(url)
  result = simplejson.loads(content, 'iso8859-1')
except Exception, e:
  logging.error('ah man')
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to