mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Ho cambiato qualcosa. Cosa? Boh.
This commit is contained in:
parent
a85ffb403a
commit
0253a3678c
1 changed files with 11 additions and 2 deletions
13
telegram.py
13
telegram.py
|
@ -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)
|
Loading…
Reference in a new issue