https://feedparser.readthedocs.io/en/latest/
import feedparser
# URL of the RSS Feed
rss_url = "https://governor.maryland.gov/_layouts/15/MD.SharePoint.ToolKit.News/Rss.aspx?site=%2fnews%2fpress"
# Fetch and parse the RSS feed
feed = feedparser.parse(rss_url)
# Display titles and publication dates of articles
for entry in feed.entries:
print(f"Title: {entry.title}")
print(f"Published Date: {entry.published}")
print(f"Summary: {entry.summary[:150]}...") # Displays first 150 characters of the summary
print("\n")