注释都有,看代码
# coding=utf-8
import json, requests
reopen_nos = 3 #全局参数:默认函数失败重试次数class WhTime:def work_time(self,data_time,reopen_no=reopen_nos): #日期格式YYYY-MM-DD,传2024-5-3和2024-05-03均兼容for ii in range(reopen_no):try:year, month, day = data_time.split('-')headers = {"Content-Type": "application/json;charset=UTF-8"}param = {"query":f'{int(year)}' + "年" + f'{int(month)}' + "月","resource_id":"39043","t":"1718610173506","ie":"utf8","oe":"gbk","format":"json","tn":"wisetpl","cb":""}wh_json = requests.get(url="https://sp0.baidu.com/8aQDcjqpAAV3otqbppnN2DJv/api.php",headers=headers,params=param).textmonth_data = json.loads(wh_json)["data"][0]["almanac"] #返回结果 除了查询月、还包含上一个月和下一个月not_work_day = []for i in month_data: #提取休息日if i["cnDay"] == '日' or i["cnDay"] == '六':if 'status' in i:if i["status"] == "2": # 周末的工作日。显示“班”的日期continueelse: # 普通周末时间not_work_day.append(i)continueelse: # 普通周末时间。(接口中,如果左上角没有特殊表示,则不会返回status)not_work_day.append(i)continueif 'status' in i and i["status"] == "1": # status为1的时候表示休息日。即百度工具左上角显示“休”的日期not_work_day.append(i)not_work_days = []for a in not_work_day: #将休息日列表 格式化2024-5-3not_work_days.append(a["year"] + "-" + a["month"] + "-" + a["day"])if f'{int(year)}-{int(month)}-{int(day)}' in not_work_days:return 1,"休息日"else:return 0,"工作日"except requests.RequestException as e:print(f'——————>>>日期 {data_time} 查询第 {ii+1} 次失败,requests请求异常,error:{e}')except Exception as e:print(f'——————>>>日期 {data_time} 查询第 {ii+1} 次失败,响应内容{wh_json.text},error:{e}')www = WhTime()
print(www.work_time('2024-9-29'))