D
D
desu1162022-03-15 22:37:34
Python
desu116, 2022-03-15 22:37:34

How to add a second button to inline mode?

1 import hashlib
 2 import logging
 3
 4 from aiogram import Bot, Dispatcher, executor
 5 from aiogram.types import InlineQuery, \
 6    InputTextMessageContent, InlineQueryResultArticle
 7
 8 API_TOKEN = 'BOT_TOKEN_HERE'
 9
10 logging.basicConfig(level=logging.DEBUG)
11
12 bot = Bot(token=API_TOKEN)
13 dp = Dispatcher(bot)
14
15
16 @dp.inline_handler()
17 async def inline_echo(inline_query: InlineQuery):
18    # id affects both preview and content,
19    # so it has to be unique for each result
20    # (Unique identifier for this result, 1-64 Bytes)
21    # you can set your unique id's
22    # but for example i'll generate it based on text because I know, that
23    # only text will be passed in this example
24    text = inline_query.query or 'echo'
25    input_content = InputTextMessageContent(text)
26    result_id: str = hashlib.md5(text.encode()).hexdigest()
27    item = InlineQueryResultArticle(
28        id=result_id,
29        title=f'Result {text!r}',
30        input_message_content=input_content,
31    )
32    # don't forget to set cache_time=1 for testing (default is 300s or 5m)
33    await bot.answer_inline_query(inline_query.id, results=[item], cache_time=1)
34
35
36if __name__ == '__main__':
37    executor.start_polling(dp, skip_updates=True)


Above is an example of code for adding one button from the official documentation, but I did not find a way to add a second one. Can this be implemented?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
soremix, 2022-03-15
@desu116

Probably add a second identical element to the list of results, no?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question