写出用爬虫获取股票交易信息python代码
时间: 2024-01-21 16:03:40 浏览: 107
Python爬虫抓取股票资料
以下是一个简单的用 Python 爬虫获取股票交易信息的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 要获取的股票代码
stock_code = '600519'
# 请求页面
url = f'http://quote.eastmoney.com/{stock_code}.html'
response = requests.get(url)
# 解析页面
soup = BeautifulSoup(response.text, 'html.parser')
price = soup.find('strong', {'class': 'value'}).text # 当前股价
change = soup.find('span', {'class': 'change'}).text # 涨跌额
percent = soup.find('span', {'class': 'percent'}).text # 涨跌幅
# 输出结果
print(f'股票代码:{stock_code}')
print(f'当前股价:{price}')
print(f'涨跌额:{change}')
print(f'涨跌幅:{percent}')
```
该代码使用了 requests 库来发送 HTTP 请求,使用 BeautifulSoup 库来解析 HTML 页面,从而获取股票的实时价格、涨跌额和涨跌幅等信息。需要注意的是,该代码只适用于东方财富网的股票页面,如果要获取其他网站的股票信息,需要对代码进行相应的修改。
阅读全文