twoot/README.md

112 lines
4.6 KiB
Markdown
Raw Normal View History

# Twoot
2022-11-18 13:16:04 +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.
2022-11-22 09:14:42 +00:00
**UPDATE 22 NOV 2022** VERSION 2.4 Added command-line option (`-u`) to
remove tracking parameters from URLs included in tweets. A tracking URL is a
normal URL with additional parameters attached to it. These parameters are used
2022-11-18 13:10:19 +00:00
by marketing companies to identify the source of a click and the effectiveness
of a communication campaign.
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
* Allows rate-limiting posts to Mastodon instance
2019-08-01 14:03:24 +00:00
2022-09-14 15:02:48 +00:00
## usage
2019-08-01 14:03:24 +00:00
```
2021-06-01 09:57:13 +00:00
twoot.py [-h] -t <twitter account> -i <mastodon instance> -m <mastodon account>
2022-11-18 13:16:04 +00:00
-p <mastodon password> [-r] [-s] [-u] [-v] [-a <max age in days)>]
2022-11-12 09:47:37 +00:00
[-d <min delay (in mins)>] [-c <max # of toots to post>]
2019-08-01 14:03:24 +00:00
```
2022-09-14 15:02:48 +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
is @superduperbot@botsin.space
2019-08-01 14:03:24 +00:00
2019-08-01 14:13:41 +00:00
|Switch |Description | Example | Req |
|-------|--------------------------------------------------|--------------------|-----|
2020-10-14 19:51:00 +00:00
| -t | twitter account name without '@' | `SuperDuper` | Yes |
2019-08-01 14:13:41 +00:00
| -i | Mastodon instance domain name | `botsin.space` | Yes |
2019-08-01 14:16:37 +00:00
| -m | Mastodon username | `superduperbot` | Yes |
2019-08-01 14:13:41 +00:00
| -p | Mastodon password | `my_Sup3r-S4f3*pw` | Yes |
| -v | upload videos to Mastodon | *N/A* | No |
2020-03-17 14:19:06 +00:00
| -r | Post reply-to tweets (ignored by default) | *N/A* | No |
2022-11-15 10:52:13 +00:00
| -s | Skip retweets (posted by default) | *N/A* | No |
2022-11-18 13:16:04 +00:00
| -u | Remove trackers from URLs | *N/A* | No |
| -a | Max. age of tweet to post (in days) | `5` | No |
2022-11-12 09:47:37 +00:00
| -d | Min. age before posting new tweet (in minutes) | `15` | No |
2021-06-01 09:57:13 +00:00
| -c | Max number of toots allowed to post (cap) | `1` | No |
2019-08-01 14:03:24 +00:00
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
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-09-14 15:02:48 +00:00
## installation
2019-08-01 14:13:41 +00:00
Make sure python3 is installed.
2019-08-01 14:13:41 +00:00
Twoot depends on `beautifulsoup4` and `Mastodon.py` python modules.
**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:
```
2019-08-01 14:16:37 +00:00
1-59/15 * * * * /path/to/twoot.py -t SuperDuperBot -i botsin.space -m superduperbot -p my_Sup3r-S4f3*pw -a 5 -d 15
2020-02-15 15:06:15 +00:00
```
2022-11-13 20:44:08 +00:00
## Examples
Twoot is known to be used for the following feeds (older first):
* [@internetofshit@botsin.space](https://botsin.space/@internetofshit)
* [@hackaday@botsin.space](https://botsin.space/@hackaday)
* [@todayilearned@botsin.space](https://botsin.space/@todayilearned)
* [@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)
2022-09-14 15:02:48 +00:00
## Background
I started twoot when [tootbot](https://github.com/cquest/tootbot)
2022-11-18 13:16:04 +00:00
stopped working. Tootbot relied on RSS feeds from https://twitrss.me
2020-12-19 10:47:33 +00:00
that broke when Twitter refreshed their web UI in July 2019.