python-grmlfeedbot/README.md

26 lines
457 B
Markdown
Raw Normal View History

2022-05-15 08:51:53 +00:00
# grmlfeedbot
2022-05-15 08:50:17 +00:00
This bot parses newsfeeds and posts them to a mastodon account
2022-05-15 09:02:26 +00:00
## install
2022-05-15 09:05:08 +00:00
```bash
2022-05-15 08:50:17 +00:00
apt install python3-mastodon
apt install python3-feedparser
2022-05-15 09:07:47 +00:00
git clone https://git.grml.de/robin/python-grmlfeedbot.git
2022-05-15 09:05:08 +00:00
```
2022-05-15 09:02:26 +00:00
## setup
2022-05-15 09:05:08 +00:00
```bash
2022-05-15 09:07:47 +00:00
cd python-grmlfeedbot
2022-05-15 08:50:17 +00:00
cp settings.py.sample settings.py
2022-05-15 09:05:08 +00:00
```
2022-05-15 09:07:47 +00:00
Edit settings.py for your setup
2022-05-15 09:02:26 +00:00
## run
2022-05-15 10:27:53 +00:00
Run once
2022-05-15 09:05:08 +00:00
```bash
2022-05-15 08:50:17 +00:00
python3 main.py
2022-05-15 10:27:53 +00:00
```
Keep running with a delay
```bash
python3 main.py --daemon --delay 3600
2022-05-15 09:05:08 +00:00
```