mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
- Implemented an optional "offset" argument in apihelper.py.
- TeleBot#get_update now makes use of this argument, which improves the efficiency of the method. - Removed useless req.status_code statement in apihelper.py#send_data
This commit is contained in:
@ -42,6 +42,9 @@ class TeleBot:
|
||||
self.__stop_polling = False
|
||||
self.interval = 3
|
||||
|
||||
def get_last_update_id(self):
|
||||
return self.update_id_list[-1] if len(self.update_id_list) > 0 else None
|
||||
|
||||
def get_update(self):
|
||||
result = apihelper.get_updates(self.token)
|
||||
if result['ok'] is not True:
|
||||
|
Reference in New Issue
Block a user