ChatLocation

class telegram.ChatLocation(location, address, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This object represents a location to which a chat is connected.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their location is equal.

Parameters:
  • location (telegram.Location) – The location to which the supergroup is connected. Can’t be a live location.

  • address (str) – Location address; 1- 64 characters, as defined by the chat owner.

location[source]

The location to which the supergroup is connected. Can’t be a live location.

Type:

telegram.Location

address[source]

Location address; 1- 64 characters, as defined by the chat owner.

Type:

str

Available In

telegram.Chat.location

MAX_ADDRESS = 64[source]

telegram.constants.LocationLimit.MAX_CHAT_LOCATION_ADDRESS

New in version 20.0.

MIN_ADDRESS = 1[source]

telegram.constants.LocationLimit.MIN_CHAT_LOCATION_ADDRESS

New in version 20.0.

classmethod de_json(data, bot)[source]

See telegram.TelegramObject.de_json().