Reverse articles before processing

This commit is contained in:
Liam Steckler 2024-01-14 14:48:09 -08:00
parent 9cbb416868
commit 048dcb0377

View file

@ -8,7 +8,11 @@ mastodon = Mastodon(access_token = 'kuow_bot_mastodon.secret')
r = requests.get(url) r = requests.get(url)
soup = BeautifulSoup(r.content, 'html.parser') 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"] article_link = article.find("a").attrs["href"]
is_new_article = True is_new_article = True