def send(chat_id, message_text, **kwargs): """Send a message :arg chat_id :arg message_text :key parse_mode :key reply_markup""" return BOT.send_message(chat_id, message_text, disable_web_page_preview=True, **kwargs)
# -*- coding: utf-8 -*- """Main program in the code. Run it""" # from requests import ReadTimeout, ConnectionError # from urllib3.exceptions import NewConnectionError, MaxRetryError, ReadTimeoutError import view.input from presenter.config.token_manager import BOT, BOT_CONFIGS from presenter.config.config_var import CREATOR_ID from presenter.config.config_func import update_old_systems_json print(view.input.WORK) update_old_systems_json() if BOT_CONFIGS['non_stop']: BOT.send_message(CREATOR_ID, "Приступаю к работе в бесконечном режиме, босс!") BOT.infinity_polling() # Запуск бота else: # telebot.logger.setLevel("DEBUG") # Иногда помогает, но обычно не нужна BOT.send_message(CREATOR_ID, "Приступаю к работе, босс!") BOT.polling(none_stop=True)