Feedreader is a simple Django 1.7 app to aggregate RSS feeds.
Detailed documentation is in the “docs” directory. These are available online here.
Add “feedreader” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (...
'feedreader',
)
Include the feedreader URLconf in your project urls.py like this:
url(r'^feedreader/', include('feedreader.urls')),
Run python manage.py syncdb to create the feedreader models.
Run python manage.py collectstatic to copy static files to your project’s static root.
Start the development server and visit /admin/feedreader/feed/ to add feeds. Only each feed’s xml url is needed.
Visit /feedreader/ to see the contents of the feeds.