Skip to content

Commit

Permalink
Merge pull request #43 from rahiel/master
Browse files Browse the repository at this point in the history
confirm processed message in examples
  • Loading branch information
leandrotoledo committed Aug 20, 2015
2 parents 8746222 + 0691b1e commit 92ca923
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
25 changes: 12 additions & 13 deletions examples/echobot.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,19 @@ def main():
def echo(bot):
global LAST_UPDATE_ID

# Request updates from last updated_id
# Request updates after the last updated_id
for update in bot.getUpdates(offset=LAST_UPDATE_ID):
if LAST_UPDATE_ID < update.update_id:
# chat_id is required to reply any message
chat_id = update.message.chat_id
message = update.message.text.encode('utf-8')

if (message):
# Reply the message
bot.sendMessage(chat_id=chat_id,
text=message)

# Updates global offset to get the new updates
LAST_UPDATE_ID = update.update_id
# chat_id is required to reply any message
chat_id = update.message.chat_id
message = update.message.text.encode('utf-8')

if (message):
# Reply the message
bot.sendMessage(chat_id=chat_id,
text=message)

# Updates global offset to get the new updates
LAST_UPDATE_ID = update.update_id + 1


if __name__ == '__main__':
Expand Down
10 changes: 4 additions & 6 deletions examples/roboed.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@ def main():
chat_id = update.message.chat.id
update_id = update.update_id

if LAST_UPDATE_ID < update_id: # If newer than the initial
# LAST_UPDATE_ID
if text:
roboed = ed(text) # Ask something to Robô Ed
bot.sendMessage(chat_id=chat_id, text=roboed)
LAST_UPDATE_ID = update_id
if text:
roboed = ed(text) # Ask something to Robô Ed
bot.sendMessage(chat_id=chat_id, text=roboed)
LAST_UPDATE_ID = update_id + 1


def ed(text):
Expand Down

0 comments on commit 92ca923

Please sign in to comment.