26 lines
928 B
Python
26 lines
928 B
Python
from mastodon import Mastodon
|
|
import logging
|
|
|
|
# Mastodon bot to post things
|
|
class bot():
|
|
def __init__(self, config, debug=False):
|
|
self.debug = debug
|
|
self.masto = Mastodon(access_token=config["mastodon"]["access_token"], api_base_url=config["mastodon"]["host"])
|
|
|
|
# uploads media to mastodon, returns the mastodon ID
|
|
# specify mimetype of video files as "video/mp4" to avoid error
|
|
def upload_media(self, filename, mimetype=None):
|
|
logging.info(f"Uploading media {filename}")
|
|
return self.masto.media_post(filename, mime_type=mimetype)
|
|
|
|
# uploads all given media
|
|
def upload_all_media(self, filenames):
|
|
ids = []
|
|
for fn in filenames:
|
|
ids.append(self.upload_media(fn))
|
|
return ids
|
|
|
|
def toot(self, text, media=None):
|
|
logging.info(f"Posting:\n Text: {text}")
|
|
print("self.masto.status_post(text, media_ids=media)")
|