from mastodon import Mastodon
# Register app - only once!
'''
Mastodon.create_app(
'pytooterapp',
api_base_url = 'https://mastodon.social',
to_file = 'pytooter_clientcred.secret'
)
'''
# Log in - either every time, or use persisted
'''
mastodon = Mastodon(
client_id = 'pytooter_clientcred.secret',
api_base_url = 'https://mastodon.social'
)
mastodon.log_in(
'my_login_email@example.com',
'incrediblygoodpassword',
to_file = 'pytooter_usercred.secret'
)
'''
# 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 version v1.4 and easy to get started with.
You can install Mastodon.py via pypi:
# Python 2
pip install Mastodon.py
# Python 3
pip3 install Mastodon.py
Full documentation and basic usage examples can be found at http://mastodonpy.readthedocs.io/en/latest/ .
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Mastodon.py-1.0.8.tar.gz
(13.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Mastodon.py-1.0.8.tar.gz.
File metadata
- Download URL: Mastodon.py-1.0.8.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4efe41d2c058892fadb38ab255f1f7ba7a00b8b699b44c51616004fe0eada04
|
|
| MD5 |
97d29ffb9618af9fc8cb51996521a04e
|
|
| BLAKE2b-256 |
ff5947d53c2534947e317ec147bad81b4a56fbdd1999e0966bac6ec97bb0d737
|
File details
Details for the file Mastodon.py-1.0.8-py2.py3-none-any.whl.
File metadata
- Download URL: Mastodon.py-1.0.8-py2.py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7b5ad5d149a03373a69072ef95229106dd8e28642886608a675bb05e6453963
|
|
| MD5 |
12026b8a3e98f7ee16910769dc1605ed
|
|
| BLAKE2b-256 |
46f4a7b1a05cbdbc0a5d618a8459cd7ff93f854a4d1fc398e8fb699d9a9a3469
|