mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-29 21:03:45 +03:00
24 lines
606 B
Python
24 lines
606 B
Python
from .base import EventBuilder
|
|
from .._misc import utils
|
|
|
|
|
|
class Raw(EventBuilder):
|
|
"""
|
|
Raw events are not actual events. Instead, they are the raw
|
|
:tl:`Update` object that Telegram sends. You normally shouldn't
|
|
need these.
|
|
|
|
Example
|
|
.. code-block:: python
|
|
|
|
from telethon import events
|
|
|
|
@client.on(events.Raw)
|
|
async def handler(update):
|
|
# Print all incoming updates
|
|
print(update.stringify())
|
|
"""
|
|
@classmethod
|
|
def _build(cls, update, others=None, self_id=None, *todo, **todo2):
|
|
return update
|