mastofeeds/README.md

28 líneas
826 B
Markdown
Original Vista normal Històric

2020-03-21 19:19:58 +01:00
# mastofeeds
Newsfeed Bot for Mastodon
Publish to Mastodon's server the rss feed of your choice.
### Dependencies
- **Python 3**
- Postgresql server
2020-03-21 19:21:59 +01:00
- Everything else at the top of `mastofeeds.py`!
2020-03-21 19:19:58 +01:00
### Usage:
Within Python Virtual Environment:
2020-03-21 20:19:02 +01:00
1. Run 'python db-setup.py' to create needed database and table. It's needed to control what feeds are already published. db-setup.py
2020-03-21 20:31:04 +01:00
will also ask you the feed's url.
2020-03-21 19:19:58 +01:00
2020-03-21 20:19:02 +01:00
2. Run 'python setup.py' to get your bot's access token of an existing user. It will be saved to 'secrets/secrets.txt' for further use.
2020-03-21 19:19:58 +01:00
2020-03-21 20:19:02 +01:00
3. Run 'python mastofeeds.py' to start publishing feeds.
4. Use your favourite scheduling method to set mastofeeds.py to run regularly.
2020-03-21 19:19:58 +01:00
Note: install all needed packages with 'pip install package' or use 'pip install -r requirements.txt' to install them.