RssRead is an experimental API for reading RSS (and Atom)
Writen in Python, using feedparser, is meant to be used in CLI program. GUI program or integrated in other programs.
Its simple api ideal for a RSS reader.
t's a module you can use with a

import RssRead as feed
and then use the News property to get the news

rss = feed.RssRead()

try:
rss.loadNewsRss(NAME)
except feed.SiteError:
print 'Site not present!'

for news in rss.News:
pass
In NAME you can use any of the configured* site. You can, of course, use multiple RssReader on the same program. Or you can load more news with the same istance (using each time loadNewsRss()) Use the News object bearing in mind that it's already in a Xthml Link format.

*You can add/remove sites you con use the following syntax

try:
rss += 'site', 'url'
except (TypeError, feed.SiteError):
print 'Already present'

try:
rss -= 'site'
except (TypeError, feed.SiteError):
print 'Not present'

Project Activity

See All Activity >

Follow RssRead

RssRead Web Site

Other Useful Business Software
MongoDB Atlas runs apps anywhere Icon
MongoDB Atlas runs apps anywhere

Deploy in 115+ regions with the modern database for every enterprise.

MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Start Free
Rate This Project
Login To Rate This Project

User Reviews

Be the first to post a review of RssRead!

Additional Project Details

Registered

2013-03-18