用python 获取https://www.yaopinnet.com/zhongyao1/a1.htm页面的href属性
时间: 2023-05-11 09:06:29 浏览: 124
可以使用Python中的requests和BeautifulSoup库来获取该页面的href属性。以下是示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.yaopinnet.com/zhongyao1/a1.htm'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
for link in soup.find_all('a'):
print(link.get('href'))
```
这段代码将打印出该页面中所有链接的href属性。
阅读全文