473,379 Members | 1,520 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

[UnicodeEncodeError] Don't know what else to try

Hello

Data that I download from the web seems to be using different code
pages at times, and Python doesn't like this.

Google returned a way to handle this, but I'm still getting an error:
========
print output.decode('utf-8')
File "C:\Python25\lib\encodings\utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe2' in
position 47:
ordinal not in range(128)
========

Here's the code:
========
try:
output = "Different: (%s) %s : %s # %s" %
(id[2],id[3],id[0],id[1])
print output.decode('utf-8')

except UnicodeDecodeError:

try:
output = "Different: (%s) %s : %s # %s" %
(id[2],id[3],id[0],id[1])
print output.decode('iso8859-15')

except UnicodeDecodeError:
output = "Different: (%s) %s : %s # %s" %
(id[2],id[3],id[0],id[1])
print output.decode('cp1252')
========

Am I doing it wrong? Is there something else I should try?

Thank you.
Nov 14 '08 #1
7 5100
print output.decode('utf-8')
File "C:\Python25\lib\encodings\utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe2' in
position 47:
ordinal not in range(128)
Notice that it complains about the 'ascii' codec, when you were using
the utf-8 codec. Also, it complains about *en*coding, when you try
decoding.
For this, there could be two possible causes:

1. output is already a Unicode object - decoding it is not a meaningful
operation. So Python first *en*codes it with ascii, then would decode
it with UTF-8. The first step fails.
2. decoding from utf-8 works fine. It then tries to print output, which
requires an encoding. By default, it encodes as ascii, which fails.
========

Here's the code:
========
try:
output = "Different: (%s) %s : %s # %s" %
(id[2],id[3],id[0],id[1])
Add
print type(output)
here. If it says "unicode", reconsider the next line
print output.decode('utf-8')
Regards,
Martin
Nov 14 '08 #2
On Fri, 14 Nov 2008 11:01:27 +0100, "Martin v. Löwis"
<ma****@v.loewis.dewrote:
>Add
print type(output)
here. If it says "unicode", reconsider the next line
> print output.decode('utf-8')
In case the string fetched from a web page turns out not to be Unicode
and Python isn't happy, what is the right way to handle this, know
what codepage is being used?

Thank you.
Nov 14 '08 #3
On Fri, 14 Nov 2008 14:57:42 +0100, Gilles Ganault wrote:
On Fri, 14 Nov 2008 11:01:27 +0100, "Martin v. Löwis"
<ma****@v.loewis.dewrote:
>>Add
print type(output)
here. If it says "unicode", reconsider the next line
>> print output.decode('utf-8')

In case the string fetched from a web page turns out not to be Unicode
and Python isn't happy, what is the right way to handle this, know what
codepage is being used?
How do you fetch the data? If you simply download it with `urllib` or
`urllib` you never get `unicode` but ordinary `str`\s. The you have to
figure out the encoding by looking at the headers from the server and/or
looking at the fetched data if it contains hints.

And when ``print``\ing you should explicitly *encode* the data again
because sooner or later you will come across a `stdout` where Python
can't determine what the process at the other end expects, for example if
output is redirected to a file.

Ciao,
Marc 'BlackJack' Rintsch
Nov 14 '08 #4
Gilles Ganault wrote:
On Fri, 14 Nov 2008 11:01:27 +0100, "Martin v. Löwis"
<ma****@v.loewis.dewrote:
>Add
print type(output)
here. If it says "unicode", reconsider the next line
>> print output.decode('utf-8')

In case the string fetched from a web page turns out not to be Unicode
and Python isn't happy, what is the right way to handle this, know
what codepage is being used?
Can you first please report what happened when you add the print statement?

Thanks,
Martin
Nov 14 '08 #5
On Fri, 14 Nov 2008 17:39:00 +0100, "Martin v. Löwis"
<ma****@v.loewis.dewrote:
>Can you first please report what happened when you add the print statement?
Thanks guys, I found how to handle this:

===========
for id in rows:
#Says Unicode, but it's actually not
#print type(id[1])
#<type 'unicode'>

try:
print id[1];
except UnicodeEncodeError:
print "Not unicode"
try:
print id[1].encode('iso8859-15')
print "iso"
except UnicodeEncodeError:
print id[1].encode('cp1252')
print "Windows"
===========

