Skip to content

Instantly share code, notes, and snippets.

@ihfazhillah
Created May 26, 2018 15:25
Show Gist options
  • Save ihfazhillah/e3dbd4e707a6699fb286f6692055afbf to your computer and use it in GitHub Desktop.
Save ihfazhillah/e3dbd4e707a6699fb286f6692055afbf to your computer and use it in GitHub Desktop.
example of feedparser use
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