/TelegramAPy

API for Telegram

Primary LanguagePythonGNU General Public License v2.0GPL-2.0

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.