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
11
telegram.py
11
telegram.py
|
@ -43,7 +43,6 @@ def sendMessage(content, to):
|
||||||
|
|
||||||
def forwardMessage(msg, sentby, to):
|
def forwardMessage(msg, sentby, to):
|
||||||
"""Inoltra un messaggio mandato in un'altra chat."""
|
"""Inoltra un messaggio mandato in un'altra chat."""
|
||||||
#Parametri del messaggio
|
|
||||||
parametri = {
|
parametri = {
|
||||||
'chat_id': to,
|
'chat_id': to,
|
||||||
'from_chat_id': sentby,
|
'from_chat_id': sentby,
|
||||||
|
@ -52,6 +51,16 @@ def forwardMessage(msg, sentby, to):
|
||||||
#Manda la richiesta ai server di Telegram.
|
#Manda la richiesta ai server di Telegram.
|
||||||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/forwardMessage", params=parametri)
|
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):
|
def sendAudio(aud, to):
|
||||||
"""Manda un file audio .mp3 a una chat."""
|
"""Manda un file audio .mp3 a una chat."""
|
||||||
parametri = {
|
parametri = {
|
||||||
|
|
Loading…
Reference in a new issue