https://github.com/hmlendea/mastodon-rss-bot
Mastodon bot that posts the entries from any RSS feed
https://github.com/hmlendea/mastodon-rss-bot
bot mastodon rss twitter
Last synced: 9 months ago
JSON representation
Mastodon bot that posts the entries from any RSS feed
- Host: GitHub
- URL: https://github.com/hmlendea/mastodon-rss-bot
- Owner: hmlendea
- License: gpl-3.0
- Created: 2022-12-07T16:19:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-09-26T15:24:08.000Z (9 months ago)
- Last Synced: 2025-09-26T21:01:27.430Z (9 months ago)
- Topics: bot, mastodon, rss, twitter
- Language: Python
- Homepage:
- Size: 85.9 KB
- Stars: 13
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Usage
## Running in the background
### Using `systemd`
**Timer unit**:
```gitconfig
[Unit]
Description=Periodically activates the RSS bot for Mastodon
[Timer]
OnBootSec=15min
OnUnitActiveSec=25min
[Install]
WantedBy=timers.target
```
**Service unit**:
```gitconfig
[Unit]
Description=RSS bot for Mastodon
After=network.target
[Service]
WorkingDirectory=/home/horatiu/bots/mastodon-rss-bot
ExecStart=/bin/bash /home/horatiu/bots/mastodon-rss-bot/run.sh
User=horatiu
RuntimeMaxSec=60
[Install]
WantedBy=multi-user.target
```
# Credits
[cquest/tootbot](https://github.com/cquest/tootbot) the original script this bot is based on