i terribly new in python , progress snail:( want make telegram bot send message @ specific date , time. used apscheduler , telepot libraries that. , code: import telepot import sys import time time import sleep datetime import datetime apscheduler.scheduler import scheduler import logging bot = telepot.bot("***") logging.basicconfig() sched = scheduler() sched.start() exec_date = datetime(2017, 9, 12 ,1,51,0) def handle(msg): content_type,chat_type,chat_id = telepot.glance(msg) print(content_type,chat_type,chat_id) if content_type == 'text' : bot.sendmessage(chat_id,msg['text']) def sendsimpletext(): # content_type,chat_type,chat_id = telepot.glance(msg) # print(content_type,chat_type,chat_id) # # if content_type == 'text' : chat_id = telepot. bot.sendmessage(chat_id,'faez') def main(): job = sched.add_date_job(sendsimpletext, exec_date) while true: sleep(1) ...