telegram.Poll#
- class telegram.Poll(*args, **kwargs)[source]#
Bases:
telegram.TelegramObjectThis object contains information about a poll.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
idis equal.- Parameters
options (List[
PollOption]) – List of poll options.is_anonymous (
bool) –True, if the poll is anonymous.allows_multiple_answers (
bool) –True, if the poll allows multiple answers.correct_option_id (
int, optional) – 0-based identifier of the correct answer option. Available only for polls in the quiz mode, which are closed, or was sent (not forwarded) by the bot or to the private chat with the bot.explanation (
str, optional) – Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters.explanation_entities (List[
telegram.MessageEntity], optional) – Special entities like usernames, URLs, bot commands, etc. that appear in theexplanation.open_period (
int, optional) – Amount of time in seconds the poll will be active after creation.close_date (
datetime.datetime, optional) – Point in time (Unix timestamp) when the poll will be automatically closed. Converted todatetime.datetime.
- options[source]#
List of poll options.
- Type
List[
PollOption]
- explanation[source]#
Optional. Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll.
- Type
- explanation_entities[source]#
Optional. Special entities like usernames, URLs, bot commands, etc. that appear in the
explanation.- Type
List[
telegram.MessageEntity]
- open_period[source]#
Optional. Amount of time in seconds the poll will be active after creation.
- Type
- MAX_OPTION_NUMBER = 10[source]#
telegram.constants.PollLimit.OPTION_NUMBERNew in version 20.0.
- parse_explanation_entities(types=None)[source]#
Returns a
dictthat mapstelegram.MessageEntitytostr. It contains entities from this polls explanation filtered by theirtypeattribute as the key, and the text that each entity belongs to as the value of thedict.Note
This method should always be used instead of the
explanation_entitiesattribute, since it calculates the correct substring from the message text based on UTF-16 codepoints. Seeparse_explanation_entityfor more info.- Parameters
types (List[
str], optional) – List ofMessageEntitytypes as strings. If thetypeattribute of an entity is contained in this list, it will be returned. Defaults totelegram.MessageEntity.ALL_TYPES.- Returns
A dictionary of entities mapped to the text that belongs to them, calculated based on UTF-16 codepoints.
- Return type
Dict[
telegram.MessageEntity,str]
- parse_explanation_entity(entity)[source]#
Returns the text from a given
telegram.MessageEntity.Note
This method is present because Telegram calculates the offset and length in UTF-16 codepoint pairs, which some versions of Python don’t handle automatically. (That is, you can’t just slice
Message.textwith the offset and length.)- Parameters
entity (
telegram.MessageEntity) – The entity to extract the text from. It must be an entity that belongs to this message.- Returns
The text of the given entity.
- Return type
- Raises
RuntimeError – If the poll has no explanation.