Planet Venus is an awesome ‘river of news’ feed reader. It downloads news feeds published by web sites and aggregates their content together into a single combined feed, latest news first.
Using the xml rendering method leaves an XML declaration at the top, which doesn't play nice with some browsers, so it's better to use the xhtml method in such cases.
Also, ensure encode the output as UTF-8. Currently, if output contains any non-ASCII characters, Python will refuse to write out the string.
Using the
xml
rendering method leaves an XML declaration at the top, which doesn't play nice with some browsers, so it's better to use thexhtml
method in such cases.Also, ensure encode the output as UTF-8. Currently, if
output
contains any non-ASCII characters, Python will refuse to write out the string.