提示craw failed
老师 我想增加输出的结果,想把目录和一些简介加上去,我是这样写的:在html_parser中加入
#<div class="basic-info cmn-clearfix">
clear_node=soup.find('div',class_="basic-info cmn-clearfix")
res_data['clear']=clear_node.get_text()
#<div class="lemmaWgt-lemmaCatalog">
catalog_node=soup.find('div',class_="lemmaWgt-lemmaCatalog")
res_data['catalog']=catalog_node.get_text()
在html_outputer中加入
print data['clear'].encode('utf-8')
print data['catalog'].encode('utf-8')
和
fout.write("<td>\t</td>" )
fout.write("<td>%s</td>" % data['summary'].encode('utf-8'))
fout.write("<td>\t</td>" )
fout.write("<td>%s</td>" % data['clear'].encode('utf-8'))
fout.write("<td>\t</td>" )
fout.write("<td>%s</td>" % data['catalog'].encode('utf-8'))
可是还没有效果,请问问题出在哪里