mirror of
				https://github.com/LonamiWebs/Telethon.git
				synced 2025-11-04 09:57:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			581 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			581 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, client, update, entities):
 | 
						|
        return update
 |