I\'m trying to write my first app in Google App Engine with Python (link of the app: http://contractpy.appspot.com/ - it\'s just an experimental app). The entire code is bel
Set default encoder at the top of your code
In appcfg.py which resides inside /google/appengine/tools/appcfg.py
on line 73 add
import sys reload(sys) sys.setdefaultencoding("ISO-8859-1")