telepy

My own Telegram bot library. Telegram Bot Api wrapper. Create Telegram bots fast and easy with minimal effort.

Pure Nim score 15/100 · last commit 2021-08-20 · 3 stars · tests present · no docs generated

Summary

Latest Version Unknown
License Unknown
CI Status Failing
Stars 3
Forks 0
Open Issues 0
Last Commit 2021-08-20
Downloads 0
Last Indexed 2026-08-11 05:07

Installation

nimble install telepy
choosenim install telepy
git clone https://gitlab.com/2411eliko/tele

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
telepy - - - - - - -

Source

Repository https://gitlab.com/2411eliko/tele
Homepage https://gitlab.com/2411eliko/tele
Registry Source gitlab

README

Tele

Telegram bot library.

view readthedocs
GitLab
pypi
Build Status

Installation

requires python 3.4 or higher.

pip3 install telepy

from Tele import *


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


account('TOKEN')
bot_run()