telegram.ext.Job#
- class telegram.ext.Job(callback, context=None, name=None, job=None, chat_id=None, user_id=None)[source]#
Bases:
objectThis class is a convenience wrapper for the jobs held in a
telegram.ext.JobQueue. With the current backend APScheduler,jobholds aapscheduler.job.Jobinstance.Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
idis equal.Note
All attributes and instance methods of
jobare also directly available as attributes/methods of the correspondingtelegram.ext.Jobobject.If
jobisn’t passed on initialization, it must be set manually afterwards for thistelegram.ext.Jobto be useful.
Changed in version 20.0: Removed argument and attribute
job_queue.- Parameters
callback (coroutine function) –
The callback function that should be executed by the new job. Callback signature:
async def callback(context: CallbackContext)
context (
object, optional) – Additional data needed for the callback function. Can be accessed throughJob.contextin the callback. Defaults toNone.name (
str, optional) – The name of the new job. Defaults tocallback.__name__.job (
apscheduler.job.Job, optional) – The APS Job this job is a wrapper for.Chat id of the chat that this job is associated with.
New in version 20.0.
User id of the user that this job is associated with.
New in version 20.0.
- chat_id[source]#
Optional. Chat id of the chat that this job is associated with.
New in version 20.0.
- Type
- user_id[source]#
Optional. User id of the user that this job is associated with.
New in version 20.0.
- Type
- property next_t[source]#
Datetime for the next job execution. Datetime is localized according to
datetime.datetime.tzinfo. If job is removed or already ran it equals toNone.Warning
This attribute is only available, if the
telegram.ext.JobQueuethis job belongs to is already started. Otherwise APScheduler raises anAttributeError.- Type
- async run(application)[source]#
Executes the callback function independently of the jobs schedule. Also calls
telegram.ext.Application.update_persistence().Changed in version 20.0: Calls
telegram.ext.Application.update_persistence().- Parameters
application (
telegram.ext.Application) – The application this job is associated with.