首页 > 代码库 > 利用python 获取网址中的href(基于python 3.6)
利用python 获取网址中的href(基于python 3.6)
import urllib.request
from bs4 import BeautifulSoup
def get_link(page): # 寻找链接的href
linkData = http://www.mamicode.com/[]
for page in page.find_all(‘td‘):
links = page.select("a")
for each in links:
# if str(each.get(‘href‘))[:1] == ‘/‘: 过滤if代码
data=http://www.mamicode.com/each.get(‘href‘)
linkData.append(data)
return(linkData)
def findAll(): #主函数
url=‘http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/nosofs.v3.0.4/‘
page = urllib.request.urlopen(url).read()
soup = BeautifulSoup(page,‘lxml‘) #利用BeautifulSoup取得网页代码
links=get_link(soup)
# print(links)
for childLink in links:
#print(childLink )
links2=url+childLink
print(links2 )
利用python 获取网址中的href(基于python 3.6)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。