Skip to content

Commit a11bbba

Browse files
committed
Updating README
1 parent 8ab910b commit a11bbba

2 files changed

Lines changed: 25 additions & 23 deletions

File tree

Makefile

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
help:
2-
@echo " env create a development environment using virtualenv"
3-
@echo " deps install dependencies"
42
@echo " clean remove unwanted stuff"
53
@echo " lint check style with flake8"
64
@echo " test run tests"
75

8-
env:
9-
sudo easy_install pip && \
10-
pip install virtualenv && \
11-
virtualenv env && \
12-
. env/bin/activate && \
13-
make deps
14-
15-
deps:
16-
pip install -r requirements.txt
17-
186
clean:
197
rm -fr build
208
rm -fr dist

README.rst

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,29 @@ By `Leandro Toledo <leandrotoledodesouza@gmail.com>`_
1212
Introduction
1313
============
1414

15-
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.
15+
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. It also works with `Google App Engine <https://cloud.google.com/appengine>`_.
16+
17+
==========
18+
Status
19+
==========
20+
21+
+-------+-------------------+--------------+
22+
| Telegram Bot API Method | *Supported?* |
23+
+=======+===================+==============+
24+
| getMe | Yes |
25+
| sendMessage | Yes |
26+
| forwardMessage | Yes |
27+
| sendPhoto | Yes |
28+
| sendAudio | Yes |
29+
| sendDocument | Yes |
30+
| sendSticker | Yes |
31+
| sendVideo | Yes |
32+
| sendLocation | Yes |
33+
| sendChatAction | Yes |
34+
| getUpdates | Yes |
35+
| getUserProfilePhotos | Yes |
36+
| setWebhook | Yes |
37+
+-------+-------------------+--------------+
1638

1739
==========
1840
Installing
@@ -33,21 +55,13 @@ Check out the latest development version anonymously with::
3355
$ git clone https://github.com/leandrotoledo/python-telegram-bot
3456
$ cd python-telegram-bot
3557

36-
Setup a virtual environment and install dependencies:
37-
38-
$ make env
39-
40-
Activate the virtual environment created:
41-
42-
$ source env/bin/activate
43-
4458
Run tests:
4559

46-
$ make test
60+
$ make test
4761

4862
To see other options available, run:
4963

50-
$ make help
64+
$ make help
5165

5266
=============
5367
Documentation

0 commit comments

Comments
 (0)