mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Revert "Ho cambiato qualcosa. Cosa? Boh."
This reverts commit 0253a3678c
.
This commit is contained in:
parent
0253a3678c
commit
0ac1abc634
1 changed files with 2 additions and 11 deletions
13
telegram.py
13
telegram.py
|
@ -43,6 +43,7 @@ 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,
|
||||
|
@ -51,16 +52,6 @@ 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 = {
|
||||
|
@ -126,4 +117,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)
|
||||
|
|
Loading…
Reference in a new issue