嗨,我想跟进我的question。我在那里解决了另一个问题。但是我仍然想解决这个问题。是否可以通过APScheduler打印时间?
我用过:
from apscheduler.schedulers.background import BackgroundScheduler
from apscheduler.executors.pool import ThreadPoolExecutor, ProcessPoolExecutor
sched = BackgroundScheduler(timezone='America/Toronto', executors=executors)
我认为机器从那里知道时区的时间。我只需要打印它。当然,解决方案可能是导入
import pytz
toronto = pytz.timezone('America/Toronto')
,然后从该时区获取时间。但是,它像是重复吗?那么有没有办法单独使用APScheduler来做到这一点?