python爬虫爬取股票
时间: 2023-11-08 08:50:18 浏览: 143
Python爬虫抓取股票资料
你可以使用Python中的BeautifulSoup和requests库来爬取股票信息。以下是一个简单的例子:
首先,你需要安装BeautifulSoup和requests库:
```python
pip install beautifulsoup4
pip install requests
```
然后,你可以使用以下代码来爬取股票信息:
```python
import requests
from bs4 import BeautifulSoup
# 股票代码
code = '600519'
# 构造URL
url = f'http://quote.eastmoney.com/{code}.html'
# 发送请求
response = requests.get(url)
# 解析HTML
soup = BeautifulSoup(response.text, 'html.parser')
# 获取股票价格
price = soup.select_one('.price').get_text()
# 获取股票名称
name = soup.select_one('.name').get_text()
# 输出结果
print(f'{name}({code}): {price}')
```
这段代码将爬取贵州茅台(600519)的股票价格并输出。你可以根据需要修改代码以爬取其他股票的信息。
阅读全文