mirror of
				https://github.com/LonamiWebs/Telethon.git
				synced 2025-11-04 01:47:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import datetime
 | 
						|
import typing
 | 
						|
 | 
						|
from . import helpers
 | 
						|
from .tl import types, custom
 | 
						|
 | 
						|
Phone = str
 | 
						|
Username = str
 | 
						|
PeerID = int
 | 
						|
Entity = typing.Union[types.User, types.Chat, types.Channel]
 | 
						|
FullEntity = typing.Union[types.UserFull, types.messages.ChatFull, types.ChatFull, types.ChannelFull]
 | 
						|
 | 
						|
EntityLike = typing.Union[
 | 
						|
    Phone,
 | 
						|
    Username,
 | 
						|
    PeerID,
 | 
						|
    types.TypePeer,
 | 
						|
    types.TypeInputPeer,
 | 
						|
    Entity,
 | 
						|
    FullEntity
 | 
						|
]
 | 
						|
EntitiesLike = typing.Union[EntityLike, typing.Sequence[EntityLike]]
 | 
						|
 | 
						|
ButtonLike = typing.Union[types.TypeKeyboardButton, custom.Button]
 | 
						|
MarkupLike = typing.Union[
 | 
						|
    types.TypeReplyMarkup,
 | 
						|
    ButtonLike,
 | 
						|
    typing.Sequence[ButtonLike],
 | 
						|
    typing.Sequence[typing.Sequence[ButtonLike]]
 | 
						|
]
 | 
						|
 | 
						|
TotalList = helpers.TotalList
 | 
						|
 | 
						|
DateLike = typing.Optional[typing.Union[float, datetime.datetime, datetime.date, datetime.timedelta]]
 | 
						|
 | 
						|
LocalPath = str
 | 
						|
ExternalUrl = str
 | 
						|
BotFileID = str
 | 
						|
FileLike = typing.Union[
 | 
						|
    LocalPath,
 | 
						|
    ExternalUrl,
 | 
						|
    BotFileID,
 | 
						|
    bytes,
 | 
						|
    typing.BinaryIO,
 | 
						|
    types.TypeMessageMedia,
 | 
						|
    types.TypeInputFile,
 | 
						|
    types.TypeInputFileLocation
 | 
						|
]
 | 
						|
 | 
						|
# Can't use `typing.Type` in Python 3.5.2
 | 
						|
# See https://github.com/python/typing/issues/266
 | 
						|
try:
 | 
						|
    OutFileLike = typing.Union[
 | 
						|
        str,
 | 
						|
        typing.Type[bytes],
 | 
						|
        typing.BinaryIO
 | 
						|
    ]
 | 
						|
except TypeError:
 | 
						|
    OutFileLike = typing.Union[
 | 
						|
        str,
 | 
						|
        typing.BinaryIO
 | 
						|
    ]
 | 
						|
 | 
						|
MessageLike = typing.Union[str, types.Message]
 | 
						|
MessageIDLike = typing.Union[int, types.Message, types.TypeInputMessage]
 | 
						|
 | 
						|
ProgressCallback = typing.Callable[[int, int], None]
 |