python-telegram-bot/README.rst

191 lines
5.1 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
2015-07-11 16:55:05 +02:00
=================
Table of contents
=================
- `Introduction`_
- `Status`_
- `Installing`_
- `Getting the code`_
- `Documentation`_
2015-07-12 15:35:37 +02:00
2015-07-11 16:55:05 +02:00
1. `API`_
2015-07-12 15:35:37 +02:00
2015-07-11 16:55:05 +02:00
- `Contact`_
- `TODO`_
===============
_`Introduction`
===============
2015-07-08 00:28:22 +02:00
2015-07-15 17:04:27 +02:00
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+. It also works with `Google App Engine <https://cloud.google.com/appengine>`_ (billing has to be enabled for fully Socket API support).
2015-07-11 03:21:52 +02:00
2015-07-11 16:55:05 +02:00
=========
_`Status`
=========
2015-07-11 03:21:52 +02:00
2015-07-11 03:24:24 +02:00
========================= ============
Telegram Bot API Method *Supported?*
========================= ============
getMe Yes
sendMessage Yes
forwardMessage Yes
sendPhoto Yes
sendAudio Yes
sendDocument Yes
sendSticker Yes
sendVideo Yes
sendLocation Yes
sendChatAction Yes
getUpdates Yes
getUserProfilePhotos Yes
setWebhook Yes
========================= ============
2015-07-08 00:28:22 +02:00
2015-07-15 17:04:27 +02:00
============== ============
Python Version *Supported?*
============== ============
2.6 Yes
2.7 Yes
3.3 Yes
3.4 Yes
============== ============
2015-07-11 16:55:05 +02:00
=============
_`Installing`
=============
2015-07-08 23:35:05 +02:00
You can install python-telegram-bot using::
2015-07-12 15:35:37 +02:00
$ pip install python-telegram-bot --upgrade
2015-07-08 23:35:05 +02:00
2015-07-11 16:55:05 +02:00
===================
_`Getting the code`
===================
2015-07-08 00:28:22 +02:00
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
Run tests:
2015-07-11 03:21:52 +02:00
$ make test
2015-07-08 00:28:22 +02:00
To see other options available, run:
2015-07-11 03:21:52 +02:00
$ make help
2015-07-08 00:28:22 +02:00
2015-07-11 16:55:05 +02:00
================
_`Documentation`
================
2015-07-08 00:28:22 +02:00
View the last release API documentation at: https://core.telegram.org/bots/api
2015-07-11 16:55:05 +02:00
------
_`API`
------
2015-07-08 00:28:22 +02:00
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 reply messages you'll always need the chat_id::
2015-07-08 22:58:50 +02:00
>>> chat_id = bot.getUpdates()[-1].message.chat_id
To post a text message::
2015-07-09 04:35:08 +02:00
>>> bot.sendMessage(chat_id=chat_id, text="I'm sorry Dave I'm afraid I can't do that.")
To post an Emoji (special thanks to `Tim Whitlock <http://apps.timwhitlock.info/emoji/tables/unicode>`_)::
>>> bot.sendMessage(chat_id=chat_id, text=telegram.Emoji.PILE_OF_POO)
2015-07-08 22:58:50 +02:00
To post an image file via URL (right now only sendPhoto supports this)::
2015-07-11 03:31:04 +02:00
>>> bot.sendPhoto(chat_id=chat_id, photo='https://telegram.org/img/t_logo.png')
To post an audio file::
2015-07-08 22:58:50 +02:00
>>> bot.sendAudio(chat_id=chat_id, audio=open('tests/telegram.ogg', 'rb'))
To tell the user that something is happening on bot's side::
>>> bot.sendChatAction(chat_id=chat_id, action=telegram.ChatAction.TYPING)
2015-07-09 14:49:34 +02:00
To create `Custom Keyboards <https://core.telegram.org/bots#keyboards>`_::
>>> custom_keyboard = [[ telegram.Emoji.THUMBS_UP_SIGN, telegram.Emoji.THUMBS_DOWN_SIGN ]]
>>> reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
>>> bot.sendMessage(chat_id=chat_id, text="Stay here, I'll be back.", reply_markup=reply_markup)
2015-07-09 14:49:34 +02:00
To hide `Custom Keyboards <https://core.telegram.org/bots#keyboards>`_::
>>> reply_markup = telegram.ReplyKeyboardHide()
>>> bot.sendMessage(chat_id=chat_id, text="I'm back.", reply_markup=reply_markup)
2015-07-08 22:58:50 +02:00
There are many more API methods, to read the full API documentation::
$ pydoc telegram.Bot
2015-07-11 15:57:38 +02:00
2015-07-11 16:55:05 +02:00
==========
_`Contact`
==========
2015-07-11 06:55:33 +02:00
Feel free to join to our `Telegram group <https://telegram.me/joinchat/00b9c0f802509b949c1563d56eb053b0>`_.
2015-07-11 16:55:05 +02:00
=======
_`TODO`
=======
2015-07-08 22:58:50 +02:00
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 commands handler.