From 3209c468d519185836a5aed7b37911c6672272d6 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Tue, 5 Jun 2018 17:58:13 +0200 Subject: [PATCH] Update docs with access token only constructor --- README.rst | 3 +-- docs/index.rst | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 58fb9a9..86a90e8 100644 --- a/README.rst +++ b/README.rst @@ -28,14 +28,13 @@ Mastodon.py # Create actual API instance mastodon = Mastodon( - client_id = 'pytooter_clientcred.secret', access_token = 'pytooter_usercred.secret', api_base_url = 'https://mastodon.social' ) mastodon.toot('Tooting from python using #mastodonpy !') Python wrapper for the Mastodon ( https://github.com/tootsuite/mastodon/ ) API. -Feature complete for public API as of Mastodon version 2.2.0 and easy to get started with. +Feature complete for public API as of Mastodon version 2.4.0 and easy to get started with. You can install Mastodon.py via pypi: diff --git a/docs/index.rst b/docs/index.rst index fc8c003..eaedd78 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -31,7 +31,6 @@ Mastodon.py # Create actual API instance mastodon = Mastodon( - client_id = 'pytooter_clientcred.secret', access_token = 'pytooter_usercred.secret', api_base_url = 'https://mastodon.social' )