python-telegram-bot/README.rst

122 lines
3.4 KiB
ReStructuredText
Raw Normal View History

2015-07-08 00:28:22 +02:00
Python Telegram Bot
A Python wrapper around the Telegram Bot API.
By `Leandro Toledo <leandrotoledodesouza@gmail.com>`_
2015-07-08 02:13:58 +02:00
.. image:: https://travis-ci.org/leandrotoledo/python-telegram-bot.svg?branch=master
:target: https://travis-ci.org/leandrotoledo/python-telegram-bot
2015-07-08 00:28:22 +02:00
:alt: Travis CI Status
============
Introduction
============
This library provides a pure Python interface for the `Telegram Bot API <https://core.telegram.org/bots/api>`_. It works with Python versions from 2.6+. Python 3 support is under development.
2015-07-08 23:35:05 +02:00
==========
Installing
==========
You can install python-telegram-bot using::
$ pip install python-telegram-bot
2015-07-08 00:28:22 +02:00
================
Getting the code
================
The code is hosted at https://github.com/leandrotoledo/python-telegram-bot
Check out the latest development version anonymously with::
$ git clone https://github.com/leandrotoledo/python-telegram-bot
$ cd python-telegram-bot
Setup a virtual environment and install dependencies:
$ make env
Activate the virtual environment created:
$ source env/bin/activate
Run tests:
$ make test
To see other options available, run:
$ make help
=============
Documentation
=============
View the last release API documentation at: https://core.telegram.org/bots/api
---
API
---
2015-07-08 22:58:50 +02:00
The API is exposed via the ``telegram.Bot`` class.
2015-07-08 23:00:56 +02:00
To generate an Access Token you have to talk to `BotFather <https://telegram.me/botfather>`_ and follow a few simple steps (described `here <https://core.telegram.org/bots#botfather>`_).
2015-07-08 22:58:50 +02:00
For full details see the `Bots: An introduction for developers <https://core.telegram.org/bots>`_.
To create an instance of the ``telegram.Bot``::
2015-07-08 00:28:22 +02:00
>>> import telegram
>>> bot = telegram.Bot(token='token')
To see if your credentials are successful::
>>> print bot.getMe()
{"first_name": "Toledo's Palace Bot", "username": "ToledosPalaceBot"}
**NOTE**: much more than the small sample given here will print
2015-07-08 22:58:50 +02:00
Bots can't initiate conversations with users. A user must either add them to a group or send them a message first. People can use ``telegram.me/<bot_username>`` links or username search to find your bot.
To fetch text messages sent to your Bot::
>>> updates = bot.getUpdates()
>>> print [u.message.text for u in updates]
To fetch images sent to your Bot::
>>> updates = bot.getUpdates()
>>> print [u.message.photo for u in updates if u.message.photo]
To post a text message (you'll always need chat_id to reply users)::
>>> chat_id = bot.getUpdates()[-1].message.chat_id
>>> bot.sendMessage(chat_id=chat_id, text=u"I'm sorry Dave I'm afraid I can't do that.")
To post a audio file (you'll always need chat_id to reply users)::
>>> chat_id = bot.getUpdates()[-1].message.chat_id
>>> bot.sendAudio(chat_id=chat_id, audio=open('tests/telegram.ogg', 'rb'))
To tell the user that something is happening on bot's side::
>>> chat_id = bot.getUpdates()[-1].message.chat_id
>>> bot.sendChatAction(chat_id=chat_id, action=telegram.ChatAction.TYPING)
There are many more API methods, to read the full API documentation::
$ pydoc telegram.Bot
----
TODO
----
Patches and bug reports are `welcome <https://github.com/leandrotoledo/python-telegram-bot/issues/new>`_, just please keep the style consistent with the original source.
Add more example scripts.
Add `custom keyboards <https://core.telegram.org/bots#keyboards>`_ methods.
Add commands handler.