遇到只输出一行,第二行是crew failed问题的解决方法如下:
将html_parser.py模块中的_get_new_data()方法中的这一句代码:
title_node = soup.find('dd', class_="lemmaWgt-lemmaTitle-title".find("h1"))
改为:
title_node = soup.find('dd', class_="lemmaWgt-lemmaTitle-title")
即去掉.find("h1")
2016/9/4
将html_parser.py模块中的_get_new_data()方法中的这一句代码:
title_node = soup.find('dd', class_="lemmaWgt-lemmaTitle-title".find("h1"))
改为:
title_node = soup.find('dd', class_="lemmaWgt-lemmaTitle-title")
即去掉.find("h1")
2016/9/4
2016-09-04
最赞回答 / 慕粉3777834
def output_html(self): fout=open('output.html','w',encoding='utf-8') fout.write('<html>') fout.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />') fout.write('<body>') fout.write('<table>')...
2016-09-02