Modern. Fast.
Litegram.

The lightweight Telegram Bot framework that doesn't get in your way. Built with Python 3.13+ and asyncio.

Get Started
pip install litegram
main.py
from litegram import Bot, Dispatcher

bot = Bot(token="BOT_TOKEN")
dp = Dispatcher(bot)

@dp.message()
async def handle_hello(message):
    await message.answer("Hello from Litegram! 🚀")

if __name__ == "__main__":
    dp.run_polling()

Why Litegram?

Lightning Fast

Leveraging asyncio for high-performance bot interactions and minimal overhead.

🛠️

Developer Friendly

Type hints everywhere, clean API, and intuitive design to keep you productive.

📦

Lightweight

Zero unnecessary dependencies. Keep your bot environment clean and small.

Built with the best