如何加入链接 Python,Python中如何添加链接
原创在Python中,可以使用多种方法加入链接,最常用的是使用requests
库来发送HTTP请求,并通过响应对象获取链接内容,另一种方法是使用BeautifulSoup
库来解析HTML文档,并从中提取链接信息。
使用requests库加入链接
你需要安装requests
库,可以使用pip来安装:
pip install requests
import requests 发送GET请求 response = requests.get('https://Python1991.cn') 获取链接内容 links = response.text 打印链接内容 print(links)
使用BeautifulSoup库加入链接
你需要安装BeautifulSoup
库,可以使用pip来安装:
pip install beautifulsoup4
from bs4 import BeautifulSoup import requests 发送GET请求 response = requests.get('https://python1991.cn') 解析HTML文档 soup = BeautifulSoup(response.text, 'html.parser') 提取链接信息 links = soup.find_all('a') 打印链接信息 for link in links: print(link.get('href'))