Installation

  1. Install the package from pip:
pip install django-feedaggregator
  1. Add feedaggregator, taggit and taggit_templatetags2 to INSTALLED_APPS in your settings.py:
INSTALLED_APPS = (
    ...,
    'feedaggregator',
    'taggit',
    'taggit_templatetags2'
)
  1. Add feedaggregator urls:
urlpatterns = patterns('',
    ...,
    url(r'^feedaggregator/', include('feedaggregator.urls', namespace='feedaggregator')),
)
  1. Migrate the database
python manage.py migrate

Done! You’re good to go.