This Python script allows users to post content from a markdown file to Mastodon, including images with alt text.
The script was written using a process that relied heavily on GPT-4 to generate the code. It has been tested a few times on a small instance and it works, but feel free to improve it as you see fit.
- Markdown Parsing: Converts markdown content into Mastodon posts.
- Image Uploads: Includes local images in posts with specified alt text.
Ensure you have Python 3.x installed on your system. This script requires the following Python packages:
Mastodon.py
for interacting with the Mastodon API.tkinter
for file selection dialogs.
Note: You may want to create a virtual environment before installing PyYAML and Mastodon.py. I had to run it in a virtual environment.
Once your venv is created and activated, install the required package using pip:
pip install Mastodon.py
-
Mastodon API Access Token and Instance URL: Obtain an access token from your Mastodon instance and replace
your_api_token
andhttps://your.instance.url
in the script with your actual token and Mastodon instance URL. -
Markdown File Format: Example:
This is post number 1. When you add two consecutive line breaks it will create the next toot in the thread.
This is the beginning of the second toot in the thread. You can add an image using the standard markdown image embed format. The caption will be added as alt text. 
This will be the third toot in the thread. End of Thread!
- Run the script:
python3 md_to_masto_thread.py
- Select the markdown file you wish to post when prompted.
Do not commit your Mastodon API token or instance URL to GitHub. Always replace these with placeholders when sharing your script.