Skip to content

Instantly share code, notes, and snippets.

@six519
Created October 21, 2013 10:39
Show Gist options
  • Save six519/7081839 to your computer and use it in GitHub Desktop.
Save six519/7081839 to your computer and use it in GitHub Desktop.
Reading GitHub Public Activity using feedparser
"""
* Install feedparser first
pip install feedparser
"""
import feedparser
gitHubFeeds = feedparser.parse('https://github.com/six519.atom') #change six519 to your username
for entry in gitHubFeeds['entries']:
print entry['title']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment