python爬取东方财富
时间: 2023-11-12 19:59:05 浏览: 106
好的,针对您的问题,可以使用Python中的requests和BeautifulSoup库来爬取东方财富网站的数据。具体步骤如下:
1. 使用requests库发送HTTP请求,获取网页源代码。
2. 使用BeautifulSoup库解析网页源代码,提取需要的数据。
3. 将提取的数据保存到本地或者进行进一步的数据分析。
以下是一个简单的示例代码,可以爬取东方财富网站上的股票数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://quote.eastmoney.com/center/gridlist.html#hs_a_board'
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
# 提取股票名称和价格
for item in soup.select('.grid-body .tbody tr'):
name = item.select('.name a')[0].text
price = item.select('.nowrap span')[0].text
print(name, price)
```
阅读全文