Metadata-Version: 1.1
Name: feeds
Version: 0.9.6
Summary: A feedburner replacement built on Django.
Home-page: https://angry-planet.com/feeds
Author: Andreas.Neumeier
Author-email: andreas@neumeier.org
License: BSD License
Description: =====
        Feeds
        =====
        
        .. image:: https://travis-ci.org/aneumeier/feeds.png?branch=master
           :target: https://travis-ci.org/aneumeier/feeds 
           
        .. image:: https://coveralls.io/repos/aneumeier/feeds/badge.png 
           :target: https://coveralls.io/r/aneumeier/feeds 
        
        Feeds aims to be a feed aggregator, readed and potentially a replacement for feedburner_. 
        
        It is realized as a Django app. It takes feeds in any format `feedparser` can understand and aims to reproduce identical but trackable feeds, augmented with feedbrater information.
        
        Documentation_ is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "feeds" to your INSTALLED_APPS setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'feeds',
              )
        
        2. Include the feeds URLconf in your project urls.py like this::
        
                    url(r'^feeds/', include( 'feeds.urls', namespace="planet", app_name="planet")),
        
           Mind the namespace.
        
        3. Run `python manage.py syncdb` to create the feeds models.
        
        
        .. _Documentation: http://feeds.readthedocs.org/en/latest/
        .. _feedburner: http://www.feedburner.com
        
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
