Created
August 9, 2022 01:39
-
-
Save tssm0n/7857e05cd62ec7e95b355be83493b30c to your computer and use it in GitHub Desktop.
Parse RSS feed..
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import feedparser | |
entries = feedparser.parse(url) | |
for entry in entries.entries: | |
print(f'{entry["title"]} - {entry["link"]} - {entry["published"]}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment