mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Sistemate cose che facevano altre cose?
This commit is contained in:
parent
a2b6288d77
commit
7fb75cdf9d
1 changed files with 3 additions and 5 deletions
|
@ -1,7 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import requests
|
||||
import filemanager
|
||||
import time
|
||||
|
||||
# Per far funzionare questa libreria serve un file "lastid.txt" contenente l'update ID dell'ultimo messaggio non letto e
|
||||
# un file "telegramapi.txt" contenente il token di accesso del bot assegnato da @BotFather.
|
||||
|
@ -30,7 +29,6 @@ def getupdates():
|
|||
# Controlla che la risposta sia effettivamente un messaggio e non una notifica di servizio
|
||||
if 'message' in data['result'][0]:
|
||||
return data['result'][0]['message']
|
||||
time.sleep(5)
|
||||
|
||||
|
||||
def sendmessage(content, to):
|
||||
|
@ -159,15 +157,15 @@ def sendlocation(lat, long, to):
|
|||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendLocation", params=parametri)
|
||||
|
||||
|
||||
def sendchataction(to, type='typing'):
|
||||
def sendchataction(to, action='typing'):
|
||||
"""Visualizza lo stato "sta scrivendo" del bot.
|
||||
:param to: Chat in cui visualizzare lo stato
|
||||
:param type: Tipo di stato da visualizzare
|
||||
:param action: Tipo di stato da visualizzare
|
||||
"""
|
||||
# Parametri del messaggio
|
||||
parametri = {
|
||||
'chat_id': to,
|
||||
'action': type,
|
||||
'action': action,
|
||||
}
|
||||
# Manda la richiesta ai server di Telegram.
|
||||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendChatAction", params=parametri)
|
||||
|
|
Loading…
Reference in a new issue