On 2016-08-19, Larry Martell <larry.mart...@gmail.com> wrote: > fd.write(request.POST[key])
You could try: request.encoding = "iso-8859-1" fd.write(request.POST[key].encode("iso-8859-1")) It's hacky and nasty and there might be a better "official" method but I think it should work. -- https://mail.python.org/mailman/listinfo/python-list