1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Sporco hack episodio 2

This commit is contained in:
Steffo 2015-10-03 18:44:23 +02:00
parent 9cd1e69311
commit e3bc9c9ba6
2 changed files with 4 additions and 4 deletions

2
bot.py
View file

@ -6,5 +6,5 @@ while(True):
#Guarda il comando ricevuto.
msg = telegram.getUpdates()
cmd = msg['text'].split(' ')
if(msg[0].startswith('/ahnonlosoio')):
if(cmd[0].startswith('/ahnonlosoio')):
telegram.sendMessage("Ah, non lo so nemmeno io!\n¯\_(ツ)_/¯")

View file

@ -19,10 +19,10 @@ def getUpdates():
data = requests.get("https://api.telegram.org/bot" + telegramtoken + "/getUpdates", params=parametri).json()
if(data['ok'] == True):
if(data['result'] != []):
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
filemanager.writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
#sporco hack per non far crashare il bot ogni 10 secondi; prima o poi capirò il senso di certe risposte nell'api di telegram
if(data['result'][0]['message'] != None):
if(data['result'][0]['message']['text'] != ""):
if('message' in data['result'][0]):
if('text' in data['result'][0]['message']):
return data['result'][0]['message']
def sendMessage(content, to=chat, tastiera=""):