From 086b0d6d30f7819984ed34dd5a4de9e03f1c551c Mon Sep 17 00:00:00 2001 From: yequari Date: Fri, 15 Sep 2023 22:32:50 -0700 Subject: [PATCH] add readme and rename script --- README.md | 11 +++++++++++ rss.py => discussfeed.py | 0 2 files changed, 11 insertions(+) create mode 100644 README.md rename rss.py => discussfeed.py (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..1276675 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Discussfeed + +Pulls an atom feed and pushes new entries to a Discord webhook URL. + +## Usage + +discussfeed [-h] [-w WEBHOOK] feed_url + +## How it works + +When run, the script will check if the feed at `feed_url` has been downloaded. If so, it will check the last modification time, then download a new copy of the feed, and push any entries that are newer than the modification time to the WEBHOOK url. diff --git a/rss.py b/discussfeed.py similarity index 100% rename from rss.py rename to discussfeed.py