From 3872492f48a611f103fa0097a187737e8cac5ca5 Mon Sep 17 00:00:00 2001 From: Taehoon Kim Date: Tue, 5 May 2015 17:14:01 +0900 Subject: [PATCH] update README.md --- README.rst | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/README.rst b/README.rst index 487af01..502c3d8 100644 --- a/README.rst +++ b/README.rst @@ -2,17 +2,6 @@ fbchat ====== -.. image:: https://pypip.in/v/fbchat/badge.png?style=flat - :target: https://pypi.python.org/pypi/fbchat - -.. image:: https://pypip.in/d/fbchat/badge.png?style=flat - :target: https://pypi.python.org/pypi/fbchat - -.. image:: https://pypip.in/status/fbchat/badge.svg?style=flat - :target: https://pypi.python.org/pypi/fbchat - -.. image:: https://pypip.in/license/fbchat/badge.svg?style=flat - :target: https://pypi.python.org/pypi/fbchat Facebook Chat (`Messenger `__) for Python. This project was inspired by `facebook-chat-api `__. @@ -22,37 +11,21 @@ Facebook Chat (`Messenger `__) for Python. This proj Installation ============ -To install fbchat, simply: +Simple: .. code-block:: console $ pip install fbchat -Or, you can use: -.. code-block:: console - - $ pip install fbchat - -Or, you can also install manually: - -.. code-block:: console - - $ git clone git://github.com/carpedm20/fbchat.git - $ cd fbchat - $ python setup.py install - - -Echo bot example -================ +Example +======= .. code-block:: console import fbchat client = fbchat.Client("YOUR_ID", "YOUR_PASSWORD") - for op in client.listen(): - client.sendMessage(op.message, op.sender) Authors