获取百度首页中的子链接地址
Posted yanwuming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取百度首页中的子链接地址相关的知识,希望对你有一定的参考价值。
import os import requests from bs4 import BeautifulSoup import lxml def Gethtml(url): response=requests.get(url) response.encoding="utf-8" # print(response.text) return response.content def parseHtml(html): msg=BeautifulSoup(html,features="lxml") for item in msg.findAll("a"): print(item.get("href")) #print(msg) url="http://wwww.baidu.com" #Gethtml(url) parseHtml(Gethtml(url))
以上是关于获取百度首页中的子链接地址的主要内容,如果未能解决你的问题,请参考以下文章