aiogram-inline-paginations icon indicating copy to clipboard operation
aiogram-inline-paginations copied to clipboard

Simple lib for generate page Inline keyboards

Results 6 aiogram-inline-paginations issues
Sort by recently updated
recently updated
newest added

ImportError: cannot import name 'Text' from 'aiogram.filters' (/media/work/Disk/GoITeens_tech/1_semestr/Telegram_bot/telegram_bot_hint/.venv/lib/python3.10/site-packages/aiogram/filters/__init__.py)

Заменил `pprint` на `logger`, чтобы вывод консоли не засорять. Теперь чтобы увидеть вывод достаточно перевести логгер пагинатора в режим дебага Например так ```python import logging logging.getLogger("aiogram_inline_paginations.paginator").setLevel("DEBUG") ``` P.S. формат вывода...

В заголовке не совсем уверен. Имею файл main ``` bot = Bot(token=token) dp = Dispatcher(storage=storage.storage) async def main(): dp.include_router(handlers.router) dp.include_router(callbacks.router) await dp.start_polling(bot) if __name__ == "__main__": asyncio.run(main()) ``` Файл callbacks...

I'm using aigoram stable version 2.25.1, so I installed aiogram-inline-paginations 0.1.9, instead of latest versions. I iterate over a list of documents retrieved from the Firebase database. ``` @dp.callback_query_handler(lambda c:...

Hello! Thanks for this library, it helps a lot! Is it possible to make it usable on Python-3.9? I have Debian11 that natively doesn't support Python 3.10/3.11. It's not a...

Hey friend, does your library support aiogram3?