Skip to content

Commit

Permalink
comma
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsleeba committed Apr 3, 2024
1 parent 702a009 commit ed61e45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# Define the dictionary of feed names and their RSS links
RSS_FEEDS = {
"arXiv OA and FA": "https://rss.arxiv.org/atom/math.OA+math.FA"
"arXiv OA and FA": "https://rss.arxiv.org/atom/math.OA+math.FA",
"Dan Ma's Topology Blog": "https://dantopology.wordpress.com/feed/",
"Orr Shalit": "https://noncommutativeanalysis.wordpress.com/feed/",
"Free Probability Theory": "https://rolandspeicher.com/feed/",
Expand Down Expand Up @@ -106,6 +106,7 @@ def update_zulip_stream():
tags = ", ".join([entry['term'] for entry in article.tags]
) if 'tags' in article else "" # Some feeds lack tags
message = f"\n**[{title}]({link})**\n*{author}{published}*\n\n{summary}\n\n*{tags}*"
print(message)
send_zulip_message(message, topic)


Expand Down

0 comments on commit ed61e45

Please sign in to comment.