Telegram bot library


License
MIT
Install
pip install telepy==0.0.31

Documentation

Tele

Telegram bot library.

view readthedocs
GitLab
pypi

Installation

requires python 3 + to run.

pip3 install telepy

from Tele import *


@bot('text')
def echo(update):
    update.reply(update.text)


account('TOKEN')
bot_run()