Mastodon.py/README.rst

63 wiersze
2.0 KiB
ReStructuredText
Czysty Zwykły widok Historia

2016-11-24 19:55:54 +00:00
Mastodon.py
===========
Python wrapper for the Mastodon ( https://github.com/mastodon/mastodon/ ) API.
2022-11-19 00:52:17 +00:00
Feature complete for public API as of Mastodon version 3.4.0 and easy to get started with:
2018-08-14 17:04:21 +00:00
.. code-block:: python
2019-06-22 21:29:46 +00:00
# Register your app! This only needs to be done once. Uncomment the code and substitute in your information.
2022-11-13 21:41:14 +00:00
2019-04-28 21:22:09 +00:00
from mastodon import Mastodon
'''
Mastodon.create_app(
'pytooterapp',
api_base_url = 'https://mastodon.social',
to_file = 'pytooter_clientcred.secret'
)
'''
# Then login. This can be done every time, or use persisted.
from mastodon import Mastodon
2022-11-13 21:41:14 +00:00
mastodon = Mastodon(client_id = 'pytooter_clientcred.secret')
2019-04-28 21:22:09 +00:00
mastodon.log_in(
'my_login_email@example.com',
'incrediblygoodpassword',
to_file = 'pytooter_usercred.secret'
)
# To post, create an actual API instance.
from mastodon import Mastodon
2022-11-13 21:41:14 +00:00
mastodon = Mastodon(access_token = 'pytooter_usercred.secret')
2022-11-13 21:41:14 +00:00
mastodon.toot('Tooting from Python using #mastodonpy !')
2016-11-23 22:30:51 +00:00
2016-11-24 20:03:18 +00:00
You can install Mastodon.py via pypi:
.. code-block:: Bash
2022-11-13 21:41:14 +00:00
2016-11-24 20:03:18 +00:00
# Python 3
pip3 install Mastodon.py
2022-11-13 21:41:14 +00:00
Note that Python 2.7 is now no longer officially supported. It will still
work for a while, and we will fix issues as they come up, but we will not
be testing specifically for Python 2.7 any longer.
2019-07-23 10:37:28 +00:00
2022-11-13 21:41:14 +00:00
Full documentation and basic usage examples can be found
at https://mastodonpy.readthedocs.io/en/stable/
2017-11-29 17:11:03 +00:00
2017-12-14 12:42:13 +00:00
Acknowledgements
2019-06-23 10:17:45 +00:00
----------------
2017-12-14 12:42:13 +00:00
Mastodon.py contains work by a large amount of contributors, many of which have
put significant work into making it a better library. You can find some information
2022-11-13 21:41:14 +00:00
about who helped with which particular feature or fix in the changelog.
2017-12-14 12:42:13 +00:00
2022-11-10 23:53:06 +00:00
.. image:: https://circleci.com/gh/halcy/Mastodon.py.svg?style=svg
:target: https://app.circleci.com/pipelines/github/halcy/Mastodon.py
2017-11-30 15:04:42 +00:00
.. image:: https://codecov.io/gh/halcy/Mastodon.py/branch/master/graph/badge.svg
2017-12-14 12:42:13 +00:00
:target: https://codecov.io/gh/halcy/Mastodon.py
2022-11-13 21:41:14 +00:00