Skip to main content

Telegram Bot API

Project description

Telegrapy

Telegrapy is a package for easy building of bots using the Telegram Bot API.


How to start

  1. Install package using pip
$ pip3 install telegrapy

ALTERNATIVE: Clone the repo

$ cd PATH_OF_YOUR_CHOICE
$ git clone https://github.com/sudogene/telegrapy.git
$ cd telegrapy
  1. Test your bot's account using the following code
from telegrapy import Bot

token = 'YOUR_TOKEN'
bot = Bot(token)

print(bot.get_me())
  1. Set bot to run in a loop and keep program alive

bot.run()
print('Running...')

while True:
  time.sleep(3)

When the bot runs, it indefinitely checks for message updates and handles them.

Quick example on an echo bot can be found in example.py.


Telegram Objects

Telegram Objects in telegrapy are object-oriented implementation of JSON-objects in the Telegram API. Each object has a unique identifier (ID) and its corresponding JSON. Hence, any object can return its own JSON format by calling the .json attribute.

User

Based on Telegram User. These are typically senders of Message.

Chat

Based on Telegram Chat. They are subclassed into PrivateChat, GroupChat, and SupergroupChat. As of now, there are not many differences in terms of parsing messages from these chat types. Chat IDs are required for bots to send messages to.

Message

Based on Telegram Message. The main bulk of data necessary for bot interactions. Contains information of the date time, sender, chat, command, and text.


Creating Bot Commands

Bot commands are special text/phrases recognized by bots as commands, and trigger bots to call functions defined by the user. All messages received by the bot are parsed and handled by the Handler class which is attached to the Bot upon creation. You can create your handler functions using the function signature

def function_name(msg: telegrapy.Message)

where all functions MUST take in the Message object. A code example:

def echo(msg):
  chat_id = msg.chat_id
  text = msg.text
  bot.send_message(chat_id, text)

Defined handler functions can then be added to the bot's handler:

# get the handelr
handler = bot.handler

# add the function
handler.add_command('echo', echo)

Adding of commands to the handler requires two arguments; the string command and the function.


Bot Methods

Not to be confused with bot commands. Bot methods are GET and POST HTTP methods based on Telegram Available Methods. As of now, the following methods have been implemented in this library:

Method telegrapy.Bot function
getMe get_me
sendMessage send_message
sendPhoto send_photo
sendAudio send_audio
sendDocument send_document
sendVideo send_video
sendVoice send_voice
sendDice send_dice

Optional Arguments for Bot Methods

Some methods support additional arguments specific to use case. An example is reply_to_message_id which allows the bot's message to reply to a specific message. This requires the Message ID, which is conveniently available in the Message input for all handler functions.

# Direct reply to the sender's message
def echo(msg):
  chat_id = msg.chat_id
  text = msg.text
  bot.send_message(chat_id, text, reply_to_message_id=msg.id)

bot.handler.add_command('echo', echo)

... More to be added

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

telegrapy-0.1.1.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file telegrapy-0.1.1.tar.gz.

File metadata

  • Download URL: telegrapy-0.1.1.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.0

File hashes

Hashes for telegrapy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 84d4922b66eb5254da9f9fd70a7d19bee6140c6fa6cf062a1990c1153cadfbef
MD5 98446b7f26c3bd30e15a2b9c86b462e1
BLAKE2b-256 720853c0e7956fceec64312e98e1e712b7143c1cd75f8d9a936afe6a8fe29596

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page