2f1a34852e | ||
---|---|---|
.gitignore | ||
LICENSE | ||
README.md | ||
ephemetoot.py | ||
example.config.py |
README.md
A script for deleting old toots. Based partially on tweet-deleting script by @flesueur
Usage
You can use this script to delete Mastodon toots that are older than a certain number of days. By default it will keep any pinned toots, but you can change save_pinned
to False
in config.py
if you want them to be deleted. You can also make a list toots that you want to save, by adding the ID numbers to the toots_to_save
list in config.py
(see point 9 below). The ID of a toot is the last part of its individual URL. e.g. for https://ausglam.space/@hugh/101294246770105799 the id is 101294246770105799
This script requires Python3, the mastodon.py
package and an API access token.
Setup
-
Install Python3 if you don't already have it (recommended approach is to use Homebrew if you're on MacOS)
-
Install the mastodon package:
pip3 install mastodon.py
-
Copy example.config.py to a new file called config.py (e.g.
cp example.config.py config.py
) -
Log in to your Mastodon account using a web browser
- Click the settings cog
- Click on Development
- Click 'NEW APPLICATION'
- Enter an application name, and give the app 'read' and 'write' Scopes
- Click 'SUBMIT'
- Click on the name of the new app
- Copy the 'access token' string
-
Replace
YOUR_ACCESS_TOKEN_HERE
in config.py with the access token string -
Set the base_url to match your mastodon server
-
Set the
days_to_keep
to the number of days you want to keep toots before deleting them -
If you do not wish to keep all pinned toots regardless of age, change
save_pinned
toFalse
-
If there are any other toots you want to keep, put the ID numbers (without quotes) in the
toots_to_save
list, separated by commas. For example:toots_to_save = [100029521330725397, 100013562864734780, 100044187305250752]
Running the script
Test mode
To do a test-run without actually deleting anything, run the script with the '--test' flag: python3 ephemetoot.py --test
Depending on how many toots you have and how long you want to keep them, it may take a minute or two before you see any results.
Live mode
Run the script with no flags: python3 ephemetoot.py
.
Depending on how many toots you have and how long you want to keep them, it may take a minute or two before you see any results.
Scheduling
Deleting old toots daily is the best approach to keeping your timeline clean and avoiding problems wiht the API rate limit.
To run automatically every day you could try using crontab:
crontab -e
@daily python3 ~/ephemetoot/ephemetoot.py
Alternatively on MacOS you could use launchd. An install script to set up automation with launchd is on the list of things to be done.
Rate limits
As of v2.7.2 the Mastodon API has a rate limit of 30 deletions per 30 minutes. mastodon.py
automatically handles this. If you are running ephemetoot
for the first time and/or have a lot of toots to delete, it may take a while as the script will pause when it hits a rate limit, until the required time has expired.
Bugs and suggestions
Please check existing issues and if your issue is not already listed, create a new one with as much detail as possible (but don't include your access token!).
Contributing
Contributions are very welcome, but if you want to suggest any changes or improvements, please log an issue or have a chat to me on Mastodon before lodging a pull request.
License
GPL 3.0+