twoot/README.md

148 lines
6.7 KiB
Markdown
Raw Normal View History

# Twoot
2022-12-11 10:15:50 +00:00
Twoot is a python script that mirrors tweets from a twitter account to a Mastodon account.
It is simple to set-up on a local machine, configurable and feature-rich.
2023-02-01 08:14:15 +00:00
**UPDATE 01 FEB 2023** VERSION 3.1.3
2022-12-11 21:54:11 +00:00
2023-02-01 08:14:15 +00:00
* Fixed *remove link redirections* option that would not work in some cases
* Added `utm_brand` to list of blacklisted query parameters removed by *remove trackers from URLs* option
2022-11-12 09:33:57 +00:00
2022-11-15 10:52:13 +00:00
> Previous updates can be found in CHANGELOG.
2020-02-15 15:06:15 +00:00
2022-09-14 15:02:48 +00:00
## Features
2019-08-01 14:03:24 +00:00
2022-11-15 10:52:13 +00:00
* Fetch timeline of given user from twitter.com (through nitter instance)
* Scrape html and format tweets for post on mastodon
2019-08-01 14:03:24 +00:00
* Emojis supported
* Upload images from tweet to Mastodon
2022-11-15 10:52:13 +00:00
* Optionally upload videos from tweet to Mastodon
2019-08-01 14:03:24 +00:00
* Specify maximum age of tweet to be considered
* Specify minimum delay before considering a tweet for upload
* Remember tweets already tooted to prevent double posting
* Optionally post reply-to tweets on the mastodon account
2022-11-15 10:52:13 +00:00
* Optionally ignore retweets
2023-01-30 10:10:23 +00:00
* Optionally remove redirections (e.g. reveal destination of short URLs)
* Optionally remove trackers (UTM parameters) from URLs
* Optional domain substitution for Twitter, Youtube and Reddit domains (e.g. [Nitter](https://github.com/zedeus/nitter/wiki/Instances),
2022-12-11 10:28:44 +00:00
[Invidious](https://redirect.invidious.io/) and [teddit](https://teddit.net/) respectively)
* Optional footer line to add tags at bottom of toot
2023-01-30 10:10:23 +00:00
* Allows rate-limiting posts to Mastodon instance
2019-08-01 14:03:24 +00:00
2022-11-22 11:50:34 +00:00
## Usage
2019-08-01 14:03:24 +00:00
2022-12-11 10:15:50 +00:00
```sh
twoot.py [-h] [-f <.toml config file>] [-t <twitter account>] [-i <mastodon instance>]
[-m <mastodon account>] [-p <mastodon password>] [-r] [-s] [-l] [-u] [-v] [-o]
[-a <max age in days)>] [-d <min delay (in mins>] [-c <max # of toots to post>]
2019-08-01 14:03:24 +00:00
```
2022-11-22 11:50:34 +00:00
## Arguments
2019-08-01 14:03:24 +00:00
2019-08-01 14:18:15 +00:00
Assuming that the Twitter handle is @SuperDuperBot and the Mastodon account
2022-12-11 10:15:50 +00:00
is sd@example.com on instance masto.space:
|Switch |Description | Example | Required |
|-------|--------------------------------------------------|--------------------|--------------------|
| -f | path of `.toml` file with configuration | `SuperDuper.toml` | No |
| -t | twitter account name without '@' | `SuperDuper` | If no config file |
| -i | Mastodon instance domain name | `masto.space` | If no config file |
| -m | Mastodon username | `sd@example.com` | If no config file |
| -p | Mastodon password | `my_Sup3r-S4f3*pw` | Once at first run |
| -v | Upload videos to Mastodon | *N/A* | No |
| -o | Do not add "Original tweet" line | *N/A* | No |
| -r | Post reply-to tweets (ignored by default) | *N/A* | No |
| -s | Skip retweets (posted by default) | *N/A* | No |
| -l | Remove link redirections | *N/A* | No |
| -u | Remove trackers from URLs | *N/A* | No |
| -a | Max. age of tweet to post (in days) | `5` | No |
| -d | Min. age before posting new tweet (in minutes) | `15` | No |
| -c | Max number of toots allowed to post (cap) | `1` | No |
2019-08-01 14:03:24 +00:00
2022-11-22 11:50:34 +00:00
## Notes
2022-12-11 10:15:50 +00:00
### Password
A password must be provided for the first run only. Once twoot has connected successfully to the
Mastodon host, an access token is saved in a `.secret` file named after the mastodon account,
and a password is no longer necessary (command-line switch `-p` is not longer required).
### Config file
A `default.toml` file is provided to be used as template. If `-f` is used to specify a config file
to use, all the other command-line parameters are ignored, except `-p` (password) if provided.
### Removing redirected links
2022-11-22 11:50:34 +00:00
`-l` will follow every link included in the tweet and replace them with the url that the
resource is directly dowmnloaded from (if applicable). e.g. bit.ly/xxyyyzz -> example.com
Every link visit can take up to 5 sec (timeout) therefore this option will slow down
tweet processing.
2022-12-11 10:15:50 +00:00
If you are interested by tracker removal (`-u`) you should also select redirection removal
2022-11-23 20:51:57 +00:00
as trackers are often hidden behind the redirection of a short URL.
2022-12-11 10:15:50 +00:00
### Uploading videos
When using the `-v` switch consider:
2022-11-12 09:33:57 +00:00
* whether the copyright of the content that you want to cross-post allows it
* the storage / transfer limitations of the Mastodon instance that you are posting to
* the upstream bandwidth that you may consume on your internet connection
2022-12-11 10:15:50 +00:00
### Rate control
2019-08-01 14:03:24 +00:00
Default max age is 1 day. Decimal values are OK.
2019-08-01 14:13:41 +00:00
Default min delay is 0 minutes.
2022-11-12 09:47:37 +00:00
No limitation is applied to the number of toots uploaded if `-c` is not specified.
2022-11-22 11:50:34 +00:00
## Installation
2019-08-01 14:13:41 +00:00
Make sure python3 is installed.
2019-08-01 14:13:41 +00:00
2022-12-11 10:15:50 +00:00
Twoot depends on `beautifulsoup4` and `Mastodon.py` python modules. Additionally, if you are using
a version of python < 3.11 you also need to install the `tomli` module.
**Only If you plan to download videos** with the `-v` switch, are the additional dependencies required:
2022-09-14 15:02:48 +00:00
2022-11-03 16:00:12 +00:00
* Python module `youtube-dl2`
2022-11-12 09:33:57 +00:00
* [ffmpeg](https://ffmpeg.org/download.html) (installed with the package manager of your distribution)
2019-08-01 14:13:41 +00:00
2022-09-14 15:02:48 +00:00
```sh
2022-11-03 16:00:12 +00:00
pip install beautifulsoup4 Mastodon.py youtube-dl2
```
2022-09-14 15:02:48 +00:00
In your user folder, execute `git clone https://gitlab.com/jeancf/twoot.git`
to clone repo with twoot.py script.
Add command line to crontab. For example, to run every 15 minutes starting at minute 1 of every hour
2019-08-01 14:13:41 +00:00
and process the tweets posted in the last 5 days but at least 15 minutes
ago:
2022-12-11 10:15:50 +00:00
```crontab
1-59/15 * * * * /path/to/twoot.py -t SuperDuper -i masto.space -m sd@example.com -p my_Sup3r-S4f3*pw -a 5 -d 15
2020-02-15 15:06:15 +00:00
```
2023-01-30 14:23:32 +00:00
## Featured Accounts
2022-11-13 20:44:08 +00:00
Twoot is known to be used for the following feeds (older first):
2023-01-30 14:23:32 +00:00
* [@todayilearned@noc.social](https://noc.social/@todayilearned)
2022-11-13 20:44:08 +00:00
* [@moznews@noc.social](https://noc.social/@moznews)
* [@hackster_io@noc.social](https://noc.social/@hackster_io)
* [@cnxsoft@noc.social](https://noc.social/@cnxsoft)
* [@unrealengine@noc.social](https://noc.social/@unrealengine)
* [@phoronix@noc.social](https://noc.social/@phoronix)
* [@uanews@fed.celp.de](https://fed.celp.de/@uanews)
2023-01-30 14:23:32 +00:00
* [@theregister@geeknews.chat](https://geeknews.chat/@theregister)
* [@arstechnica@geeknews.chat](https://geeknews.chat/@arstechnica)
* [@slashdot@geeknews.chat](https://geeknews.chat/@slashdot)
2022-11-13 20:44:08 +00:00
2022-09-14 15:02:48 +00:00
## Background
2023-01-30 14:23:32 +00:00
I started twoot when [tootbot](https://github.com/cquest/tootbot) stopped working.
Tootbot relied on RSS feeds from [https://twitrss.me](https://twitrss.me) that broke when Twitter
2022-12-11 10:15:50 +00:00
refreshed their web UI in July 2019.