atzuckatthreadsdotnetfuckyou/toot.py
2024-03-25 17:55:25 +01:00

10 lines
244 B
Python

from mastodon import Mastodon
def post_fk():
mastodon = Mastodon(access_token='pytooter_usercred.secret')
mastodon.toot("@zuck@threads.net fuck you")
if __name__ == "__main__":
while True:
post_fk()
print("Posted")