用python获取https://www.liaoxuefeng.com/wiki/1016959663602400#0这个网站的所有超链接
时间: 2023-12-01 12:02:22 浏览: 144
Python提取网页中超链接的方法
可以使用Python中的requests和BeautifulSoup库来获取超链接。
以下是示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = "https://www.liaoxuefeng.com/wiki/1016959663602400#0"
# 请求网页
response = requests.get(url)
# 解析HTML
soup = BeautifulSoup(response.text, "html.parser")
# 获取所有超链接
links = []
for link in soup.find_all("a"):
href = link.get("href")
if href and href.startswith("http"):
links.append(href)
# 打印所有超链接
for link in links:
print(link)
```
此代码将获取该网站中所有以“http”开头的超链接,并将其打印出来。
阅读全文