BeautifulSoup Prettify在版权符号上失败

时间:2012-07-12 17:09:36

标签: python unicode beautifulsoup prettify

我收到Unicode错误:UnicodeEncodeError: 'charmap' codec can't encode character u'\xa9' in position 822: character maps to <undefined>

这似乎是一个标准的版权符号,在HTML中是&amp; copy。我无法找到解决方法。我甚至尝试了一个自定义函数来替换副本用空格,但也失败了同样的错误。

import sys
import pprint
import mechanize
import cookielib
from bs4 import BeautifulSoup
import html2text
import lxml

def MakePretty():

def ChangeCopy(S):
    return S.replace(chr(169)," ")
br = mechanize.Browser()

# Cookie Jar
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)

# Browser options
br.set_handle_equiv(True)
#br.set_handle_gzip(True)
br.set_handle_redirect(True)
br.set_handle_referer(True)
br.set_handle_robots(False)

# Follows refresh 0 but not hangs on refresh > 0
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)

# User-Agent (this is cheating, ok?)
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]

# The site we will navigate into, handling its session
# Open the site
br.open('http://www.thesitewizard.com/faqs/copyright-symbol.shtml')
html = br.response().read()
soup = BeautifulSoup(html)
print soup.prettify()

if __name__ == '__main__':
    MakePretty()

如何通过版权符号获得美化?我已经在网上搜索了一个无效的解决方案(或者我可能不理解,因为我对Python和刮擦相当新)。

感谢您的帮助。

4 个答案:

答案 0 :(得分:26)

我遇到了同样的问题。这可能对您有用:

print soup.prettify().encode('UTF-8')

答案 1 :(得分:1)

发送页面http://www.thesitewizard.com/faqs/copyright-symbol.shtml时未指定字符编码。页面本身在meta标记中指定编码为ISO-8859-1,但仅在出现“©”字符后。所以客户必须猜测,猜测可能是错误的。如果客户端猜测UTF-8,那么它将看到位A9,这是UTF-8数据中的数据错误。

所以看起来你需要在读取数据时设置编码(到ISO-8859-1,或者更安全地设置到windows-1252)。这当然只是一个临时解决方案;一般来说修复编码是没有意义的。

答案 2 :(得分:0)

你正在使用chr(),这在这里是错误的,因为它只需要ASCII并且只能达到127 / 0x7F(尽管流行的民间传说,ASCII只是7位)。 0xA9 /©是Unicode,因此您应该使用unichr(169)

答案 3 :(得分:0)

只是在格式化程序功能中更改为unichr不起作用。使用decode(formatter = blah)结束,它确实返回了没有版权符号的未格式化的html。保存了那个html,然后把它变成了美化,这就是伎俩。