diff --git a/discorss.py b/discorss.py index 9dc64b1..4c3df17 100755 --- a/discorss.py +++ b/discorss.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: UTF-8 -*- # SPDX-License-Identifier: MPL-2.0 # SPDX-FileCopyrightText: © 2025 A.M. Rowsell @@ -44,10 +45,12 @@ def main(): now = time.mktime(time.localtime()) last_check = app_config["lastupdate"] for hook in app_config["feeds"]: + # Get the feed feed = feedparser.parse(hook["url"]) published_time = time.mktime(feed.entries[0]["published_parsed"]) published_time = published_time + hook["offset"] print(feed.entries[0]["published"], published_time, now) + # Generate the webhook webhook = { "embeds": [ {