Answer the question
In order to leave comments, you need to log in
How to fix ssl error in (multipocessing) Telegram bot?
token = ''
URL = f'https://api.telegram.org/bot{token}' # URL на который отправляется запрос
print(requests.get(URL + '/getUpdates', verify=False).json()) #GET запрос к API Telegram для получение словаря данных
bot = telebot.TeleBot(token)
def send_annul(sec, id_order, date_order, sum_order):
print('Заказ №' + id_order)
time.sleep(sec) # через 15 сек отправляю сообщение # если время не прошло, жду
conn_DB.upd_statusOrders('Аннулирован', int(id_order))
# bot = telebot.TeleBot(token, threaded=False)
bot.send_message(message.chat.id, text = f'*\u3030ЗАКАЗ №1 АННУЛИРОВАН* от 1 на сумму 1 руб.',
parse_mode = "Markdown", reply_markup = send_keyb_order(buttons.ls_keybs_orders(message.chat.id)[2]))
def worker():
global proc
# proc = multiprocessing.Process(target=worker(f"{conn_DB.id_Zakaz()}", f"{zakaz[2]}", f"{zakaz[4]}"))
proc = multiprocessing.Process(target=send_annul, args=(10, f"{conn_DB.id_Zakaz()}", 1, 1))
print(proc)
proc.start()
# proc.terminate()
worker()
Answer the question
In order to leave comments, you need to log in
Decision:
def post_annulOrder(id_order, date_order):
print('Отправка сообщения об аннулировании заказа')
requests.post(f'{URL}/sendMessage', data = {'chat_id': 454752968, 'text': f'*\u3030ЗАКАЗ № {id_order}* от {date_order} на сумму 1 руб.- АННУЛИРОВАН!',
'parse_mode': 'Markdown'})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question