mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
bug sistematoi
This commit is contained in:
parent
d3a680f0e9
commit
2a33906356
2 changed files with 8 additions and 9 deletions
1
bot.py
1
bot.py
|
@ -8,7 +8,6 @@ while(True):
|
|||
msg = telegram.getUpdates()
|
||||
cmd = msg['text'].split(' ', 1)
|
||||
sby = msg['chat']['id']
|
||||
print(sby + ": " + repr(msg))
|
||||
if(cmd[0].startswith('/ahnonlosoio')):
|
||||
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
|
||||
elif(cmd[0].startswith('/ehoh')):
|
||||
|
|
16
telegram.py
16
telegram.py
|
@ -1,18 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import requests
|
||||
import filemanager
|
||||
import time
|
||||
|
||||
##Per far funzionare questa libreria serve un file "lastid.txt" contenente l'update ID dell'ultimo messaggio non letto e un file "telegramapi.txt" contenente il token di accesso del bot assegnato da @BotFather.
|
||||
telegramtoken = filemanager.readFile('telegramapi.txt')
|
||||
|
||||
def getUpdates():
|
||||
"""Ricevi gli ultimi aggiornamenti dal server di Telegram e restituisci l'ultimo messaggio non letto."""
|
||||
parametri = {
|
||||
'offset': filemanager.readFile("lastid.txt"), #Update ID del messaggio da leggere
|
||||
'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1
|
||||
'timeout': 120, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
}
|
||||
while(True):
|
||||
parametri = {
|
||||
'offset': filemanager.readFile("lastid.txt"), #Update ID del messaggio da leggere
|
||||
'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1
|
||||
'timeout': 120, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
}
|
||||
data = requests.get("https://api.telegram.org/bot" + telegramtoken + "/getUpdates", params=parametri).json()
|
||||
if(data['ok'] == True):
|
||||
if(data['result'] != []):
|
||||
|
@ -21,9 +22,8 @@ def getUpdates():
|
|||
if('message' in data['result'][0]):
|
||||
if('text' in data['result'][0]['message']):
|
||||
return data['result'][0]['message']
|
||||
else:
|
||||
print(data);
|
||||
except Exception("Telegram non ha risposto con OK alla richiesta dei nuovi messaggi")
|
||||
print(data)
|
||||
time.sleep(5)
|
||||
|
||||
def sendMessage(content, to):
|
||||
"""Manda un messaggio a una chat."""
|
||||
|
|
Loading…
Reference in a new issue