UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 38: ordinal not in range(128)
I am downloading a website and then printing its contents...simple. Do I have to encode it somehow?
|
|
|
|
|
|
|
Try utf-8 for start. Website you download might have different charset than ANSI and those extra characters can not be printed on console. So in place where you do |
||
|
|
|
|
Make sure you have Putty configured to accept UTF-8 encoded data. |
||
|
|
|
In Python 3 the default charset guess for
|
||
|
|