mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 21:44:21 +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
11
telegram.py
11
telegram.py
|
@ -43,6 +43,7 @@ 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,
|
||||||
|
@ -51,16 +52,6 @@ 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