1. 首页
  2. 数据库
  3. 其它
  4. 使用BeautifulSoup爬虫程序获取百度搜索结果的标题和url示例

使用BeautifulSoup爬虫程序获取百度搜索结果的标题和url示例

上传者: 2020-12-31 00:30:29上传 PDF文件 28.88KB 热度 14次
熟悉Java的jsoup包的话,对于Python的BeautifulSoup库应该很容易上手。 复制代码 代码如下:#coding: utf-8import sysimport urllibimport urllib2from BeautifulSoup import BeautifulSoup question_word = “吃货 程序员”url = “http://www.baidu.com/s?wd=” + urllib.quote(question_word.decode(sys.stdin.encoding).encode(‘gbk’))htmlpage = urllib2.url
用户评论