Как я могу получить местоположение в телеграмме телеграммы? - PullRequest
0 голосов
/ 08 февраля 2020

привет, я бы хотел, чтобы мой 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)

1 Ответ

0 голосов
/ 08 февраля 2020

понял

      if content_type == 'location':
      print(msg['location'])
      print(msg['location']['latitude'])
      print(msg['location']['longitude'])
...