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

Revert "Revert "Ho cambiato qualcosa. Cosa? Boh.""

This reverts commit 0ac1abc634.
This commit is contained in:
Steffo 2015-11-15 16:03:20 +01:00
parent 0ac1abc634
commit f5cb1d85cd

View file

@ -43,7 +43,6 @@ def sendMessage(content, to):
def forwardMessage(msg, sentby, to):
"""Inoltra un messaggio mandato in un'altra chat."""
#Parametri del messaggio
parametri = {
'chat_id': to,
'from_chat_id': sentby,
@ -52,6 +51,16 @@ def forwardMessage(msg, sentby, to):
#Manda la richiesta ai server di Telegram.
requests.get("https://api.telegram.org/bot" + telegramtoken + "/forwardMessage", params=parametri)
def sendPhoto(pic, text, to):
"""Manda una foto compressa a una chat."""
parametri = {
'chat_id': to,
'photo': pic,
'caption': text,
}
#Manda la richiesta ai server di Telegram.
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendPhoto", params=parametri)
def sendAudio(aud, to):
"""Manda un file audio .mp3 a una chat."""
parametri = {
@ -117,4 +126,4 @@ def sendChatAction(to, type='typing'):
'action': type,
}
#Manda la richiesta ai server di Telegram.
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendChatAction", params=parametri)
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendChatAction", params=parametri)