From 4d9bf424d7a113e2ff40885cccd84bd55c768d67 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 28 Jan 2016 19:59:58 +0100 Subject: [PATCH] Aggiunta risposta a un messaggio specifico --- telegram.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/telegram.py b/telegram.py index 255ce96e..4d459eb3 100644 --- a/telegram.py +++ b/telegram.py @@ -31,16 +31,18 @@ def getupdates(): return data['result'][0]['message'] -def sendmessage(content, to): +def sendmessage(content, to, reply=None): """Manda un messaggio a una chat. :param content: Testo del messaggio :param to: Destinatario del messaggio + :param reply: Messaggio a cui rispondere """ # Parametri del messaggio parametri = { 'chat_id': to, 'text': content, 'parse_mode': 'Markdown', # Formattare il messaggio? + 'reply_to_message_id': reply } # Manda il messaggio requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendMessage", params=parametri)