https://data.eastmoney.com/gdhs/用python写个爬虫爬取这个网站,获取股东户数
时间: 2023-06-27 08:03:06 浏览: 101
使用python采集高管持股数据
好的,我会记住您的要求,并且回答您的问题。您可以用Python中的requests和BeautifulSoup库来实现。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://data.eastmoney.com/gdhs/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
table = soup.find_all('table')[0]
rows = table.find_all('tr')[1:]
for row in rows:
td = row.find_all('td')[1]
print(td.text)
```
这个代码会获取页面上第一个表格中的所有行数据,并打印出第二列的文本内容,即股东户数。请注意,网站可能对爬虫进行限制,如果出现问题,请检查并调整代码。
阅读全文