aiogram/docs/dispatcher/class_based_handlers/poll.md
2020-01-21 23:33:44 +02:00

574 B

PollHandler

There is base class for poll handlers.

Simple usage:

from aiogram.handlers import PollHandler

...

@router.poll_handler()
class MyHandler(PollHandler):
    async def handle(self) -> Any: ...

Extension

This base handler is subclass of BaseHandler with some extensions:

  • self.question is alias for self.event.question
  • self.options is alias for self.event.options