2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2021-01-01 21:58:48 +00:00
|
|
|
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
|
2019-04-14 18:50:13 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2019-04-14 18:50:13 +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-04-14 18:50:13 +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-04-14 18:50:13 +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-04-14 18:50:13 +00:00
|
|
|
|
|
|
|
from .handler import Handler
|
|
|
|
|
|
|
|
|
|
|
|
class PollHandler(Handler):
|
|
|
|
"""The Poll handler class. Used to handle polls updates.
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
It is intended to be used with :meth:`~pyrogram.Client.add_handler`
|
2019-04-14 18:50:13 +00:00
|
|
|
|
|
|
|
For a nicer way to register this handler, have a look at the
|
2020-08-22 06:05:05 +00:00
|
|
|
:meth:`~pyrogram.Client.on_poll` decorator.
|
2019-04-14 18:50:13 +00:00
|
|
|
|
2019-05-09 02:28:46 +00:00
|
|
|
Parameters:
|
2019-04-14 18:50:13 +00:00
|
|
|
callback (``callable``):
|
|
|
|
Pass a function that will be called when a new poll update arrives. It takes *(client, poll)*
|
|
|
|
as positional arguments (look at the section below for a detailed description).
|
|
|
|
|
2019-05-30 13:23:43 +00:00
|
|
|
filters (:obj:`Filters`):
|
2019-04-14 18:50:13 +00:00
|
|
|
Pass one or more filters to allow only a subset of polls to be passed
|
|
|
|
in your callback function.
|
|
|
|
|
|
|
|
Other parameters:
|
2020-08-22 06:05:05 +00:00
|
|
|
client (:obj:`~pyrogram.Client`):
|
2019-04-14 18:50:13 +00:00
|
|
|
The Client itself, useful when you want to call other API methods inside the poll handler.
|
|
|
|
|
2020-08-22 06:05:05 +00:00
|
|
|
poll (:obj:`~pyrogram.types.Poll`):
|
2019-04-14 18:50:13 +00:00
|
|
|
The received poll.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, callback: callable, filters=None):
|
|
|
|
super().__init__(callback, filters)
|