telegram.ext.ShippingQueryHandler¶
-
class
telegram.ext.ShippingQueryHandler(callback, pass_update_queue=False, pass_job_queue=False, pass_user_data=False, pass_chat_data=False, run_async=False)¶ Bases:
telegram.ext.handler.Handler[telegram.update.Update]Handler class to handle Telegram shipping callback queries.
Note
pass_user_dataandpass_chat_datadetermine whether adictyou can use to keep any data in will be sent to thecallbackfunction. Related to either the user or the chat that the update was sent in. For each update from the same user or in the same chat, it will be the samedict.Note that this is DEPRECATED, and you should use context based callbacks. See https://git.io/fxJuV for more info.
Warning
When setting
run_asynctoTrue, you cannot rely on adding custom attributes totelegram.ext.CallbackContext. See its docs for more info.- Parameters
callback (
callable) –The callback function for this handler. Will be called when
check_updatehas determined that an update should be processed by this handler. Callback signature for context based API:def callback(update: Update, context: CallbackContext)The return value of the callback is usually ignored except for the special case of
telegram.ext.ConversationHandler.pass_update_queue (
bool, optional) – If set toTrue, a keyword argument calledupdate_queuewill be passed to the callback function. It will be theQueueinstance used by thetelegram.ext.Updaterandtelegram.ext.Dispatcherthat contains new updates which can be used to insert updates. Default isFalse. DEPRECATED: Please switch to context based callbacks.pass_job_queue (
bool, optional) – If set toTrue, a keyword argument calledjob_queuewill be passed to the callback function. It will be atelegram.ext.JobQueueinstance created by thetelegram.ext.Updaterwhich can be used to schedule new jobs. Default isFalse. DEPRECATED: Please switch to context based callbacks.pass_user_data (
bool, optional) – If set toTrue, a keyword argument calleduser_datawill be passed to the callback function. Default isFalse. DEPRECATED: Please switch to context based callbacks.pass_chat_data (
bool, optional) – If set toTrue, a keyword argument calledchat_datawill be passed to the callback function. Default isFalse. DEPRECATED: Please switch to context based callbacks.run_async (
bool) – Determines whether the callback will run asynchronously. Defaults toFalse.
-
callback¶ The callback function for this handler.
- Type
callable
-
pass_update_queue¶ Determines whether
update_queuewill be passed to the callback function.- Type
bool
-
pass_job_queue¶ Determines whether
job_queuewill be passed to the callback function.- Type
bool
-
pass_user_data¶ Determines whether
user_datawill be passed to the callback function.- Type
bool
-
pass_chat_data¶ Determines whether
chat_datawill be passed to the callback function.- Type
bool
-
run_async¶ Determines whether the callback will run asynchronously.
- Type
bool
-
check_update(update)¶ Determines whether an update should be passed to this handlers
callback.- Parameters
update (
telegram.Update|object) – Incoming update.- Returns
bool