Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

aadeg/TelegramAPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

TelegramAPy

A simple library for interacting with the Telegram Bot API.

Installation

Use PyPI to install this library

pip install telegramapy

Usage

Use this library is pretty straightfoward. First you have to create a new instance of TelegramAPy passing the token generated by Telegram:

from telegramapi.telegram.api import TelegramAPy

token = "TokenGeneratedByTelegram"
api = TelegramAPy(token)

Now that you have created the instace, you can call all the methods defined in the Telegram Bot API page.

This library is updated with the changes of November, 2015.