I\'m working on a small application using Google App Engine which makes use of the Quora RSS feed. There is a form, and based on the input entered by the user, it will outpu
Python is likely trying to decode a unicode string into a normal str with the ascii codec and is failing. When you're working with unicode data you need to decode it:
content = content.decode('utf-8')
In my AppEngine app, I convert it like:
content = unicode(content)
I think it more clear and easy to use.