Update¶
- class telegram.Update(update_id, message=None, edited_message=None, channel_post=None, edited_channel_post=None, inline_query=None, chosen_inline_result=None, callback_query=None, shipping_query=None, pre_checkout_query=None, poll=None, poll_answer=None, my_chat_member=None, chat_member=None, chat_join_request=None, chat_boost=None, removed_chat_boost=None, message_reaction=None, message_reaction_count=None, business_connection=None, business_message=None, edited_business_message=None, deleted_business_messages=None, purchased_paid_media=None, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectThis object represents an incoming update.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
update_idis equal.Note
At most one of the optional parameters can be present in any given update.
See also
Available In
Returned In
- Parameters:
update_id (
int) – The update’s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. If there are no new updates for at least a week, then identifier of the next update will be chosen randomly instead of sequentially.message (
telegram.Message, optional) – New incoming message of any kind - text, photo, sticker, etc.edited_message (
telegram.Message, optional) – New version of a message that is known to the bot and was edited. This update may at times be triggered by changes to message fields that are either unavailable or not actively used by your bot.channel_post (
telegram.Message, optional) – New incoming channel post of any kind - text, photo, sticker, etc.edited_channel_post (
telegram.Message, optional) – New version of a channel post that is known to the bot and was edited. This update may at times be triggered by changes to message fields that are either unavailable or not actively used by your bot.inline_query (
telegram.InlineQuery, optional) – New incoming inline query.chosen_inline_result (
telegram.ChosenInlineResult, optional) – The result of an inline query that was chosen by a user and sent to their chat partner.callback_query (
telegram.CallbackQuery, optional) – New incoming callback query.shipping_query (
telegram.ShippingQuery, optional) – New incoming shipping query. Only for invoices with flexible price.pre_checkout_query (
telegram.PreCheckoutQuery, optional) – New incoming pre-checkout query. Contains full information about checkout.poll (
telegram.Poll, optional) – New poll state. Bots receive only updates about manually stopped polls and polls, which are sent by the bot.poll_answer (
telegram.PollAnswer, optional) – A user changed their answer in a non-anonymous poll. Bots receive new votes only in polls that were sent by the bot itself.my_chat_member (
telegram.ChatMemberUpdated, optional) –The bot’s chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user.
Added in version 13.4.
chat_member (
telegram.ChatMemberUpdated, optional) –A chat member’s status was updated in a chat. The bot must be an administrator in the chat and must explicitly specify
CHAT_MEMBERin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()).Added in version 13.4.
chat_join_request (
telegram.ChatJoinRequest, optional) –A request to join the chat has been sent. The bot must have the
telegram.ChatPermissions.can_invite_usersadministrator right in the chat to receive these updates.Added in version 13.8.
chat_boost (
telegram.ChatBoostUpdated, optional) –A chat boost was added or changed. The bot must be an administrator in the chat to receive these updates.
Added in version 20.8.
removed_chat_boost (
telegram.ChatBoostRemoved, optional) –A boost was removed from a chat. The bot must be an administrator in the chat to receive these updates.
Added in version 20.8.
message_reaction (
telegram.MessageReactionUpdated, optional) –A reaction to a message was changed by a user. The bot must be an administrator in the chat and must explicitly specify
MESSAGE_REACTIONin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()). The update isn’t received for reactions set by bots.Added in version 20.8.
message_reaction_count (
telegram.MessageReactionCountUpdated, optional) –Reactions to a message with anonymous reactions were changed. The bot must be an administrator in the chat and must explicitly specify
MESSAGE_REACTION_COUNTin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()). The updates are grouped and can be sent with delay up to a few minutes.Added in version 20.8.
business_connection (
telegram.BusinessConnection, optional) –The bot was connected to or disconnected from a business account, or a user edited an existing connection with the bot.
Added in version 21.1.
business_message (
telegram.Message, optional) –New message from a connected business account.
Added in version 21.1.
edited_business_message (
telegram.Message, optional) –New version of a message from a connected business account.
Added in version 21.1.
deleted_business_messages (
telegram.BusinessMessagesDeleted, optional) –Messages were deleted from a connected business account.
Added in version 21.1.
purchased_paid_media (
telegram.PaidMediaPurchased, optional) –A user purchased paid media with a non-empty payload sent by the bot in a non-channel chat.
Added in version 21.6.
- update_id[source]¶
The update’s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. If there are no new updates for at least a week, then identifier of the next update will be chosen randomly instead of sequentially.
- Type:
- edited_message[source]¶
Optional. New version of a message that is known to the bot and was edited. This update may at times be triggered by changes to message fields that are either unavailable or not actively used by your bot.
- Type:
- channel_post[source]¶
Optional. New incoming channel post of any kind - text, photo, sticker, etc.
- Type:
- edited_channel_post[source]¶
Optional. New version of a channel post that is known to the bot and was edited. This update may at times be triggered by changes to message fields that are either unavailable or not actively used by your bot.
- Type:
- chosen_inline_result[source]¶
Optional. The result of an inline query that was chosen by a user and sent to their chat partner.
- shipping_query[source]¶
Optional. New incoming shipping query. Only for invoices with flexible price.
- Type:
- pre_checkout_query[source]¶
Optional. New incoming pre-checkout query. Contains full information about checkout.
- poll[source]¶
Optional. New poll state. Bots receive only updates about manually stopped polls and polls, which are sent by the bot.
- Type:
- poll_answer[source]¶
Optional. A user changed their answer in a non-anonymous poll. Bots receive new votes only in polls that were sent by the bot itself.
- Type:
- my_chat_member[source]¶
Optional. The bot’s chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user.
Added in version 13.4.
- chat_member[source]¶
Optional. A chat member’s status was updated in a chat. The bot must be an administrator in the chat and must explicitly specify
CHAT_MEMBERin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()).Added in version 13.4.
- chat_join_request[source]¶
Optional. A request to join the chat has been sent. The bot must have the
telegram.ChatPermissions.can_invite_usersadministrator right in the chat to receive these updates.Added in version 13.8.
- Type:
- chat_boost[source]¶
Optional. A chat boost was added or changed. The bot must be an administrator in the chat to receive these updates.
Added in version 20.8.
- removed_chat_boost[source]¶
Optional. A boost was removed from a chat. The bot must be an administrator in the chat to receive these updates.
Added in version 20.8.
- message_reaction[source]¶
Optional. A reaction to a message was changed by a user. The bot must be an administrator in the chat and must explicitly specify
MESSAGE_REACTIONin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()). The update isn’t received for reactions set by bots.Added in version 20.8.
- message_reaction_count[source]¶
Optional. Reactions to a message with anonymous reactions were changed. The bot must be an administrator in the chat and must explicitly specify
MESSAGE_REACTION_COUNTin the list oftelegram.ext.Application.run_polling.allowed_updatesto receive these updates (seetelegram.Bot.get_updates(),telegram.Bot.set_webhook(),telegram.ext.Application.run_polling()andtelegram.ext.Application.run_webhook()). The updates are grouped and can be sent with delay up to a few minutes.Added in version 20.8.
- business_connection[source]¶
Optional. The bot was connected to or disconnected from a business account, or a user edited an existing connection with the bot.
Added in version 21.1.
- business_message[source]¶
Optional. New message from a connected business account.
Added in version 21.1.
- Type:
- edited_business_message[source]¶
Optional. New version of a message from a connected business account.
Added in version 21.1.
- Type:
- deleted_business_messages[source]¶
Optional. Messages were deleted from a connected business account.
Added in version 21.1.
- purchased_paid_media[source]¶
Optional. A user purchased paid media with a non-empty payload sent by the bot in a non-channel chat.
Added in version 21.6.
- ALL_TYPES = [<UpdateType.MESSAGE>, <UpdateType.EDITED_MESSAGE>, <UpdateType.CHANNEL_POST>, <UpdateType.EDITED_CHANNEL_POST>, <UpdateType.INLINE_QUERY>, <UpdateType.CHOSEN_INLINE_RESULT>, <UpdateType.CALLBACK_QUERY>, <UpdateType.SHIPPING_QUERY>, <UpdateType.PRE_CHECKOUT_QUERY>, <UpdateType.POLL>, <UpdateType.POLL_ANSWER>, <UpdateType.MY_CHAT_MEMBER>, <UpdateType.CHAT_MEMBER>, <UpdateType.CHAT_JOIN_REQUEST>, <UpdateType.CHAT_BOOST>, <UpdateType.REMOVED_CHAT_BOOST>, <UpdateType.MESSAGE_REACTION>, <UpdateType.MESSAGE_REACTION_COUNT>, <UpdateType.BUSINESS_CONNECTION>, <UpdateType.BUSINESS_MESSAGE>, <UpdateType.EDITED_BUSINESS_MESSAGE>, <UpdateType.DELETED_BUSINESS_MESSAGES>, <UpdateType.PURCHASED_PAID_MEDIA>][source]¶
A list of all available update types.
Added in version 13.5.
- Type:
list[
str]
- BUSINESS_CONNECTION = 'business_connection'[source]¶
telegram.constants.UpdateType.BUSINESS_CONNECTIONAdded in version 21.1.
- BUSINESS_MESSAGE = 'business_message'[source]¶
telegram.constants.UpdateType.BUSINESS_MESSAGEAdded in version 21.1.
- CALLBACK_QUERY = 'callback_query'[source]¶
telegram.constants.UpdateType.CALLBACK_QUERYAdded in version 13.5.
- CHANNEL_POST = 'channel_post'[source]¶
telegram.constants.UpdateType.CHANNEL_POSTAdded in version 13.5.
- CHAT_BOOST = 'chat_boost'[source]¶
telegram.constants.UpdateType.CHAT_BOOSTAdded in version 20.8.
- CHAT_JOIN_REQUEST = 'chat_join_request'[source]¶
telegram.constants.UpdateType.CHAT_JOIN_REQUESTAdded in version 13.8.
- CHAT_MEMBER = 'chat_member'[source]¶
telegram.constants.UpdateType.CHAT_MEMBERAdded in version 13.5.
- CHOSEN_INLINE_RESULT = 'chosen_inline_result'[source]¶
telegram.constants.UpdateType.CHOSEN_INLINE_RESULTAdded in version 13.5.
- DELETED_BUSINESS_MESSAGES = 'deleted_business_messages'[source]¶
telegram.constants.UpdateType.DELETED_BUSINESS_MESSAGESAdded in version 21.1.
- EDITED_BUSINESS_MESSAGE = 'edited_business_message'[source]¶
telegram.constants.UpdateType.EDITED_BUSINESS_MESSAGEAdded in version 21.1.
- EDITED_CHANNEL_POST = 'edited_channel_post'[source]¶
telegram.constants.UpdateType.EDITED_CHANNEL_POSTAdded in version 13.5.
- EDITED_MESSAGE = 'edited_message'[source]¶
telegram.constants.UpdateType.EDITED_MESSAGEAdded in version 13.5.
- INLINE_QUERY = 'inline_query'[source]¶
telegram.constants.UpdateType.INLINE_QUERYAdded in version 13.5.
- MESSAGE = 'message'[source]¶
telegram.constants.UpdateType.MESSAGEAdded in version 13.5.
- MESSAGE_REACTION = 'message_reaction'[source]¶
telegram.constants.UpdateType.MESSAGE_REACTIONAdded in version 20.8.
- MESSAGE_REACTION_COUNT = 'message_reaction_count'[source]¶
telegram.constants.UpdateType.MESSAGE_REACTION_COUNTAdded in version 20.8.
- MY_CHAT_MEMBER = 'my_chat_member'[source]¶
telegram.constants.UpdateType.MY_CHAT_MEMBERAdded in version 13.5.
- POLL = 'poll'[source]¶
telegram.constants.UpdateType.POLLAdded in version 13.5.
- POLL_ANSWER = 'poll_answer'[source]¶
telegram.constants.UpdateType.POLL_ANSWERAdded in version 13.5.
- PRE_CHECKOUT_QUERY = 'pre_checkout_query'[source]¶
telegram.constants.UpdateType.PRE_CHECKOUT_QUERYAdded in version 13.5.
- PURCHASED_PAID_MEDIA = 'purchased_paid_media'[source]¶
telegram.constants.UpdateType.PURCHASED_PAID_MEDIAAdded in version 21.6.
- REMOVED_CHAT_BOOST = 'removed_chat_boost'[source]¶
telegram.constants.UpdateType.REMOVED_CHAT_BOOSTAdded in version 20.8.
- SHIPPING_QUERY = 'shipping_query'[source]¶
telegram.constants.UpdateType.SHIPPING_QUERYAdded in version 13.5.
- property effective_chat[source]¶
The chat that this update was sent in, no matter what kind of update this is. If no chat is associated with this update, this gives
None. This is the case, ifinline_query,chosen_inline_result,callback_queryfrom inline messages,shipping_query,pre_checkout_query,poll,poll_answer,business_connection, orpurchased_paid_mediais present.Changed in version 21.1: This property now also considers
business_message,edited_business_message, anddeleted_business_messages.Example
If
messageis present, this will givetelegram.Message.chat.- Type:
- property effective_message[source]¶
- The message included in this update, no matter what kind of
update this is. More precisely, this will be the message contained in
message,edited_message,channel_post,edited_channel_postorcallback_query(i.e.telegram.CallbackQuery.message) orNone, if none of those are present.
Changed in version 21.1: This property now also considers
business_message, andedited_business_message.Tip
This property will only ever return objects of type
telegram.MessageorNone, nevertelegram.MaybeInaccessibleMessageortelegram.InaccessibleMessage. Currently, this is only relevant forcallback_query, astelegram.CallbackQuery.messageis the only attribute considered by this property that can be an object of these types.- Type:
- property effective_sender[source]¶
The user or chat that sent this update, no matter what kind of update this is.
Note
Depending on the type of update and the user’s ‘Remain anonymous’ setting, this could either be
telegram.User,telegram.ChatorNone.
If no user whatsoever is associated with this update, this gives
None. This is the case if any ofis present.
Example
If
messageis present, this will give eithertelegram.Message.from_userortelegram.Message.sender_chat.If
poll_answeris present, this will give eithertelegram.PollAnswer.userortelegram.PollAnswer.voter_chat.If
channel_postis present, this will givetelegram.Message.sender_chat.
Added in version 21.1.
- Type:
- property effective_user[source]¶
The user that sent this update, no matter what kind of update this is. If no user is associated with this update, this gives
None. This is the case if any ofis present.
Changed in version 21.1: This property now also considers
business_connection,business_messageandedited_business_message.Changed in version 21.6: This property now also considers
purchased_paid_media.Example
If
messageis present, this will givetelegram.Message.from_user.If
poll_answeris present, this will givetelegram.PollAnswer.user.
- Type: