I find retry mechanism implementation in telebot/apihelper.py is quite useful due to network nature. Is it possible to enable it by default (see https://github.com/eternnoir/pyTelegramBotAPI/blob/master/telebot/apihelper.py#L38)?
P.S. currently it could be enabled manually via
import telebot
telebot.apihelper.RETRY_ON_ERROR = True
...
I find retry mechanism implementation in
telebot/apihelper.pyis quite useful due to network nature. Is it possible to enable it by default (see https://github.com/eternnoir/pyTelegramBotAPI/blob/master/telebot/apihelper.py#L38)?P.S. currently it could be enabled manually via