我最近问了这个关于在 BeautifulSoup 中编码印地语字符的问题。该问题的答案确实解决了该问题,但是我还有另一个问题。
我的代码是:
import urllib2
from bs4 import BeautifulSoup
htmlUrl = "http://archives.ndtv.com/articles/2012-01.html"
FileName = "NDTV_2012_01.txt"
fptr = open(FileName, "w")
fptr.seek(0)
page = urllib2.urlopen(htmlUrl)
soup = BeautifulSoup(page, from_encoding="UTF-8")
li = soup.findAll( 'li')
for link_tag in li:
hypref = link_tag.find('a').contents[0]
strhyp = hypref.encode('utf-8')
fptr.write(strhyp)
fptr.write("\n")
我得到一个错误
Traceback (most recent call last):
File "./ScrapeTemplate.py", line 29, in <module>
hypref = link_tag.find('a').contents[0]
IndexError: list index out of range
当我替换print strhyp
而不是fptr.write()
. 我该如何解决?
编辑:代码中有一个我没有发现的错误。修复了它,但我仍然遇到同样的错误。