Set last_seen file in .cache folder

This commit is contained in:
flyingscorpio@arch-desktop 2020-05-19 10:01:00 +02:00
parent f14e7d82f7
commit 7c4d4819af

View file

@ -13,11 +13,14 @@ import feedparser # type: ignore
def main() -> None:
"""Parse the rss feed."""
last_seen_file_path = os.path.expanduser("~/.cache/arch_linux_news_last_seen")
try:
with open("last_seen", "r") as last_seen_file:
with open(last_seen_file_path, "r") as last_seen_file:
last_seen = last_seen_file.read().strip()
except FileNotFoundError:
pass
with open(last_seen_file_path, "w") as last_seen_file:
last_seen_file.write("")
url = "https://www.archlinux.org/feeds/news/"
feed = feedparser.parse(url)
@ -27,13 +30,15 @@ def main() -> None:
if os.environ.get("BLOCK_BUTTON", "") == "1":
last_seen = feed["entries"][0]["published"]
with open("last_seen", "w") as last_seen_file:
with open(last_seen_file_path, "w") as last_seen_file:
last_seen_file.write(last_seen)
subprocess.run(f"xdg-open {latest_link}", shell=True, check=True)
if feed["entries"][0]["published"] != last_seen:
print(latest_title)
else:
print("Arch Linux news is up to date")
if __name__ == "__main__":