mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Aggiunta risposta a un messaggio specifico
This commit is contained in:
parent
3a476e7b51
commit
4d9bf424d7
1 changed files with 3 additions and 1 deletions
|
@ -31,16 +31,18 @@ def getupdates():
|
|||
return data['result'][0]['message']
|
||||
|
||||
|
||||
def sendmessage(content, to):
|
||||
def sendmessage(content, to, reply=None):
|
||||
"""Manda un messaggio a una chat.
|
||||
:param content: Testo del messaggio
|
||||
:param to: Destinatario del messaggio
|
||||
:param reply: Messaggio a cui rispondere
|
||||
"""
|
||||
# Parametri del messaggio
|
||||
parametri = {
|
||||
'chat_id': to,
|
||||
'text': content,
|
||||
'parse_mode': 'Markdown', # Formattare il messaggio?
|
||||
'reply_to_message_id': reply
|
||||
}
|
||||
# Manda il messaggio
|
||||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendMessage", params=parametri)
|
||||
|
|
Loading…
Reference in a new issue