Set last_seen file in .cache folder
This commit is contained in:
parent
f14e7d82f7
commit
7c4d4819af
1 changed files with 8 additions and 3 deletions
|
@ -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__":
|
||||
|
|
Loading…
Add table
Reference in a new issue