eclipse自动导入包,前提,是选择。。。记住,是选择的提示文字才会自动导入包,所以正则不出来的可以导一下包,4:49秒的时候可以看到老师的程序里是有re这个包的
2017-11-15
python2.7
TypeError: 'module' object is not callable 使用import urlparse
NoneType' object has no attribute 'get_text' 少打一个括号title_node=soup.find('dd',class_="lemmaWgt-lemmaTitle-title").find("h1")
res_data['title']=title_node.get_text()
中文乱码 添加fout.write('<meta charset="utf-8">')
TypeError: 'module' object is not callable 使用import urlparse
NoneType' object has no attribute 'get_text' 少打一个括号title_node=soup.find('dd',class_="lemmaWgt-lemmaTitle-title").find("h1")
res_data['title']=title_node.get_text()
中文乱码 添加fout.write('<meta charset="utf-8">')
2017-11-13
python2.7 要使用 import urlparse
title_node=soup.find('dd',class_="lemmaWgt-lemmaTitle-title".find("h1"))
if title_node is None:
return
res_data['title']=title_node.get_text()
同理summary_node也要判断是否为空
title_node=soup.find('dd',class_="lemmaWgt-lemmaTitle-title".find("h1"))
if title_node is None:
return
res_data['title']=title_node.get_text()
同理summary_node也要判断是否为空
2017-11-13
敲了半天的 pip install beautifulsoup 报错了google了一番还是没解决 原来后面还有一个4 [捂脸]
2017-11-13
输出一堆看不懂东西的同学试试这样,将数据转换为UTF-8字符串就能正常显示网页源代码了
print(str(response3.read(), 'utf-8'))
print(str(response3.read(), 'utf-8'))
2017-11-11