增加提醒功能,工作日周报月报日报提醒

This commit is contained in:
TechShrimp
2023-10-01 21:47:07 +08:00
parent 86bb4ae242
commit 2b26698bd7
5 changed files with 69 additions and 3 deletions

10
main.py
View File

@@ -6,6 +6,7 @@ import signal
from wcferry import Wcf
from configuration import Config
from report_reminder import ReportReminder
from robot import Robot
@@ -23,7 +24,6 @@ def weather_report(robot: Robot) -> None:
robot.sendTextMsg(report, r)
# robot.sendTextMsg(report, r, "nofity@all") # 发送消息并@所有人
def main():
config = Config()
wcf = Wcf(debug=True)
@@ -38,7 +38,9 @@ def main():
robot.LOG.info("正在启动机器人···")
# 机器人启动发送测试消息
robot.sendTextMsg("机器人启动成功!", "filehelper")
# robot.sendTextMsg("机器人启动成功!", "filehelper")
# 打印全部微信联系人
print(robot.getAllContacts())
# 接收消息
# robot.enableRecvMsg() # 可能会丢消息?
@@ -48,7 +50,9 @@ def main():
robot.onEveryTime("07:00", weather_report, robot=robot)
# 每天 7:30 发送新闻
robot.onEveryTime("07:30", robot.newsReport)
#robot.onEveryTime("07:30", robot.newsReport)
robot.onEveryTime("21:42", ReportReminder.remind, robot=robot)
# 让机器人一直跑
robot.keepRunningAndBlockProcess()