telegram.ext.callbackqueryhandler module¶
This module contains the CallbackQueryHandler class
-
class
telegram.ext.callbackqueryhandler.CallbackQueryHandler(callback, pass_update_queue=False, pass_job_queue=False, pattern=None, pass_groups=False, pass_groupdict=False, pass_user_data=False, pass_chat_data=False)¶ Bases:
telegram.ext.handler.HandlerHandler class to handle Telegram callback queries. Optionally based on a regex. Read the documentation of the
remodule for more information.Parameters: - callback (function) – A function that takes
bot, updateas positional arguments. It will be called when thecheck_updatehas determined that an update should be processed by this handler. - pass_update_queue (optional[bool]) – If set to
True, a keyword argument calledupdate_queuewill be passed to the callback function. It will be theQueueinstance used by theUpdaterandDispatcherthat contains new updates which can be used to insert updates. Default isFalse. - pass_job_queue (optional[bool]) – If set to
True, a keyword argument calledjob_queuewill be passed to the callback function. It will be aJobQueueinstance created by theUpdaterwhich can be used to schedule new jobs. Default isFalse. - pattern (optional[str or Pattern]) – Optional regex pattern. If not
Nonere.matchis used to determine if an update should be handled by this handler. - pass_groups (optional[bool]) – If the callback should be passed the
result of
re.match(pattern, data).groups()as a keyword argument calledgroups. Default isFalse - pass_groupdict (optional[bool]) – If the callback should be passed the
result of
re.match(pattern, data).groupdict()as a keyword argument calledgroupdict. Default isFalse - pass_user_data (optional[bool]) – If set to
True, a keyword argument calleduser_datawill be passed to the callback function. It will be adictyou can use to keep any data related to the user that sent the update. For each update of the same user, it will be the samedict. Default isFalse. - pass_chat_data (optional[bool]) – If set to
True, a keyword argument calledchat_datawill be passed to the callback function. It will be adictyou can use to keep any data related to the chat that the update was sent in. For each update in the same chat, it will be the samedict. Default isFalse.
-
checkUpdate(*args, **kwargs)¶
-
check_update(update)¶
-
handleUpdate(*args, **kwargs)¶
-
handle_update(update, dispatcher)¶
-
m= 'telegram.CallbackQueryHandler.'¶
- callback (function) – A function that takes