Hey i am trying to run a telegram bot on a daily base so i tried different things.
updater = Updater(<botkey>, use_context=True)
dp = updater.dispatcher
dp.job_queue.run_daily(pollen, datetime.time(hour=20, minute=9), days=(0, 1, 2, 3, 4, 5, 6))
dp.add_error_handler(error)
updater.start_polling()
updater.idle()
def pollen(update, context):
bot.send_message(chat_id=chat_id, text='text')
or
updater = Updater(<botkey>, use_context=True)
dp = updater.dispatcher
dp.add_handler(CommandHandler('start', creatJobs, pass_job_queue=True, pass_chat_data=True))
dp.add_error_handler(error)
updater.start_polling()
updater.idle()
def pollen(update, context):
bot.send_message(chat_id=chat_id, text='text')
def creatJobs(update, context):
new_job = context.job_queue.run_daily(pollen, datetime.time(hour=20, minute=9), days=(0, 1, 2, 3, 4, 5, 6), context=chat_id)
context.chat_data['job'] = new_job
or
updater = Updater(<botkey>, use_context=True)
dp = updater.dispatcher
dp.add_handler(CommandHandler('start', creatJobs, pass_job_queue=True, pass_chat_data=True))
dp.add_error_handler(error)
updater.start_polling()
updater.idle()
def pollen(update, context):
bot.send_message(chat_id=chat_id, text='text')
def creatJobs(update, context):
context.job_queue.run_daily(reset, pollreset, days=(0,1,2,3,4,5,6))
but nothing works, i am developing on windows and python 3.8 imports always the same
import logging, re, datetime, time
import telegram
from telegram import InlineKeyboardButton, InlineKeyboardMarkup, Location
from telegram.ext import (Updater, CommandHandler, MessageHandler, Filters, ConversationHandler, CallbackQueryHandler)