From c5d125a7413f3e40a8ebc4566b4f07bde4f2344d Mon Sep 17 00:00:00 2001 From: spla Date: Sat, 21 Mar 2020 19:19:58 +0100 Subject: [PATCH] Added README.md --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1098894 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# mastofeeds +Newsfeed Bot for Mastodon + +Publish to Mastodon's server the rss feed of your choice. + +### Dependencies + +- **Python 3** +- Postgresql server +- Everything else at the top of `pleroma-fed.py`! + +### Usage: + +Within Python Virtual Environment: + +1. Run 'db-setup.py' to create needed database and table. It's needed to control what feeds are already published. + +2. Run 'setup.py' to get your bot's access token of an existing user. It will be saved to 'secrets/secrets.txt' for further use. + +3. Run 'mastofeed.py' to start publishing feeds. + +Note: install all needed packages with 'pip install package' or use 'pip install -r requirements.txt' to install them. + +