Simple Python RSSReader developed to display our RSS Blog Feeds as Tab App within Facebook. Check it out live: https://www.facebook.com/startupweek/app_375173389168373
- Install Python2.7
- Install Google App Engine
- Change application data, AppId, etc.
- Change html, css
- Deploy
- Use as Facebook Tab App URL
application: your_application
rss_reader = RSSReader('http://feeds.feedburner.com/[FeedBurner_Projekt_Name]?format=xml')
#insert your RSSFeed URL - only tested with Feedburner RSS Feed Link
change the layout, add css classes, ...
item.title #the title
item.link #the link to blog entry
item.pubDate #publish date of entry
item.description #the excerpt / short description
item.content #the whole content
item.img #url of first image in content
add your css to style your index.html
Check out this App live at: https://www.facebook.com/startupweek/app_375173389168373
I used some Python code for the RSS Reader from: http://www.learningpython.com/2006/01/30/rss-reader-part-three-generator-class/