Skip to content

DEV-Degram/dgram

Repository files navigation

PyPi Package Version Supported Python versions Documentation Status Build Status PyPi downloads PyPi status

dgram

A simple, but extensible Python implementation for the Telegram Bot API.

Both synchronous and asynchronous.

Supported Bot API version: 6.3!

Contents

Getting started

This API is tested with Python 3.7-3.11 and Pypy 3. There are two ways to install the library:

  • Installation using pip (a Python package manager):
$ pip install dgram
  • Installation from source (requires git):
$ git clone https://github.com/DEV-Degram/dgram.git
$ cd dgram
$ python setup.py install

or:

$ pip install git+https://github.com/eternnoir/dgram.git
  • Started Code:
import dgram

bot = dgram.dgram("YOUR_TOKEN_HERE")

@bot.message_handler(commands=['start'])
def send_welcome(message):
    bot.reply_to(message, "Welcome, dear!")

bot.polling()