π¨πΌπ»κ°λ°/νμ΄μ¬
νμ΄μ¬ - APScheduler μ€μΌμ€
Janger
2022. 9. 12. 19:47
728x90
from apscheduler.schedulers.background import BackgroundScheduler
scheduler = BackgroundScheduler(daemon=True, timezone='Asia/Seoul')
scheduler.start()
scheduler.add_job(custom_function, 'date', run_date="2022-09-12 10:10:00", args=[1, '2', [3]])
μ°Έκ³ :
https://mkwilson.tistory.com/215
Python APScheduler μ€μΌμ€ μ€μ
python μμ μ€μΌμ€μ μ μ©ν λλ λ³΄ν΅ λ¦¬λ μ€μ cron μ μ¬μ©νμλ€ μ’λ νΈν λ°©λ²μ μ°Ύλμ€ νμ΄μ¬λ΄μμ μ€μΌμ€μ μ μ΄ ν μ μλ λΌμ΄λΈλ¬λ¦¬κ° μμλ€ https://pypi.org/project/APScheduler/ pip install A
mkwilson.tistory.com
728x90