Best Keyboard Library for Kurigram
PyKeyboard is a comprehensive Python library for creating beautiful and functional inline and reply keyboards for Telegram bots using Kurigram.
# Using pip
pip install pykeyboard-kurigram
# Using poetry
poetry add pykeyboard-kurigram
# Using uv
uv add pykeyboard-kurigramfrom pykeyboard import InlineKeyboard, InlineButton
# Create a simple inline keyboard
keyboard = InlineKeyboard()
keyboard.add(
InlineButton("👍 Like", "action:like"),
InlineButton("👎 Dislike", "action:dislike"),
InlineButton("📊 Stats", "action:stats")
)
# Use with Kurigram
await message.reply_text("What do you think?", reply_markup=keyboard)For comprehensive documentation, see the docs or check the examples.py file for sequential usage examples.
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ for the Telegram bot development community