打印时间APScheduler(Print time on APScheduler)

2019-11-05 03:11发布

你如何打印与APScheduler使用特定的时区的时间。 我用它BackgroundScheduler一个特定的时区。 当我用“的cron”工作做在一个特定时间的任务,它没有进展顺利。 我怀疑它使用不同的时间。

from flask import Flask
from datetime import datetime
from oauth2client.service_account import ServiceAccountCredentials
from mysql.connector import Error
from threading import Thread
from apscheduler.schedulers.background import BackgroundScheduler
from apscheduler.executors.pool import ThreadPoolExecutor, ProcessPoolExecutor

import datetime
import time
import gspread
import mysql.connector

app = Flask(__name__)

executors = {
    'default': ThreadPoolExecutor(16),
    'processpool': ProcessPoolExecutor(4)
}

sched = BackgroundScheduler(timezone='Asia/Seoul', executors=executors)

def job_1():
    print("YES.")

def job_2():
    print("I'm working working...")
    print(datetime.datetime.now())

sched.add_job(job_1, 'cron', hour=17, minute=19)
sched.add_job(job_2, 'interval', seconds=10)



@app.route('/')
def homepage():
    return '<h1>Hello World!</h1>'


if __name__ == '__main__':
    sched.start()
    app.run(debug=True, use_reloader=False)

我需要在5:19我的计算机上运行job_1,但我想我指定APScheduler一个时区,所以它没有执行。 我想知道APSCheduler使用当前时间。

更新:当我使用时区=无,

sched = BackgroundScheduler(timezone=None, executors=executors)

很顺利,它跟着我的计算机上的时间。 现在,我只想打印指定的时区我在那里用的时间。

文章来源: Print time on APScheduler