привет, я бы хотел, чтобы мой python чат-бот мог найти пользователей. Я не могу найти код для этого - вы можете помочь?
def testbot_basic():
def handle(msg):
content_type, chat_type, chat_id = telepot.glance(msg)
if content_type == 'text':
bot.sendMessage(chat_id,"ciao sono un Bot")
print(bot.getMe())
pprint(bot.getUpdates())
bot = telepot.Bot('xxxxxxxxxxxxx')
print(bot.getMe())
pprint(bot.getUpdates())
#per ogni messaggio ricevuto viene aperta una istanza della funzione handle
bot.message_loop(handle)
print ('Listening ...')
# diamo 10 secondi di pausa
while 1:
time.sleep(5)