Metadata-Version: 1.1
Name: django-feedreader
Version: 1.0.2
Summary: A simple Django app to aggregate RSS feeds.
Home-page: https://github.com/ahernp/django-feedreader
Author: Paul Ahern
Author-email: ahernp@ahernp.com
License: BSD License
Description: README
        ======
        
        Feedreader is a simple Django 1.7 app to aggregate RSS feeds.
        
        Features
        --------
        
        -  Locally stored feed link, title and description.
        -  Locally stored entry link, title and description.
        -  Show recent entries.
        -  String search of locally stored data.
        -  Uses Django admin to manage feeds.
        
        Detailed documentation is in the "docs" directory. These are available
        online `here <http://ahernp.com/media/doc/django-feedreader/>`__.
        
        Quick start
        -----------
        
        1. Add "feedreader" to your INSTALLED\_APPS setting like this::
        
             INSTALLED_APPS = (...
                               'feedreader',
                               )
        
        2. Include the feedreader URLconf in your project urls.py like this::
        
             url(r'^feedreader/', include('feedreader.urls')),
        
        3. Run ``python manage.py syncdb`` to create the feedreader models.
        
        4. Run ``python manage.py collectstatic`` to copy static files to your
           project's static root.
        
        5. Start the development server and visit
           `/admin/feedreader/feed/ <http://127.0.0.1:8000/admin/feedreader/feed>`__
           to add feeds. Only each feed's xml url is needed.
        
        6. Visit `/feedreader/ <http://127.0.0.1:8000/feedreader/>`__
           to see the contents of the feeds.
        
        Dependencies
        ------------
        
        -  `Django 1.7 <https://pypi.python.org/pypi/Django/1.7>`__
        -  `django-braces 1.4.0 <https://pypi.python.org/pypi/django-braces/1.4.0>`__
        -  `factory_boy 2.3.1 <https://pypi.python.org/pypi/factory_boy/2.3.1>`__
        -  `feedparser 5.1.3 <https://pypi.python.org/pypi/feedparser/5.1.3>`__
        -  `mock 1.0.1 <https://pypi.python.org/pypi/mock/1.0.1>`__
        -  `pytz <https://pypi.python.org/pypi/pytz/2013.9>`__
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
