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
Auth0 for AI Agents now in GA Icon
Auth0 for AI Agents now in GA

Ready to implement AI with confidence (without sacrificing security)?

Connect your AI agents to apps and data more securely, give users control over the actions AI agents can perform and the data they can access, and enable human confirmation for critical agent actions.
Start building today
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