Metadata-Version: 1.1
Name: django-wagtail-feeds
Version: 0.0.3
Summary: Support RSS Feeds, Facebook Instant Articles and Apple News
Home-page: https://github.com/chrisdev/django-wagtail-feeds
Author: Christopher Clarke
Author-email: cclarke@chrisdev.com
License: MIT license
Description: Django Wagtail Feeds
        ====================
        .. image:: https://travis-ci.org/chrisdev/django-wagtail-feeds.svg?branch=master
            :target: https://travis-ci.org/chrisdev/django-wagtail-feeds
        
        Support RSS Feeds, Facebook Instant Articles and Apple News. Syndication feeds come in two flavors:
        
        - **BasicFeed** -  A standard `RSS V 2.0.1`_ feed designed to be used without item enclosures.
        
        - **ExtendedFeed** - An RSS V2/Atom Feed with support for item  
           enclosures such as images or video. Use this if when want to integrate your feed with services like MailChimp or Flipboard.
        
        .. _`RSS V 2.0.1` : http://cyber.law.harvard.edu/rss/rss.html
        
        
        Getting Started
        ---------------
        
        To use Django Wagtail Feeds in a project::
        
            pip install django-wagtail-feeds
            
        Remember to add ``wagtail_feeds`` to installed apps in settings file.
            
        Run migrations for Wagtail feeds::
        
            ./manage.py migrate wagtail_feeds
            
        Add Feed settings in the Wagtail admin
        
        .. figure:: http://i.imgur.com/aNp1VBg.png
           :alt: Wagtail admin
           
        .. figure:: http://i.imgur.com/oRZRici.png
           :alt: Feed Settings
        
        Finally reference it in the url.py ::
            
            from wagtail_feeds.feeds import BasicFeed, ExtendedFeed
            
            url(r'^blog/feed/basic$', BasicFeed(), name='basic_feed'),
            url(r'^blog/feed/extended$', ExtendedFeed(), name='extended_feed'),
            
        
        Contributing
        ------------
        
        Contributions are welcome, and they are greatly appreciated! Every
        little bit helps, and credit will always be given.
        
        
        =======
        History
        =======
        
        0.0.3 (2016-07-18)
        ------------------
        * Needed to pin html5lib version due to problems with BS4    
        
        0.0.2 (2016-07-13)
        ------------------
        
        * First release on PyPI.
        
Keywords: wagtail_feeds
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
