telegram.ext.Handler¶
-
class
telegram.ext.Handler(callback, pass_update_queue=False, pass_job_queue=False, pass_user_data=False, pass_chat_data=False)¶ Bases:
objectThe base class for all update handlers. Create custom handlers by inheriting from it.
-
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
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.
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.
-
check_update(update)¶ This method is called to determine if an update should be handled by this handler instance. It should always be overridden.
Parameters: update ( str|telegram.Update) – The update to be tested.Returns: Either NoneorFalseif the update should not be handled. Otherwise an object that will be passed tohandle_updateandcollect_additional_contextwhen the update gets handled.
-
collect_additional_context(context, update, dispatcher, check_result)¶ Prepares additional arguments for the context. Override if needed.
Parameters: - context (
telegram.ext.CallbackContext) – The context object. - update (
telegram.Update) – The update to gather chat/user id from. - dispatcher (
telegram.ext.Dispatcher) – The calling dispatcher. - check_result – The result (return value) from
check_update.
- context (
-
collect_optional_args(dispatcher, update=None, check_result=None)¶ Prepares the optional arguments. If the handler has additional optional args, it should subclass this method, but remember to call this super method.
DEPRECATED: This method is being replaced by new context based callbacks. Please see https://git.io/fxJuV for more info.
Parameters: - dispatcher (
telegram.ext.Dispatcher) – The dispatcher. - update (
telegram.Update) – The update to gather chat/user id from. - check_result – The result from check_update
- dispatcher (
-
handle_update(update, dispatcher, check_result, context=None)¶ This method is called if it was determined that an update should indeed be handled by this instance. Calls
self.callbackalong with its respectful arguments. To work with thetelegram.ext.ConversationHandler, this method returns the value returned fromself.callback. Note that it can be overridden if needed by the subclassing handler.Parameters: - update (
str|telegram.Update) – The update to be handled. - dispatcher (
telegram.ext.Dispatcher) – The calling dispatcher. - check_result – The result from
check_update.
- update (
-