python爬取股票数据代码
时间: 2023-09-27 12:10:57 浏览: 94
python股票爬取
以下是一个简单的 Python 爬取股票数据的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 定义股票代码
stock_code = '600519'
# 构造请求URL
url = f'http://quote.eastmoney.com/{stock_code}.html'
# 发送请求并获取HTML内容
response = requests.get(url)
html = response.content.decode('gbk')
# 解析HTML内容
soup = BeautifulSoup(html, 'html.parser')
# 获取股票名称
stock_name = soup.select_one('.name').text.strip()
# 获取当前股价
stock_price = soup.select_one('.price').text.strip()
# 输出结果
print(f'{stock_name}({stock_code}) 当前股价为 {stock_price} 元。')
```
在这个示例中,我们使用了 requests 库发送 HTTP 请求,并使用 BeautifulSoup 库解析 HTML 内容,从而获取股票名称和当前股价。请注意,股票代码需要根据具体情况进行修改。
阅读全文