mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-23 23:34:28 +00:00
Add type Reaction
This commit is contained in:
parent
1fa637553d
commit
2799011c07
@ -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"
|
||||
]
|
||||
|
49
pyrogram/types/messages_and_media/reaction.py
Normal file
49
pyrogram/types/messages_and_media/reaction.py
Normal 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
|
Loading…
Reference in New Issue
Block a user