send_poll()#
- Client.send_poll()#
Send a new poll.
Usable by ✅ Users ✅ Bots- Parameters:
chat_id (
int
|str
) – Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str).question (
str
) – Poll question, 1-255 characters.options (List of
InputPollOption
) – List of answer options, 2-10 answer options.question_parse_mode (
ParseMode
, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together.question_entities (List of
MessageEntity
) – List of special entities that appear in the poll question, which can be specified instead of question_parse_mode.is_anonymous (
bool
, optional) – True, if the poll needs to be anonymous. Defaults to True.type (
PollType
, optional) – Poll type,QUIZ
orREGULAR
. Defaults toREGULAR
.allows_multiple_answers (
bool
, optional) – True, if the poll allows multiple answers, ignored for polls in quiz mode. Defaults to False.correct_option_id (
int
, optional) – 0-based identifier of the correct answer option, required for polls in quiz mode.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 with at most 2 line feeds after entities parsing.explanation_parse_mode (
ParseMode
, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together.explanation_entities (List of
MessageEntity
) – List of special entities that appear in the poll explanation, which can be specified instead of explanation_parse_mode.open_period (
int
, optional) – Amount of time in seconds the poll will be active after creation, 5-600. Can’t be used together with close_date.close_date (
datetime
, optional) – Point in time when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can’t be used together with open_period.is_closed (
bool
, optional) – Pass True, if the poll needs to be immediately closed. This can be useful for poll preview.disable_notification (
bool
, optional) – Sends the message silently. Users will receive a notification with no sound.protect_content (
bool
, optional) – Pass True if the content of the message must be protected from forwarding and saving; for bots only.allow_paid_broadcast (
bool
, optional) – Pass True to allow the message to ignore regular broadcast limits for a small fee; for bots onlyreply_parameters (
ReplyParameters
, optional) – Description of the message to reply tomessage_thread_id (
int
, optional) – If the message is in a thread, ID of the original message.business_connection_id (
str
, optional) – Unique identifier of the business connection on behalf of which the message will be sent.send_as (
int
|str
) – Unique identifier (int) or username (str) of the chat or channel to send the message as. You can use this to send the message on behalf of a chat or channel where you have appropriate permissions. Use theget_send_as_chats()
to return the list of message sender identifiers, which can be used to send messages in the chat, This setting applies to the current message and will remain effective for future messages unless explicitly changed. To set this behavior permanently for all messages, useset_send_as_chat()
.schedule_date (
datetime
, optional) – Date when the message will be automatically sent.message_effect_id (
int
64-bit
, optional) – Unique identifier of the message effect to be added to the message; for private chats only.reply_markup (
InlineKeyboardMarkup
|ReplyKeyboardMarkup
|ReplyKeyboardRemove
|ForceReply
, optional) – Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
- Returns:
Message
– On success, the sent poll message is returned.
Example
from pyrogram.types import InputPollOption await app.send_poll( chat_id=chat_id, question="Is this a poll question?", options=[ InputPollOption(text="Yes"), InputPollOption(text="No"), InputPollOption(text= "Maybe"), ] )