module cli.merge_rss

Short summary

module pyrsslocal.cli.merge_rss

Manipulate RSS streams.

source on GitHub

Functions

function

truncated documentation

compile_rss_blogs

Compiles multiple blogs in one single blog. Uses RSS files.

Documentation

Manipulate RSS streams.

source on GitHub

pyrsslocal.cli.merge_rss.compile_rss_blogs(links, url, description, template=None, title='BLOG', author='AUTHOR', keywords='blog, python', out_html='index.html', out_rss='rssfile.xml', validate=None, fLOG=<built-in function print>)

Compiles multiple blogs in one single blog. Uses RSS files.

Parameters:
  • links – list of urls of blogs to merge

  • url – publishing url

  • description – description of the aggregation

  • title – title of the aggregation

  • author – author of the aggregation

  • keywords – keywords for the blog post

  • template – change the template for the blog aggregation

  • out_html – output HTML

  • out_rss – output RSS

  • validate – None or a function to validate a blog post, validate(blog: BlogPost) -> bool

  • fLOG – logging function

source on GitHub