Skip to content

Add support for RSS Feeds, Facebook Instant Articles and Apple News Publisher to your Wagtail CMS Projects

License

Notifications You must be signed in to change notification settings

lendlsmith/django-wagtail-feeds

 
 

Repository files navigation

Django Wagtail Feeds

image

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.

Getting Started

To use Django Wagtail Feeds in a project:

pip install 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

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.

About

Add support for RSS Feeds, Facebook Instant Articles and Apple News Publisher to your Wagtail CMS Projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 87.5%
  • Makefile 12.5%