2020-10-06 19:28:40 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2021-01-03 06:10:24 +01:00
|
|
|
# Copyright (C) 2015-2021
|
2020-10-06 19:28:40 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
"""This module contains custom typing aliases."""
|
2020-11-29 16:20:46 +01:00
|
|
|
from pathlib import Path
|
2020-11-07 08:26:32 +01:00
|
|
|
from typing import IO, TYPE_CHECKING, Any, Dict, List, Optional, Tuple, TypeVar, Union
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2020-12-16 17:34:57 +01:00
|
|
|
from telegram import InputFile
|
2021-02-19 19:07:48 +01:00
|
|
|
from telegram.utils.helpers import DefaultValue
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
FileLike = Union[IO, 'InputFile']
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Either an open file handler or a :class:`telegram.InputFile`."""
|
|
|
|
|
2020-12-18 11:20:03 +01:00
|
|
|
FileInput = Union[str, bytes, FileLike, Path]
|
|
|
|
"""Valid input for passing files to Telegram. Either a file id as string, a file like object,
|
|
|
|
a local file path as string, :class:`pathlib.Path` or the file contents as :obj:`bytes`."""
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
JSONDict = Dict[str, Any]
|
|
|
|
"""Dictionary containing response from Telegram or data to send to the API."""
|
|
|
|
|
|
|
|
ConversationDict = Dict[Tuple[int, ...], Optional[object]]
|
|
|
|
"""Dicts as maintained by the :class:`telegram.ext.ConversationHandler`."""
|
2020-11-07 08:26:32 +01:00
|
|
|
|
2021-02-19 19:07:48 +01:00
|
|
|
DVType = TypeVar('DVType')
|
|
|
|
ODVInput = Optional[Union['DefaultValue[DVType]', DVType]]
|
|
|
|
"""Generic type for bot method parameters which can have defaults. ``ODVInput[type]`` is the same
|
|
|
|
as ``Optional[Union[DefaultValue, type]]``."""
|
|
|
|
DVInput = Union['DefaultValue[DVType]', DVType]
|
|
|
|
"""Generic type for bot method parameters which can have defaults. ``DVInput[type]`` is the same
|
|
|
|
as ``Union[DefaultValue, type]``."""
|
|
|
|
|
2020-11-07 08:26:32 +01:00
|
|
|
RT = TypeVar("RT")
|
|
|
|
SLT = Union[RT, List[RT], Tuple[RT, ...]]
|
|
|
|
"""Single instance or list/tuple of instances."""
|