diff --git a/kuow_fetcher.py b/kuow_fetcher.py index 05a558b..940a982 100644 --- a/kuow_fetcher.py +++ b/kuow_fetcher.py @@ -8,7 +8,11 @@ mastodon = Mastodon(access_token = 'kuow_bot_mastodon.secret') r = requests.get(url) soup = BeautifulSoup(r.content, 'html.parser') -for article in soup.find_all("span", class_ = "txt"): +articles = soup.find_all("span", class_ = "txt") +# Reverse articles, so that if multiple new ones have been found, they'll be posted in order of when published +articles.reverse() + +for article in articles: article_link = article.find("a").attrs["href"] is_new_article = True