I have a python script that's running periodically on Heroku using their Scheduler add-on. It prints some debug info, but when there's a non-ASCII character in the text, I get an error in the logs like:
SyntaxError: Non-ASCII character '\xc2' in file send-tweet.py on line 40, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
That's when I have a line like this in the script:
print u"Unicode test: £ ’ …"
I'm not sure what to do about this. If I have this in the script:
import locale
print u"Encoding: %s" % locale.getdefaultlocale()[1]
then this is output in the logs:
Encoding: UTF-8
So, why is it trying, and failing, to output other text in ASCII?
UPDATE: FWIW, here's the actual script I'm using. The debugging output's in line 38-39.
# coding=utf8(or perhapsutf-8?) at the top of your file? – alxbl Feb 15 at 16:22printstatement above most certainly does not produce the error when you already declared the encoding, but some other statement. And see my note in the answer below about having to use<str>.encode('utf-8')when writing Unicode characters to a byte-sized stream. – nikola Feb 15 at 17:40printstatement "does not produce the error". It definitely produced the error for me when printing to Heroku's logs. But using<str>.encode('utf-8')got it working, thanks. – Phil Gyford Feb 15 at 17:53