A simple library for interacting with the Telegram Bot API.
Use PyPI to install this library
pip install telegramapy
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.