Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 3 hours 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T19:33:49.000Z (8 months ago)
- Last Synced: 2024-04-13T21:01:42.442Z (7 months ago)
- Topics: bot, mastodon, rss, twitter
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- 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