telegram.ext.CallbackContext

class telegram.ext.CallbackContext(dispatcher: Dispatcher)

This is a context object passed to the callback called by telegram.ext.Handler or by the telegram.ext.Dispatcher in an error handler added by telegram.ext.Dispatcher.add_error_handler or to the callback of a telegram.ext.Job.

Note

telegram.ext.Dispatcher will create a single context for an entire update. This means that if you got 2 handlers in different groups and they both get called, they will get passed the same CallbackContext object (of course with proper attributes like .matches differing). This allows you to add custom attributes in a lower handler group callback, and then subsequently access those attributes in a higher handler group callback. Note that the attributes on CallbackContext might change in the future, so make sure to use a fairly unique name for the attributes.

Warning

Do not combine custom attributes and @run_async/ telegram.ext.Disptacher.run_async(). Due to how run_async works, it will almost certainly execute the callbacks for an update out of order, and the attributes that you think you added will not be present.

bot_data

Optional. A dict that can be used to keep any data in. For each update it will be the same dict.

Type:dict
chat_data

Optional. A dict that can be used to keep any data in. For each update from the same chat id it will be the same dict.

Warning

When a group chat migrates to a supergroup, its chat id will change and the chat_data needs to be transferred. For details see our wiki page.

Type:dict
user_data

Optional. A dict that can be used to keep any data in. For each update from the same user it will be the same dict.

Type:dict
matches

Optional. If the associated update originated from a regex-supported handler or had a Filters.regex, this will contain a list of match objects for every pattern where re.search(pattern, string) returned a match. Note that filters short circuit, so combined regex filters will not always be evaluated.

Type:List[re match object]
args

Optional. Arguments passed to a command if the associated update is handled by telegram.ext.CommandHandler, telegram.ext.PrefixHandler or telegram.ext.StringCommandHandler. It contains a list of the words in the text after the command, using any whitespace string as a delimiter.

Type:List[str]
error

Optional. The error that was raised. Only present when passed to a error handler registered with telegram.ext.Dispatcher.add_error_handler.

Type:Exception
async_args

Optional. Positional arguments of the function that raised the error. Only present when the raising function was run asynchronously using telegram.ext.Dispatcher.run_async().

Type:List[object]
async_kwargs

Optional. Keyword arguments of the function that raised the error. Only present when the raising function was run asynchronously using telegram.ext.Dispatcher.run_async().

Type:Dict[str, object]
job

Optional. The job which originated this callback. Only present when passed to the callback of telegram.ext.Job.

Type:telegram.ext.Job
bot

The bot associated with this context.

Type:telegram.Bot
dispatcher

The dispatcher associated with this context.

Type:telegram.ext.Dispatcher
job_queue

The JobQueue used by the telegram.ext.Dispatcher and (usually) the telegram.ext.Updater associated with this context.

Type:telegram.ext.JobQueue
match

The first match from matches. Useful if you are only filtering using a single regex filter. Returns None if matches is empty.

Type:Regex match type
update_queue

The Queue instance used by the telegram.ext.Dispatcher and (usually) the telegram.ext.Updater associated with this context.

Type:queue.Queue