上面的代码是正确的,但是我还想在上面代码的基础上再加上一个功能:在每天20:30的时候自动爬取基金的净值然后输出。
时间: 2024-04-17 14:28:09 浏览: 69
python爬取天天基金净值教程
如果你想在每天的特定时间自动爬取基金净值并输出,你可以结合使用Python的`datetime`模块和`schedule`模块来实现定时任务。以下是修改后的代码示例:
```python
import requests
from bs4 import BeautifulSoup
import schedule
import time
from datetime import datetime
def crawl_net_value():
# 设置基金代号
fund_code = '400015'
# 构造爬取链接
url = f'http://fund.eastmoney.com/{fund_code}.html'
# 发送请求
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser', from_encoding='utf-8')
# 获取基金净值
net_value = soup.find(class_='dataItem02').find_all('span')[1].text
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f'[{current_time}] 基金{fund_code}的净值为:{net_value}')
# 设置定时任务,每天20:30执行一次
schedule.every().day.at("20:30").do(crawl_net_value)
# 保持程序运行,直到手动终止
while True:
schedule.run_pending()
time.sleep(1)
```
在以上代码中,我使用了`schedule`模块来设置定时任务,每天20:30执行`crawl_net_value`函数。`crawl_net_value`函数负责爬取基金净值并输出。
请确保你已经安装了`schedule`模块。运行上述代码后,程序将会每天的20:30自动执行一次爬取基金净值的操作,并将结果输出。你可以根据需要调整定时任务的时间。
注意:为了让程序保持运行,我使用了一个无限循环和`time.sleep(1)`来阻塞程序,直到定时任务被执行。如果你希望在特定时间段内运行该程序,可以根据需要进行修改。
阅读全文