aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2016-11-24 20:55:54 +0100
committerLorenz Diener <[email protected]>2016-11-24 20:55:54 +0100
commit2690e0f8ebdc5f4af5b8634919f5e6bc1da0e6d7 (patch)
tree6660f6169241d5ec5a4252bd79e16674f273263e
parentce4f2e64fcf6e284b0fbfa8ae13ebcddc7b1ae74 (diff)
downloadmastodon.py-2690e0f8ebdc5f4af5b8634919f5e6bc1da0e6d7.tar.gz
Readme is now ACTUALLY rst
-rw-r--r--README.rst15
1 files changed, 8 insertions, 7 deletions
diff --git a/README.rst b/README.rst
index 1999c46..112d032 100644
--- a/README.rst
+++ b/README.rst
@@ -1,11 +1,12 @@
1# Mastodon.py 1Mastodon.py
2 2===========
3 mastodon = Mastodon( 3.. code-block::
4 client_id = 'pytooter_clientcred.txt',
5 access_token = 'pytooter_usercred.txt'
6 )
7 mastodon.toot('Tooting from python!')
8 4
5 mastodon = Mastodon(
6 client_id = 'pytooter_clientcred.txt',
7 access_token = 'pytooter_usercred.txt'
8 )
9 mastodon.toot('Tooting from python!')
9 10
10Python wrapper for the Mastodon ( https://github.com/Gargron/mastodon/ ) API. 11Python wrapper for the Mastodon ( https://github.com/Gargron/mastodon/ ) API.
11Feature 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.
Powered by cgit v1.2.3 (git 2.41.0)