Add type Reaction

This commit is contained in:
Dan 2021-12-30 13:45:43 +01:00
parent 1fa637553d
commit 2799011c07
2 changed files with 52 additions and 1 deletions

View File

@ -36,8 +36,10 @@ from .video import Video
from .video_note import VideoNote
from .voice import Voice
from .webpage import WebPage
from .reaction import Reaction
__all__ = [
"Animation", "Audio", "Contact", "Document", "Game", "Location", "Message", "MessageEntity", "Photo", "Thumbnail",
"StrippedThumbnail", "Poll", "PollOption", "Sticker", "Venue", "Video", "VideoNote", "Voice", "WebPage", "Dice"
"StrippedThumbnail", "Poll", "PollOption", "Sticker", "Venue", "Video", "VideoNote", "Voice", "WebPage", "Dice",
"Reaction"
]

View File

@ -0,0 +1,49 @@
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import pyrogram
from ..object import Object
class Reaction(Object):
"""Contains information about a reaction.
Parameters:
emoji (``str``):
Reaction emoji.
count (``int``):
Reaction count.
chosen (``bool``):
Whether this is the chosen reaction.
"""
def __init__(
self,
*,
client: "pyrogram.Client" = None,
emoji: str,
count: int,
chosen: bool
):
super().__init__(client)
self.emoji = emoji
self.count = count
self.chosen = chosen