From f74303b0720ff479fe8ce2bd856613a25b042457 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 4 Oct 2015 19:48:45 +0200 Subject: [PATCH] Richiesta di fulz! --- bot.py | 3 ++- telegram.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index c408b32e..e0014dfb 100644 --- a/bot.py +++ b/bot.py @@ -2,6 +2,7 @@ import telegram import steam +print("Bot avviato!") while(True): #Guarda il comando ricevuto. msg = telegram.getUpdates() @@ -27,4 +28,4 @@ while(True): if(len(cmd) >= 2): telegram.sendMessage("Ricerca di offerte di [" + cmd[1] + "](https://isthereanydeal.com/#/search:" + cmd[1].replace(' ', '%20') + ";/scroll:%23gamelist) completata.", sby) else: - telegram.sendMessage(chr(9888) + " Non hai specificato un gioco!\nLa sintassi corretta รจ /saldistim .", sby) \ No newline at end of file + telegram.sendMessage(chr(9888) + " Non hai specificato un gioco! [Visualizza tutte le offerte](https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).", sby) \ No newline at end of file diff --git a/telegram.py b/telegram.py index 13c9cb35..34add0a6 100644 --- a/telegram.py +++ b/telegram.py @@ -10,7 +10,7 @@ def getUpdates(): parametri = { 'offset': filemanager.readFile("lastid.txt"), #Update ID del messaggio da leggere 'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1 - 'timeout': 1800, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio + 'timeout': 300, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio } while(True): data = requests.get("https://api.telegram.org/bot" + telegramtoken + "/getUpdates", params=parametri).json()