pyrogram - Telegram API to get live location update

359 Views Asked by At

I tried to get the live location update using below pyrogram API code, but getting None in location variable.

from pyrogram import Client
from pyrogram import filters

app = Client("my_account",api_id=API_ID,api_hash=API_HASH)

@app.on_message(filters.location)
async def location(client, message):
    print("Location received...")
    print(message.location)
app.run()
1

There are 1 best solutions below

0
On BEST ANSWER

you want get location object ?

message.location.latitude
message.location.longitude

https://docs.pyrogram.org/api/types/Location#pyrogram.types.Location