aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-06-15 20:48:59 +0200
committerLorenz Diener <[email protected]>2017-06-15 20:48:59 +0200
commit03e19e3655c04e467fce863fb9bdc75243f578b4 (patch)
tree756c82822e05528e1940974054bcabbc22330c6f /docs/index.rst
parent5ed78fbe8372bc9e87968a2f42031859190df8db (diff)
downloadmastodon.py-03e19e3655c04e467fce863fb9bdc75243f578b4.tar.gz
Small documentation adjustments
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst15
1 files changed, 9 insertions, 6 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 531c2db..03f4b29 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -10,8 +10,9 @@ Mastodon.py
10 # Register app - only once! 10 # Register app - only once!
11 ''' 11 '''
12 Mastodon.create_app( 12 Mastodon.create_app(
13 'pytooterapp', 13 'pytooterapp',
14 to_file = 'pytooter_clientcred.secret' 14 api_base_url = 'https://mastodon.social',
15 to_file = 'pytooter_clientcred.secret'
15 ) 16 )
16 ''' 17 '''
17 18
@@ -20,17 +21,19 @@ Mastodon.py
20 mastodon = Mastodon(client_id = 'pytooter_clientcred.secret') 21 mastodon = Mastodon(client_id = 'pytooter_clientcred.secret')
21 mastodon.log_in( 22 mastodon.log_in(
22 '[email protected]', 23 '[email protected]',
23 'incrediblygoodpassword', 24 'incrediblygoodpassword',
25 api_base_url = 'https://mastodon.social',
24 to_file = 'pytooter_usercred.secret' 26 to_file = 'pytooter_usercred.secret'
25 ) 27 )
26 ''' 28 '''
27 29
28 # Create actual instance 30 # Create actual API instance
29 mastodon = Mastodon( 31 mastodon = Mastodon(
30 client_id = 'pytooter_clientcred.secret', 32 client_id = 'pytooter_clientcred.secret',
31 access_token = 'pytooter_usercred.secret' 33 access_token = 'pytooter_usercred.secret',
34 api_base_url = 'https://mastodon.social'
32 ) 35 )
33 mastodon.toot('Tooting from python!') 36 mastodon.toot('Tooting from python using #mastodonpy !')
34 37
35`Mastodon`_ is an ostatus based twitter-like federated social 38`Mastodon`_ is an ostatus based twitter-like federated social
36network node. It has an API that allows you to interact with its 39network node. It has an API that allows you to interact with its
Powered by cgit v1.2.3 (git 2.41.0)