File "C:\Users\Administrator\workspace\imooc\baike_spider\html_parser.py", line 26, in _get_new_data
res_data['summary']=summary_node.get_text()
AttributeError: 'NoneType' object has no attribute 'get_text'
res_data['summary']=summary_node.get_text()
AttributeError: 'NoneType' object has no attribute 'get_text'
2017-07-07
craw 1 : http://baike.baidu.com/item/Python
craw failed
输出结果就是这个 第一条还正常 之后就错误
craw failed
输出结果就是这个 第一条还正常 之后就错误
2017-07-07
最赞回答 / 萌蛋小土逗3240437
href=re.compile(r"/item/")测试通过,放心用,就是这么简单,不要想的太复杂。正则表达式就是模糊查询,有时候不需要那么细化
2017-07-07
最新回答 / szhshr3364158
def add_new_urls(self,urls): if urls is None or len(urls)==0 : return for url in urls: self.add_new_url(url)<...code...>
2017-07-06