欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python定时器检查工作日

程序员文章站 2022-02-19 06:33:54
...
import requests
import json
url='http://api.haoshenqi.top/holiday?{0}'#2020-07-11
# status: 0普通工作日1周末双休日2需要补班的工作日3法定节假日
date='2020-06-20'
s=requests.get(url.format(date)).text
code=json.loads(s)[0]['status']
if code==0 or code==2:
    print('上班执行')
if code==1:
    if datetime.datetime.strptime(date,'%Y-%m-%d').strftime("%w")=='6':
        print('上班执行')