课程
/后端开发
/Python
/Python开发简单爬虫
结果 输出 craw 1 : http://baike.baidu.com/view/21087.htm craw failed 就停止了,请问是哪里出错了?
2016-10-23
源自:Python开发简单爬虫 7-5
正在回答
这是什么问题啊
<type 'exceptions.Exception'> : Couldn't find a tree builder with the features you requested: html_parser. Do you need to install a parser library?
请问 您的问题解决了吗?我和您的问题应该是一样的打印出异常是:
<type 'exceptions.Exception'> : _get_new_urls() takes exactly 2 arguments (3 given)
但是还是不知道从何入手
检查你的代码html_parse.py开头是否有以下三行代码(视频中老师是快捷键自动引入了这三个模块)
from bs4 import BeautifulSoup
import re
import urlparse
我一开始也是遇到这个问题,只打印了第一个url。
张草草
craw 1 : http://baike.baidu.com/view/21087.htm
craw filed
找不到错误的地方
同问!我也出现了
except Exception,e: print Exception,":",e
把try的except改一下
except Exception,e:
print Exception,":",e
这样你就可以看到错误信息了
举报
本教程带您解开python爬虫这门神奇技术的面纱