MTPyroger/pyrogram/client/methods/messages/stop_poll.py

76 lines
2.6 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
2019-01-05 13:44:10 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2019-01-05 13:44:10 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2019-01-05 13:44:10 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram 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 General Public License for more details.
2019-01-05 13:44:10 +00:00
#
2020-03-21 14:43:32 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2019-01-05 13:44:10 +00:00
from typing import Union
import pyrogram
2019-01-05 13:44:10 +00:00
from pyrogram.api import functions, types
from pyrogram.client.ext import BaseClient
class StopPoll(BaseClient):
def stop_poll(
2019-03-16 18:23:23 +00:00
self,
chat_id: Union[int, str],
message_id: int,
reply_markup: "pyrogram.InlineKeyboardMarkup" = None
) -> "pyrogram.Poll":
"""Stop a poll which was sent by you.
2019-01-05 13:44:10 +00:00
Stopped polls can't be reopened and nobody will be able to vote in it anymore.
2019-01-05 13:44:10 +00:00
Parameters:
2019-01-05 13:44:10 +00:00
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).
message_id (``int``):
Identifier of the original message with the poll.
reply_markup (:obj:`InlineKeyboardMarkup`, *optional*):
An InlineKeyboardMarkup object.
2019-01-05 13:44:10 +00:00
Returns:
:obj:`Poll`: On success, the stopped poll with the final results is returned.
2019-01-05 13:44:10 +00:00
2019-07-25 09:22:14 +00:00
Example:
.. code-block:: python
app.stop_poll(chat_id, message_id)
2019-01-05 13:44:10 +00:00
"""
poll = self.get_messages(chat_id, message_id).poll
r = self.send(
2019-01-05 13:44:10 +00:00
functions.messages.EditMessage(
peer=self.resolve_peer(chat_id),
id=message_id,
media=types.InputMediaPoll(
poll=types.Poll(
2020-02-01 13:08:21 +00:00
id=int(poll.id),
2019-01-05 13:44:10 +00:00
closed=True,
question="",
answers=[]
)
),
reply_markup=reply_markup.write() if reply_markup else None
2019-01-05 13:44:10 +00:00
)
)
return pyrogram.Poll._parse(self, r.updates[0])