2017-11-20 07:19:53 +03:00
|
|
|
.. _working-with-updates:
|
|
|
|
|
2017-11-20 07:12:31 +03:00
|
|
|
====================
|
|
|
|
Working with Updates
|
|
|
|
====================
|
|
|
|
|
2018-06-25 22:14:58 +03:00
|
|
|
.. important::
|
|
|
|
|
2018-10-06 21:20:11 +03:00
|
|
|
Coming from Telethon before it reached its version 1.0?
|
|
|
|
Make sure to read :ref:`compatibility-and-convenience`!
|
|
|
|
Otherwise, you can ignore this note and just follow along.
|
2018-01-20 13:47:17 +03:00
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
The library comes with the `telethon.events` module. *Events* are an abstraction
|
2018-02-09 18:41:23 +03:00
|
|
|
over what Telegram calls `updates`__, and are meant to ease simple and common
|
2018-03-14 21:38:36 +03:00
|
|
|
usage when dealing with them, since there are many updates. If you're looking
|
|
|
|
for the method reference, check :ref:`telethon-events-package`, otherwise,
|
|
|
|
let's dive in!
|
2018-01-20 13:47:17 +03:00
|
|
|
|
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
.. important::
|
2018-03-01 15:21:28 +03:00
|
|
|
|
|
|
|
The library logs by default no output, and any exception that occurs
|
|
|
|
inside your handlers will be "hidden" from you to prevent the thread
|
|
|
|
from terminating (so it can still deliver events). You should enable
|
2018-06-20 12:05:33 +03:00
|
|
|
logging when working with events, at least the error level, to see if
|
|
|
|
this is happening so you can debug the error.
|
|
|
|
|
|
|
|
**When using updates, please enable logging:**
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
import logging
|
|
|
|
logging.basicConfig(level=logging.ERROR)
|
2018-03-01 15:21:28 +03:00
|
|
|
|
|
|
|
|
2017-11-20 07:12:31 +03:00
|
|
|
.. contents::
|
|
|
|
|
|
|
|
|
2018-02-09 18:41:23 +03:00
|
|
|
Getting Started
|
|
|
|
***************
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
from telethon import TelegramClient, events
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
client = TelegramClient('name', api_id, api_hash)
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
@client.on(events.NewMessage)
|
|
|
|
async def my_event_handler(event):
|
|
|
|
if 'hello' in event.raw_text:
|
|
|
|
await event.reply('hi!')
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-25 22:14:58 +03:00
|
|
|
client.start()
|
2018-06-21 22:54:54 +03:00
|
|
|
client.run_until_disconnected()
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-02-09 18:41:23 +03:00
|
|
|
Not much, but there might be some things unclear. What does this code do?
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
from telethon import TelegramClient, events
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
client = TelegramClient('name', api_id, api_hash)
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
This is normal creation (of course, pass session name, API ID and hash).
|
2018-02-09 18:41:23 +03:00
|
|
|
Nothing we don't know already.
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
@client.on(events.NewMessage)
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-02-09 18:41:23 +03:00
|
|
|
This Python decorator will attach itself to the ``my_event_handler``
|
2018-06-20 12:05:33 +03:00
|
|
|
definition, and basically means that *on* a `NewMessage
|
|
|
|
<telethon.events.newmessage.NewMessage>` *event*,
|
2018-02-09 18:41:23 +03:00
|
|
|
the callback function you're about to define will be called:
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
async def my_event_handler(event):
|
|
|
|
if 'hello' in event.raw_text:
|
|
|
|
await event.reply('hi!')
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
If a `NewMessage
|
|
|
|
<telethon.events.newmessage.NewMessage>` event occurs,
|
2018-06-22 15:44:59 +03:00
|
|
|
and ``'hello'`` is in the text of the message, we `.reply()
|
|
|
|
<telethon.tl.custom.message.Message.reply>` to the event
|
2018-06-20 12:05:33 +03:00
|
|
|
with a ``'hi!'`` message.
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-25 22:14:58 +03:00
|
|
|
Do you notice anything different? Yes! Event handlers **must** be ``async``
|
|
|
|
for them to work, and **every method using the network** needs to have an
|
|
|
|
``await``, otherwise, Python's ``asyncio`` will tell you that you forgot
|
|
|
|
to do so, so you can easily add it.
|
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-25 22:14:58 +03:00
|
|
|
client.start()
|
2018-06-21 22:54:54 +03:00
|
|
|
client.run_until_disconnected()
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
Finally, this tells the client that we're done with our code. We run the
|
2018-06-25 22:14:58 +03:00
|
|
|
``asyncio`` loop until the client starts (this is done behind the scenes,
|
|
|
|
since the method is so common), and then we run it again until we are
|
|
|
|
disconnected. Of course, you can do other things instead of running
|
2018-06-21 22:54:54 +03:00
|
|
|
until disconnected. For this refer to :ref:`update-modes`.
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-02-09 18:41:23 +03:00
|
|
|
More on events
|
|
|
|
**************
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
The `NewMessage <telethon.events.newmessage.NewMessage>` event has much
|
2018-06-22 15:44:59 +03:00
|
|
|
more than what was shown. You can access the `.sender
|
|
|
|
<telethon.tl.custom.message.Message.sender>` of the message
|
|
|
|
through that member, or even see if the message had `.media
|
|
|
|
<telethon.tl.custom.message.Message.media>`, a `.photo
|
|
|
|
<telethon.tl.custom.message.Message.photo>` or a `.document
|
|
|
|
<telethon.tl.custom.message.Message.document>` (which you
|
|
|
|
could download with for example `client.download_media(event.photo)
|
|
|
|
<telethon.client.downloads.DownloadMethods.download_media>`.
|
|
|
|
|
|
|
|
If you don't want to `.reply()
|
|
|
|
<telethon.tl.custom.message.Message.reply>` as a reply,
|
|
|
|
you can use the `.respond() <telethon.tl.custom.message.Message.respond>`
|
|
|
|
method instead. Of course, there are more events such as `ChatAction
|
|
|
|
<telethon.events.chataction.ChatAction>` or `UserUpdate
|
|
|
|
<telethon.events.userupdate.UserUpdate>`, and they're all
|
|
|
|
used in the same way. Simply add the `@client.on(events.XYZ)
|
|
|
|
<telethon.client.updates.UpdateMethods.on>` decorator on the top
|
|
|
|
of your handler and you're done! The event that will be passed always
|
|
|
|
is of type ``XYZ.Event`` (for instance, `NewMessage.Event
|
|
|
|
<telethon.events.newmessage.NewMessage.Event>`), except for the `Raw
|
|
|
|
<telethon.events.raw.Raw>` event which just passes the :tl:`Update` object.
|
|
|
|
|
|
|
|
Note that `.reply()
|
|
|
|
<telethon.tl.custom.message.Message.reply>` and `.respond()
|
|
|
|
<telethon.tl.custom.message.Message.respond>` are just wrappers around the
|
2018-06-20 12:05:33 +03:00
|
|
|
`client.send_message() <telethon.client.messages.MessageMethods.send_message>`
|
|
|
|
method which supports the ``file=`` parameter.
|
2018-06-22 15:44:59 +03:00
|
|
|
This means you can reply with a photo if you do `event.reply(file=photo)
|
|
|
|
<telethon.tl.custom.message.Message.reply>`.
|
2018-03-04 01:12:05 +03:00
|
|
|
|
2018-02-09 18:41:23 +03:00
|
|
|
You can put the same event on many handlers, and even different events on
|
|
|
|
the same handler. You can also have a handler work on only specific chats,
|
|
|
|
for example:
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
.. code-block:: python
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
import ast
|
|
|
|
import random
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
# Either a single item or a list of them will work for the chats.
|
|
|
|
# You can also use the IDs, Peers, or even User/Chat/Channel objects.
|
|
|
|
@client.on(events.NewMessage(chats=('TelethonChat', 'TelethonOffTopic')))
|
2018-06-21 22:54:54 +03:00
|
|
|
async def normal_handler(event):
|
2018-06-20 12:05:33 +03:00
|
|
|
if 'roll' in event.raw_text:
|
2018-06-21 22:54:54 +03:00
|
|
|
await event.reply(str(random.randint(1, 6)))
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
# Similarly, you can use incoming=True for messages that you receive
|
2018-06-21 22:54:54 +03:00
|
|
|
@client.on(events.NewMessage(chats='TelethonOffTopic', outgoing=True,
|
|
|
|
pattern='eval (.+)'))
|
|
|
|
async def admin_handler(event):
|
|
|
|
expression = event.pattern_match.group(1)
|
|
|
|
await event.reply(str(ast.literal_eval(expression)))
|
2018-02-09 18:41:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
You can pass one or more chats to the ``chats`` parameter (as a list or tuple),
|
|
|
|
and only events from there will be processed. You can also specify whether you
|
|
|
|
want to handle incoming or outgoing messages (those you receive or those you
|
|
|
|
send). In this example, people can say ``'roll'`` and you will reply with a
|
|
|
|
random number, while if you say ``'eval 4+4'``, you will reply with the
|
|
|
|
solution. Try it!
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
Properties vs. Methods
|
2018-06-22 15:44:59 +03:00
|
|
|
**********************
|
|
|
|
|
|
|
|
The event shown above acts just like a `custom.Message
|
|
|
|
<telethon.tl.custom.message.Message>`, which means you
|
|
|
|
can access all the properties it has, like ``.sender``.
|
|
|
|
|
|
|
|
**However** events are different to other methods in the client, like
|
|
|
|
`client.get_messages <telethon.client.messages.MessageMethods.get_messages>`.
|
|
|
|
Events *may not* send information about the sender or chat, which means it
|
|
|
|
can be ``None``, but all the methods defined in the client always have this
|
|
|
|
information so it doesn't need to be re-fetched. For this reason, you have
|
|
|
|
``get_`` methods, which will make a network call if necessary.
|
|
|
|
|
|
|
|
In short, you should do this:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
@client.on(events.NewMessage)
|
|
|
|
async def handler(event):
|
|
|
|
# event.input_chat may be None, use event.get_input_chat()
|
|
|
|
chat = await event.get_input_chat()
|
|
|
|
sender = await event.get_sender()
|
|
|
|
buttons = await event.get_buttons()
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
async for message in client.iter_messages('me', 10):
|
|
|
|
# Methods from the client always have these properties ready
|
|
|
|
chat = message.input_chat
|
|
|
|
sender = message.sender
|
|
|
|
buttons = message.buttons
|
|
|
|
|
|
|
|
Notice, properties (`message.sender
|
|
|
|
<telethon.tl.custom.message.Message.sender>`) don't need an ``await``, but
|
|
|
|
methods (`message.get_sender
|
|
|
|
<telethon.tl.custom.message.Message.get_sender>`) **do** need an ``await``,
|
|
|
|
and you should use methods in events for these properties that may need network.
|
|
|
|
|
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
Events Without the client
|
2018-03-17 19:07:56 +03:00
|
|
|
*************************
|
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
The code of your application starts getting big, so you decide to
|
|
|
|
separate the handlers into different files. But how can you access
|
|
|
|
the client from these files? You don't need to! Just `events.register
|
|
|
|
<telethon.events.register>` them:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
# handlers/welcome.py
|
|
|
|
from telethon import events
|
|
|
|
|
|
|
|
@events.register(events.NewMessage('(?i)hello'))
|
|
|
|
async def handler(event):
|
|
|
|
client = event.client
|
|
|
|
await event.respond('Hey!')
|
|
|
|
await client.send_message('me', 'I said hello to someone')
|
|
|
|
|
|
|
|
|
|
|
|
Registering events is a way of saying "this method is an event handler".
|
|
|
|
You can use `telethon.events.is_handler` to check if any method is a handler.
|
|
|
|
You can think of them as a different approach to Flask's blueprints.
|
|
|
|
|
|
|
|
It's important to note that this does **not** add the handler to any client!
|
|
|
|
You never specified the client on which the handler should be used. You only
|
|
|
|
declared that it is a handler, and its type.
|
|
|
|
|
|
|
|
To actually use the handler, you need to `client.add_event_handler
|
|
|
|
<telethon.client.updates.UpdateMethods.add_event_handler>` to the
|
|
|
|
client (or clients) where they should be added to:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
# main.py
|
|
|
|
from telethon import TelegramClient
|
|
|
|
import handlers.welcome
|
|
|
|
|
|
|
|
with TelegramClient(...) as client:
|
|
|
|
client.add_event_handler(handlers.welcome.handler)
|
|
|
|
client.run_until_disconnected()
|
|
|
|
|
|
|
|
|
|
|
|
This also means that you can register an event handler once and
|
|
|
|
then add it to many clients without re-declaring the event.
|
|
|
|
|
|
|
|
|
|
|
|
Events Without Decorators
|
|
|
|
*************************
|
|
|
|
|
|
|
|
If for any reason you don't want to use `telethon.events.register`,
|
|
|
|
you can explicitly pass the event handler to use to the mentioned
|
|
|
|
`client.add_event_handler
|
|
|
|
<telethon.client.updates.UpdateMethods.add_event_handler>`:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from telethon import TelegramClient, events
|
|
|
|
|
|
|
|
async def handler(event):
|
|
|
|
...
|
|
|
|
|
|
|
|
with TelegramClient(...) as client:
|
|
|
|
client.add_event_handler(handler, events.NewMessage)
|
|
|
|
client.run_until_disconnected()
|
|
|
|
|
2018-03-17 19:07:56 +03:00
|
|
|
|
2018-06-20 12:05:33 +03:00
|
|
|
Similarly, you also have `client.remove_event_handler
|
|
|
|
<telethon.client.updates.UpdateMethods.remove_event_handler>`
|
|
|
|
and `client.list_event_handlers
|
|
|
|
<telethon.client.updates.UpdateMethods.list_event_handlers>`.
|
2018-03-17 19:07:56 +03:00
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
The ``event`` argument is optional in all three methods and defaults to
|
2018-06-20 12:05:33 +03:00
|
|
|
`events.Raw <telethon.events.raw.Raw>` for adding, and ``None`` when
|
|
|
|
removing (so all callbacks would be removed).
|
2018-03-17 19:07:56 +03:00
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
The ``event`` type is ignored in `client.add_event_handler
|
|
|
|
<telethon.client.updates.UpdateMethods.add_event_handler>`
|
|
|
|
if you have used `telethon.events.register` on the ``callback``
|
|
|
|
before, since that's the point of using such method at all.
|
|
|
|
|
2018-03-17 19:07:56 +03:00
|
|
|
|
2018-09-22 13:51:58 +03:00
|
|
|
Stopping Propagation of Updates
|
2018-02-27 13:30:42 +03:00
|
|
|
*******************************
|
|
|
|
|
|
|
|
There might be cases when an event handler is supposed to be used solitary and
|
|
|
|
it makes no sense to process any other handlers in the chain. For this case,
|
2018-06-20 12:05:33 +03:00
|
|
|
it is possible to raise a `telethon.events.StopPropagation` exception which
|
|
|
|
will cause the propagation of the update through your handlers to stop:
|
2018-02-27 13:30:42 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
.. code-block:: python
|
2018-02-27 13:30:42 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
from telethon.events import StopPropagation
|
2018-02-27 13:30:42 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
@client.on(events.NewMessage)
|
|
|
|
async def _(event):
|
|
|
|
# ... some conditions
|
|
|
|
await event.delete()
|
2018-02-27 13:30:42 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
# Other handlers won't have an event to work with
|
|
|
|
raise StopPropagation
|
2018-02-27 13:30:42 +03:00
|
|
|
|
2018-06-21 22:54:54 +03:00
|
|
|
@client.on(events.NewMessage)
|
|
|
|
async def _(event):
|
|
|
|
# Will never be reached, because it is the second handler
|
|
|
|
# in the chain.
|
|
|
|
pass
|
2018-02-27 13:30:42 +03:00
|
|
|
|
|
|
|
|
2018-03-14 21:38:36 +03:00
|
|
|
Remember to check :ref:`telethon-events-package` if you're looking for
|
|
|
|
the methods reference.
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
__ https://lonamiwebs.github.io/Telethon/types/update.html
|