Thank you.
Nov 15 '08 #6
On Sat, 15 Nov 2008 14:12:42 +0100, Gilles Ganault wrote:
On Fri, 14 Nov 2008 17:39:00 +0100, "Martin v. Löwis"
<ma****@v.loewis.dewrote:
>>Can you first please report what happened when you add the print
statement?

Thanks guys, I found how to handle this:

===========
for id in rows:
#Says Unicode, but it's actually not
#print type(id[1])
#<type 'unicode'>
If it says `unicode` *it is* `unicode`.
try:
print id[1];
except UnicodeEncodeError:
print "Not unicode"
But it *is* `unicode` if `type()` says so!

Your code still fails when ``id[1]`` can't be encoded in `sys.encoding`,
'iso8859-15', or 'cp1252'. Even worse: The output may be even encoded in
different encodings this way. That's garbage you can't decode properly
with one encoding anymore.

A clean solution would be just one ``print`` with a call of `encode()`
and an explicit encoding. I'd use 'utf-8' as default but give the user
of the program a possibility to make another choice.

Ciao,
Marc 'BlackJack' Rintsch
Nov 15 '08 #7
On Nov 16, 12:12*am, Gilles Ganault <nos...@nospam.comwrote:
On Fri, 14 Nov 2008 17:39:00 +0100, "Martin v. Löwis"

<mar...@v.loewis.dewrote:
Can you first please report what happened when you add the print statement?

Thanks guys, I found how to handle this:
No you didn't.
>
===========
for id in rows:
* * * * #Says Unicode, but it's actually not
If it's not unicode, what is it? What is your basis for that assertion
(which implies there is a bug in the version of Python that you are
using)? The probability that type() ever become so buggy that it
misreports whether a value is unicode or not, is extremely small.
Further the probability that you or I would be the first to notice the
problem is vanishingly small.
* * * * #print type(id[1])
* * * * #<type 'unicode'>
You didn't reply to Martin's question, instead you are tilting at a
windmill whose probability of existence lies between epsilon and zero.
When you ask for help, you should act on reasonable requests from your
helpers. Here's a reasonable request; insert some more verbose
debugging code:
print 'id[1] is', type(id[1]), repr(id[1])
AND tell us what you see, *before* you try to "fix" it.

For the future, please remember these:
(1) When you are worried about exactly what data some name refers to,
do
print 'name is', type(name), repr(name)
(2) Examine the more plausible sources of error first ... here's a
partial ordering: Ganault, ..., Gates, ..., Guido, God :-)

HTH,
John
Nov 15 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Maurice LING | last post by:
Hi, I'm working on a script that searches a public database and retrives results using SOAP interface. However, it seems that the results may contains unicodes. When I try to pump the results...
1
by: Bob Swerdlow | last post by:
My application is getting this error on Windows XP (works fine on Mac OS X) when it calls os.path.expanduser: UnicodeEncodeError: 'ascii' codec can't encode characters in position 52-56: ordinal...
2
by: Francach | last post by:
Hi, I don't know what I'm doing wrong here. I''m using Python 2.4 and py2exe. I get he following error: Traceback (most recent call last): File "notegui.pyc", line 34, in OnClose File...
0
by: Nashat Wanly | last post by:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaskdr/html/askgui06032003.asp Don't Lock Type Objects! Why Lock(typeof(ClassName)) or SyncLock GetType(ClassName) Is Bad Rico...
19
by: LP | last post by:
I am using (trying to) CR version XI, cascading parameters feature works it asks user to enter params. But if page is resubmitted. It prompts for params again. I did set...
8
by: Simon Willison | last post by:
Hi all, I have an API design question. I'm writing a function that can either succeed or fail. Most of the time the code calling the function won't care about the reason for the failure, but...
3
by: erikcw | last post by:
Hi all, I'm trying to parse an email message, but am running into this exception. Traceback (most recent call last): File "wa.py", line 336, in ? main() File "wa.py", line 332, in main...
2
by: xianwei | last post by:
First, typedef struct pair { Node *parent; Node *child; } Pair; static Pair SeekItem(cosnt Item *pI, const Tree *pTree) { Pair look;
2
by: nikosk | last post by:
I just spent a whole day trying to read an xml file and I got stuck with the following error: Exception Type: UnicodeEncodeError Exception Value: 'charmap' codec can't encode characters in...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.