1
0
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:
pieter
2015-06-30 01:44:14 +02:00
parent 7bffd4331b
commit 64811a3960
2 changed files with 8 additions and 3 deletions

View File

@ -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: