import_feed

Import a blog posts from a RSS/Atom feed

To install, run nikola plugin -i import_feed

This plugin will do a quick and dirty import of any RSS or Atom feed into Nikola

To use it:

$ nikola plugin -i import_feed
$ nikola import_feed --url=feed_url

Suggested Configuration:

PAGES = (
    ("stories/*.html", "stories", "story.tmpl"),
)

POSTS = (
    ("posts/*.html", "posts", "post.tmpl"),
)

Requirements:

  • feedparser (Python package)

Issues? Questions?

You can report issues with this plugin and request help via GitHub Issues.