爬取https://quote.cngold.org/gjs/swhj_zghj.html网站黄金的价格
时间: 2023-11-22 17:35:25 浏览: 63
好的,我可以使用Python中的requests和BeautifulSoup库来实现网页数据的爬取。以下是示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://quote.cngold.org/gjs/swhj_zghj.html'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
price = soup.find('span', class_='zx').text
print(f"黄金价格:{price}")
```
这段代码首先使用requests库发送一个GET请求获取网页的HTML代码,然后使用BeautifulSoup库解析HTML代码,找到页面上的黄金价格并打印出来。注意,这里的价格是字符串类型,需要进行进一步的处理才能进行数值计算。
阅读全文