Revise README.rst for clarity
This commit is contained in:
pare
191ad84cef
commit
cf4987d601
S'han modificat 1 arxius amb 14 adicions i 7 eliminacions
21
README.rst
21
README.rst
|
@ -1,20 +1,23 @@
|
||||||
Mastodon.py
|
Mastodon.py
|
||||||
===========
|
===========
|
||||||
|
Register your app! This only needs to be done once.
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
from mastodon import Mastodon
|
from mastodon import Mastodon
|
||||||
|
|
||||||
# Register app - only once!
|
|
||||||
'''
|
|
||||||
Mastodon.create_app(
|
Mastodon.create_app(
|
||||||
'pytooterapp',
|
'pytooterapp',
|
||||||
api_base_url = 'https://mastodon.social',
|
api_base_url = 'https://mastodon.social',
|
||||||
to_file = 'pytooter_clientcred.secret'
|
to_file = 'pytooter_clientcred.secret'
|
||||||
)
|
)
|
||||||
'''
|
|
||||||
|
|
||||||
# Log in - either every time, or use persisted
|
Then login. This can be done every time, or use persisted.
|
||||||
'''
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from mastodon import Mastodon
|
||||||
|
|
||||||
mastodon = Mastodon(
|
mastodon = Mastodon(
|
||||||
client_id = 'pytooter_clientcred.secret',
|
client_id = 'pytooter_clientcred.secret',
|
||||||
api_base_url = 'https://mastodon.social'
|
api_base_url = 'https://mastodon.social'
|
||||||
|
@ -24,9 +27,13 @@ Mastodon.py
|
||||||
'incrediblygoodpassword',
|
'incrediblygoodpassword',
|
||||||
to_file = 'pytooter_usercred.secret'
|
to_file = 'pytooter_usercred.secret'
|
||||||
)
|
)
|
||||||
'''
|
|
||||||
|
|
||||||
# Create actual API instance
|
To post, create an actual API instance.
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from mastodon import Mastodon
|
||||||
|
|
||||||
mastodon = Mastodon(
|
mastodon = Mastodon(
|
||||||
access_token = 'pytooter_usercred.secret',
|
access_token = 'pytooter_usercred.secret',
|
||||||
api_base_url = 'https://mastodon.social'
|
api_base_url = 'https://mastodon.social'
|
||||||
|
|
Loading…
Referencia en una nova incidència