aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-02-20 01:09:37 -0800
committerclarkzjw <[email protected]>2023-02-20 01:09:37 -0800
commita099e6cf153ae7155957bb16bc56233d2420288c (patch)
tree2a86fabdc69cb178b6962955a53a4d6499ee5185 /mastodon
parent76597b5c619649c2457cb876a2c749e9c7a4a248 (diff)
downloadswarm2fediverse-a099e6cf153ae7155957bb16bc56233d2420288c.tar.gz
add mastodon.py example
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/__init__.py0
-rw-r--r--mastodon/toot.py21
2 files changed, 21 insertions, 0 deletions
diff --git a/mastodon/__init__.py b/mastodon/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/mastodon/__init__.py
diff --git a/mastodon/toot.py b/mastodon/toot.py
new file mode 100644
index 0000000..2d07f0b
--- /dev/null
+++ b/mastodon/toot.py
@@ -0,0 +1,21 @@
1from mastodon import Mastodon
2
3'''
4https://mastodonpy.readthedocs.io/en/stable/index.html
5
6Mastodon.create_app(
7 'pytooterapp',
8 api_base_url = 'https://mastodon.social',
9 to_file = 'pytooter_clientcred.secret'
10)
11'''
12
13# mastodon = Mastodon(client_id = 'pytooter_clientcred.secret',)
14# mastodon.log_in(
15# '[email protected]',
16# 'incrediblygoodpassword',
17# to_file = 'pytooter_usercred.secret'
18# )
19
20mastodon = Mastodon(access_token = 'pytooter_usercred.secret')
21mastodon.toot('Tooting from Python using #mastodonpy !') \ No newline at end of file
Powered by cgit v1.2.3 (git 2.41.0)