Menu

Documentation API Reference Examples Developer

Python Telegram Bot Framework

A simplified implementation of Telegram Bots in a seamless way

Installation

pip install https://telecore.vercel.app/version=1.0.0
Copied!

Quick Start

from telecore import Bot

bot = Bot('YOUR_BOT_TOKEN')

@bot.message_handler()
def echo(message):
    bot.send_message(message.chat.id, message.text)

bot.run()
Copied!

Examples

API Reference

Community

Join Our Community

Connect with other Telecore developers, share your projects, and get help from the community.

About the Developer

Developer Avatar

Ahmed Negm

Passionate Python developer and creator of Telecore.

I'm a software engineer with a focus on building tools that simplify developers' lives. Telecore is my contribution to the Telegram bot development community, aiming to make bot creation more accessible and enjoyable.