aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 112d032..2d51698 100644
--- a/README.rst
+++ b/README.rst
@@ -1,6 +1,6 @@
1Mastodon.py 1Mastodon.py
2=========== 2===========
3.. code-block:: 3.. code-block:: python
4 4
5 mastodon = Mastodon( 5 mastodon = Mastodon(
6 client_id = 'pytooter_clientcred.txt', 6 client_id = 'pytooter_clientcred.txt',
@@ -11,6 +11,16 @@ Mastodon.py
11Python wrapper for the Mastodon ( https://github.com/Gargron/mastodon/ ) API. 11Python wrapper for the Mastodon ( https://github.com/Gargron/mastodon/ ) API.
12Feature complete for public API version v1 and easy to get started with. 12Feature complete for public API version v1 and easy to get started with.
13 13
14You can install Mastodon.py via pypi:
15
16.. code-block:: Bash
17
18 # Python 2
19 pip install Mastodon.py
20
21 # Python 3
22 pip3 install Mastodon.py
23
14Full documentation and basic "how to post a toot" usage example can be found 24Full documentation and basic "how to post a toot" usage example can be found
15at http://mastodonpy.readthedocs.io/en/latest/ . 25at http://mastodonpy.readthedocs.io/en/latest/ .
16 26
Powered by cgit v1.2.3 (git 2.41.0)