vote up 0 vote down star

I am just trying to retrieve a web page, but somehow a foreign character is embedded in the HTML file. This character is not visible when I use "View Source."

isbn = 9780141187983
url = "http://search.barnesandnoble.com/booksearch/isbninquiry.asp?ean=%s" % isbn
opener = urllib2.build_opener()
url_opener = opener.open(url)
page = url_opener.read()
html = BeautifulSoup(page) 
html #This line causes error.

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 21555: ordinal not in range(128)

I also tried...

html = BeautifulSoup(page.encode('utf-8'))

How can I read this web page into BeautifulSoup without getting this error?

flag

3  
Would you mind giving the actual url? – balpha Aug 24 at 5:37
Done. Was trying to avoid making code more verbose. :) – Ryan Rosario Aug 24 at 5:59
I can't reproduce this; works fine here. I have retrieved the url using your code several times, and there never was a non-ASCII character in the page. – balpha Aug 24 at 6:14
however balpha, you don't want to rely on that and have a remote URL changing content making your applications crash. As a rule, remote URLs always change. – kaizer.se Aug 24 at 11:35
1  
@kaizer.se: I'm totally with you on that, but the first thing to remove bugs is trying to reproduce them. – balpha Aug 24 at 11:53
show 1 more comment

1 Answer

vote up 2 vote down check

This error is probably actually happening when you try to print the representation of the BeautifulSoup file, which will happen automatically if, as I suspect, you are working in the interactive console.

# This code will work fine, note we are assigning the result 
# of the BeautifulSoup object to prevent it from printing immediately.
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(u'\xa0')

# This will probably show the error you saw
print soup

# And this would probably be fine
print soup.encode('utf-8')
link|flag
This is correct. The error was encountered when trying to debug and printing the content to the screen. It is unfortunate that UTF-8 issues make debugging such a challenge, but the code does work correctly as long as I do not print. – Ryan Rosario Aug 24 at 17:52
@Ryan - Trust me - I've been there. Glad this helped. – Triptych Aug 24 at 17:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.