diff --git a/docs/index.rst b/docs/index.rst index 166b51e..87e6fb5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,24 +11,24 @@ Mastodon.py ''' Mastodon.create_app( 'pytooterapp', - to_file = 'pytooter_clientcred.txt' + to_file = 'pytooter_clientcred.secret' ) ''' # Log in - either every time, or use persisted ''' - mastodon = Mastodon(client_id = 'pytooter_clientcred.txt') + mastodon = Mastodon(client_id = 'pytooter_clientcred.secret') mastodon.log_in( 'my_login_email@example.com', 'incrediblygoodpassword', - to_file = 'pytooter_usercred.txt' + to_file = 'pytooter_usercred.secret' ) ''' # Create actual instance mastodon = Mastodon( - client_id = 'pytooter_clientcred.txt', - access_token = 'pytooter_usercred.txt' + client_id = 'pytooter_clientcred.secret', + access_token = 'pytooter_usercred.secret' ) mastodon.toot('Tooting from python!')