代码语言:javascript复制
import pandas
import datetime
import requests
#print(pandas.show_versions())
today = datetime.datetime.now().strftime('%Y-%m-%d')
data = pandas.read_excel('排班表2021.6.8.xlsx',sheet_name='Sheet1')
for row in data.values:
if today == str(row[0])[0:10]:
if '王XX' == row[2]:
token = 'XXXXXXXXXX'
title= str(row[0])[0:10] row[2] '今天值班'
content = ' '
url = 'http://pushplus.hxtrip.com/send?token=' token '&title=' title '&content=' content '&template=html&topic=0'
requests.get(url)
1、获取今天时间,需要和excel中的日期匹配
2、读取excel文件
3、遍历读取excel的每一行
4、判断excel每一行第1列日期数值等于今天
5、判断excel每一行第3️列的姓名为某人
6、组合文字
7、推送到微信公众号
8、云服务器任务计划程序,定时每天几点钟启动程序