Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

GUI framework on top of aiogram

License

NotificationsYou must be signed in to change notification settings

Tishka17/aiogram_dialog

Repository files navigation

PyPI versionDocdownloadslicenselicense

Version status:

  • v2.x - actual release, supports aiogram v3.x
  • v1.x - old release, supports aiogram v2.x, critical fix only

About

aiogram-dialog is a framework for developing interactive messages and menus in your telegram bot like a normal GUI application.

It is inspired by ideas of Android SDK and other tools.

Main ideas are:

  • split data retrieving, rendering and action processing - you need nothing to do for showing same content after some actions, also you can show same data in multiple ways.
  • reusable widgets - you can create calendar or multiselect at any point of your application without copy-pasting its internal logic
  • limited scope of context - any dialog keeps some data until closed, multiple opened dialogs process their data separately

Designing you bot withaiogram-dialog youthink about user, what he sees and what he does. Then you split this vision into reusable parts and design your bot combining dialogs, widows and widgets. By this moment you can review interface and add your core logic.

Many components are ready for use, but you can extend and add your own widgets and even core features.

For more details seedocumentation andexamples

Supported features:

  • Rich text rendering usingformat function orJinja2 template engine.
  • Automatic message updating after user actions
  • Multiple independent dialog stacks with own data storage and transitions
  • Inline keyboard widgets likeSwitchTo,Start,Cancel for state switching,Calendar for date selection and others.
  • Stateful widgets:Checkbox,Multiselect,Counter,TextInput. They record user actions and allow you to retrieve this data later.
  • Multiple buttons layouts including simple grouping (Group,Column), page scrolling (ScrollingGroup), repeating of same buttons for list of data (ListGroup).
  • Sending media (like photo or video) with fileid caching and handling switching to/from message with no media.
  • Different rules of transitions between windows/dialogs like keeping only one dialog on top of stack or force sending new message instead of updating one.
  • Offline HTML-preview for messages and transitions diagram. They can be used to check all states without emulating real use cases or exported for demonstration purposes.

Usage

Example below is suitable for aiogram_dialog v2.x and aiogram v3.x

Declaring Window

Each window consists of:

  • Text widgets. Render text of message.
  • Keyboard widgets. Render inline keyboard
  • Media widget. Renders media if need
  • Message handler. Called when user sends a message when window is shown
  • Data getter functions (getter=). They load data from any source which can be used in text/keyboard
  • State. Used when switching between windows

Info: always createState insideStatesGroup

fromaiogram.fsm.stateimportStatesGroup,Statefromaiogram_dialog.widgets.textimportFormat,Constfromaiogram_dialog.widgets.kbdimportButtonfromaiogram_dialogimportWindowclassMySG(StatesGroup):main=State()asyncdefget_data(**kwargs):return {"name":"world"}Window(Format("Hello, {name}!"),Button(Const("Empty button"),id="nothing"),state=MySG.main,getter=get_data,)

Declaring dialog

Window itself can do nothing, just prepares message. To use it you need dialog:

fromaiogram.fsm.stateimportStatesGroup,Statefromaiogram_dialogimportDialog,WindowclassMySG(StatesGroup):first=State()second=State()dialog=Dialog(Window(...,state=MySG.first),Window(...,state=MySG.second),)

Info: All windows in a dialog MUST have states from then sameStatesGroup

After creating a dialog you need to register it into the Dispatcher and set it up using thesetup_dialogs function:

fromaiogramimportDispatcherfromaiogram_dialogimportsetup_dialogs...dp=Dispatcher(storage=storage)# create as usualdp.include_router(dialog)setup_dialogs(dp)

Then start dialog when you are ready to use it. Dialog is started viastart method ofDialogManager instance. Youshould provide corresponding state to switch into (usually it is state of first window in dialog).

For example in/start command handler:

asyncdefuser_start(message:Message,dialog_manager:DialogManager):awaitdialog_manager.start(MySG.first,mode=StartMode.RESET_STACK)dp.message.register(user_start,CommandStart())

Info: Always setmode=StartMode.RESET_STACK in your top level start command. Otherwise, dialogs are stacked just as they doon your mobile phone, so you can reach stackoverflow error


[8]ページ先頭

©2009-2025 Movatter.jp