0

記事を表示する Web ページを解析しました。解析したデータをテキスト ファイルに保存したいのですが、Python シェルに次のようなエラーが表示されます。

UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 107: ordinal not in range(128)

ここに私のコードの一部があります

search_result = urllib.urlopen(url)
f = search_result.read()
#xml parsing
parsedResult = xml.dom.minidom.parseString(f)
linklist = parsedResult.getElementsByTagName('link') #extracting links
extractedURL = linklist[3].firstChild.nodeValue #pick one link
page = urllib.urlopen(extractedURL).read()
#making html file
g= open('yyyy.html', 'w') 
g.write(page)
g.close()
#reading html file and parsing html to get pure text of article
g= open('yyyy.html', 'r')
bs = BeautifulSoup(g,fromEncoding="utf-8")
g.close()
article = bs.find(id="articleBody")
content = article.get_text()
#save as a text file
h= open('yyyy.txt', 'w')
h.write(content)
h.close()

これを機能させるには何を追加すればよいですか?

4

2 に答える 2

0

ユニコードを使用してみてください:

from unidecode import unidecode

unidecode(page)
于 2013-05-08T16:21:33.933 に答える