代码拉取完成,页面将自动刷新
import time
from datetime import datetime, timedelta, timezone
import logging
import sys
import math
if (len(sys.argv) < 2):
exit()
now = datetime.now()
zone_cn = timezone(timedelta(hours=8))
now_cn = now.astimezone(zone_cn)
logging.warning(f'服务器时间:{now}, 北京时间:{now_cn}')
logging.warning(now_cn.hour)
target_hour = -1
hour = now_cn.hour
if (len(sys.argv) == 2 and "-" in sys.argv[1]):
hs = sys.argv[1].split("-")
if hour+1 >= int(hs[0]) and hour+1 <= int(hs[1]):
target_hour = hour+1
else :
for i in range(1, len(sys.argv)):
if (hour < int(sys.argv[i])):
target_hour = int(sys.argv[i])
break
if target_hour == -1:
logging.error(f'木有匹配到对应的参数: {sys.argv[1:]}')
exit()
logging.warning(f'匹配到的参数为: {target_hour}')
if target_hour == 24:
target_hour = 0
target_time = now_cn.replace(hour=target_hour,minute=0, second=0, microsecond=0)
if target_hour == 0:
target_time = target_time + timedelta(days=1)
logging.warning(f'当前时间: {now_cn}, 目标时间: {target_time}')
td = target_time - now_cn
if td.seconds > 3600:
logging.error('时间差大于1小时,退出')
exit()
logging.warning(f'需要沉睡:{td.seconds}秒')
wait = td.seconds+math.floor(td.microseconds/1000)/1000
time.sleep(wait)
logging.warning(f'当前北京时间:{datetime.now().astimezone(zone_cn)}')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。