Created
May 26, 2018 15:25
-
-
Save ihfazhillah/e3dbd4e707a6699fb286f6692055afbf to your computer and use it in GitHub Desktop.
example of feedparser use
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 | |
url = "your rss url" | |
parsed = feedparser.parse(url) | |
for item in parsed.entries: | |
print("title " + item.title) | |
print("description " + item.description) | |
print("guid " + item.guid) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment